/* ============================================================
   1. RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fff;
    color: #1a1f2c;
    line-height: 1.4;
}

/* ============================================================
   2. LAYOUT
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   3. COMPONENTS
   ============================================================ */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid transparent;
    font-family: inherit;
}

.btn-outline {
    background: transparent;
    border-color: #cbdde9;
    color: #2c3e50;
}
.btn-outline:hover {
    background: #f8fafc;
    border-color: #2c7da0;
    color: #1f6392;
    transform: translateY(-2px);
}

.btn-primary {
    background: #2c7da0;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -4px rgba(44, 125, 160, .3);
}

/* --- Image Wrapper with Zoom --- */
.image-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #f9fbfd;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .2s;
    border-radius: 10px;
}
.image-wrapper .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 125, 160, .85);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    pointer-events: none;
    z-index: 2;
}
.image-wrapper:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}
.image-wrapper:hover img {
    transform: scale(1.02);
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

/* --- Popup (Header & Course) --- */
.popup {
    display: none;
    position: fixed;
    z-index: 1001;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    align-items: center;
    justify-content: center;
}
.popup-content {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}
.popup-close {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    color: #8ba0b5;
}
.popup-close:hover {
    color: #2c3e50;
}
.popup-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.popup-subtitle {
    text-align: center;
    font-size: .9rem;
    color: #4a627a;
    margin-bottom: 24px;
    line-height: 1.4;
}
.popup-form .form-field {
    margin-bottom: 20px;
}
.popup-form .form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 10px;
}
.popup-form input,
.popup-form textarea {
    padding: 12px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    width: 100%;
}
.popup-form textarea {
    resize: vertical;
}
.channels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    justify-content: center;
}
.channel-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fbfd;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: .85rem;
    cursor: pointer;
}
.channel-check i {
    font-size: 1rem;
    color: #2c7da0;
}
.popup-form .form-checkbox {
    text-align: left;
    margin: 0;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .8rem;
    color: #4a627a;
    cursor: pointer;
}
.submit-btn-center {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0;
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.submit-btn-center:hover {
    background: #236b8a;
    transform: translateY(-2px);
}
.recovery-btn {
    display: block;
    margin: 16px auto 0;
    background: none;
    border: none;
    color: #2c7da0;
    font-size: .85rem;
    cursor: pointer;
    text-decoration: underline;
}

/* --- Form Fields (common) --- */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field label {
    font-weight: 600;
    font-size: .9rem;
    color: #2c3e50;
}
.optional {
    font-weight: 400;
    color: #8ba0b5;
    font-size: .8rem;
}
.form-field input {
    padding: 14px 16px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    transition: .2s;
}
.form-field input:focus {
    outline: none;
    border-color: #2c7da0;
    box-shadow: 0 0 0 3px rgba(44, 125, 160, .1);
}

/* ============================================================
   ЧЕКБОКСЫ В ФОРМАХ (обновлённые)
   ============================================================ */

.form-checkbox {
    margin: 6px 0;
}

.form-checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: #4a627a;
    cursor: pointer;
    line-height: 1.4;
}

.form-checkbox .checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2c7da0;
    flex-shrink: 0;
}

.form-checkbox .checkbox-label a {
    color: #2c7da0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.form-checkbox .checkbox-label a:hover {
    color: #1f6392;
    text-decoration: underline;
}

/* Состояние ошибки (если чекбокс не отмечен) */
.form-checkbox .checkbox-label.error {
    color: #c0392b;
}

.form-checkbox .checkbox-label.error input[type="checkbox"] {
    outline: 2px solid #c0392b;
    outline-offset: 2px;
}

/* Кнопка отправки (неактивная) */
.submit-btn:disabled,
.submit-btn-center:disabled,
.subscribe-consult__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.submit-btn:disabled:hover,
.submit-btn-center:disabled:hover,
.subscribe-consult__btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.submit-btn {
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    margin-top: 8px;
}
.submit-btn:hover {
    background: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -8px rgba(44, 125, 160, .4);
}

/* --- Messenger & Contact Links --- */
.messenger-link,
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    color: #1f2a44;
    padding: 8px 12px;
    border-radius: 14px;
    transition: all .2s;
}
.messenger-link i {
    width: 20px;
    font-size: 1.2rem;
}
.messenger-link.whatsapp i {
    color: #25D366;
}
.messenger-link.telegram i {
    color: #26A5E4;
}
.messenger-link.max i {
    color: #5e5ce0;
}
.contact-link i {
    width: 20px;
    color: #4f7ea0;
}
.messenger-link:hover,
.contact-link:hover {
    background: #fff;
    border-color: #cbdde9;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -8px rgba(0, 0, 0, .1);
}

/* --- Action Button --- */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: .95rem;
    font-weight: 500;
    font-family: inherit;
    color: #1e2a3e;
    cursor: pointer;
    transition: all .2s;
    width: 100%;
    background-color: #fefefe;
}
.action-btn i {
    font-size: 1rem;
    color: #2c7da0;
}
.action-btn:hover {
    background: #f1f5f9;
    border-color: #bdd3e6;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -12px rgba(0, 0, 0, .12);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 16px 0;
    background: #f4f6fa;
}
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .85rem;
}
.breadcrumbs__list li {
    display: inline-flex;
    align-items: center;
}
.breadcrumbs__list li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #8ba0b5;
}
.breadcrumbs__list a {
    color: #2c7da0;
    text-decoration: none;
    transition: color .2s;
}
.breadcrumbs__list a:hover {
    color: #1f6392;
    text-decoration: underline;
}
.breadcrumbs__list span {
    color: #4a627a;
    font-weight: 500;
}

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */

/* --- Top Bar --- */
.top-bar {
    background: #f4f6fa;
    font-size: .85rem;
    padding: 10px 0;
    border-bottom: 1px solid #e9edf2;
}
.top-bar__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px 32px;
}
.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    white-space: nowrap;
}
.top-bar__item i {
    font-size: .8rem;
    color: #6c86a3;
}

/* --- Header --- */
.header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .02);
}
.header__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo {
    flex-shrink: 0;
    max-width: 400px;
    transition: transform .2s;
}
.logo img {
    width: 100%;
    height: auto;
    display: block;
}
.header__right {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-end;
    align-items: center;
}
.info-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 170px;
}
.info-card__title {
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #6c86a3;
    margin-bottom: 4px;
    border-left: 3px solid #2c7da0;
    padding-left: 10px;
}

/* ============================================================
   5. MAIN NAVIGATION (с бургер-меню поверх контента)
   ============================================================ */
.main-nav {
    background: #fff;
    border-top: 1px solid #eef2f8;
    border-bottom: 1px solid #eef2f8;
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.nav__wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* --- Меню (десктоп) --- */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px 28px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: #2c3e50;
    padding: 6px 0;
    transition: color .2s, border-color .2s;
    display: inline-block;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-menu a:not(.disabled):hover {
    color: #1f6392;
    border-bottom-color: #2c7da0;
}

/* Неактивные ссылки в меню */
.nav-menu a.disabled {
    color: #8ba0b5 !important;
    cursor: default !important;
    pointer-events: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

.nav-menu a.disabled:hover {
    color: #8ba0b5 !important;
    border-bottom: none !important;
}


/* --- Поиск --- */
.search-form {
    flex: 1;
    min-width: 0;
}

.search-form__inner {
    display: flex;
    width: 100%;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 10px 18px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: .95rem;
    background: #fefefe;
    transition: all .2s;
    font-family: inherit;
    min-width: 0;
}

.search-input:focus {
    outline: none;
    border-color: #2c7da0;
    box-shadow: 0 0 0 3px rgba(44, 125, 160, .1);
}

.search-button {
    background: #f0f4f9;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    padding: 0 24px;
    font-size: .9rem;
    font-weight: 500;
    font-family: inherit;
    color: #1e2a3e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    white-space: nowrap;
}

.search-button i {
    font-size: .9rem;
    color: #4f7ea0;
}

.search-button:hover {
    background: #e6edf4;
    border-color: #cbdde9;
    transform: translateY(-1px);
}

/* --- Бургер-кнопка --- */
.burger-toggle {
    display: none;
}

.burger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.burger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2c3e50;
    border-radius: 3px;
    transition: all .2s ease;
}

/* Анимация бургера в крестик */
#burger-toggle:checked+.burger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#burger-toggle:checked+.burger-icon span:nth-child(2) {
    opacity: 0;
}

#burger-toggle:checked+.burger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    position: relative;
}
.hero-serv {
    padding: 20px 0 70px;
    background: #f4f6fa;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, .02);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.hero__title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a2a3f;
    letter-spacing: -.01em;
}
.hero__subtitle {
    font-size: 1.2rem;
    color: #4a627a;
    margin-bottom: 40px;
    font-weight: 400;
}
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all .2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .02);
}
.badge i {
    font-size: 1.4rem;
    color: #2c7da0;
    width: 28px;
}
.badge span {
    font-size: .95rem;
    font-weight: 500;
    color: #1f2a44;
}
.badge:hover {
    background: #fefefe;
    border-color: #cbdde9;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, .08);
}
.hero-price {
    text-align: center;
    margin-top: 32px;
    padding: 12px 20px;
    background: #f4f7fa;
    border: 1px solid #236b8a;
    border-radius: 10px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}
.price-label {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1f2a44;
    margin-right: 12px;
}
.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2a44;
    letter-spacing: -.5px;
}
.hero__right {
    background: #fff;
    border-radius: 32px;
    padding: 32px 28px;
    border: 1px solid #eef2f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ============================================================
   6. SECTIONS
   ============================================================ */

/* --- Tasks --- */
.tasks {
    padding: 70px 0;
    background: #fff;
}
.tasks__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.tasks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.task-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all .25s;
    cursor: default;
}
.task-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.task-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    margin: 0;
}
.task-card:hover {
    transform: translateY(-6px);
    border-color: #d4e2f0;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Audience --- */
.audience {
    padding: 70px 0;
    background: #fafcff;
}
.audience__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.audience-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all .25s;
    cursor: default;
}
.audience-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.audience-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    margin: 0;
}
.audience-card:hover {
    transform: translateY(-6px);
    border-color: #d4e2f0;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Common Steps --- */
.common-steps {
    padding: 70px 0;
    background: #fff;
}
.common-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.common-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.step-card {
    position: relative;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: all .25s;
    overflow: hidden;
    margin-bottom: 48px;
}
.step-number-big {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 3.8rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .15;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
.step-sub {
    display: block;
    font-size: .8rem;
    font-weight: 400;
    color: #4a627a;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}
.step-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.step-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.step-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.steps-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2a3f;
}
.steps-banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}
.steps-banner span {
    line-height: 1.4;
}

/* --- Services --- */
.services {
    padding: 70px 0;
    background: #fafcff;
}
.services__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}
.services__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.services__subtitle--popular {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2a3f;
    margin: 56px 0 32px;
}
.services__grid {
    display: grid;
    gap: 30px;
}
.services__grid--main {
    grid-template-columns: repeat(3, 1fr);
}
.services__grid--popular {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 70px;
}
.service-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all .25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: #d4e2f0;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .1);
    background: #fff;
}
.service-sub {
    display: block;
    font-size: .8rem;
    font-weight: 400;
    color: #4a627a;
    margin-top: 8px;
}
.service-icon {
    color: #2c7da0;
    margin-bottom: 16px;
}
.service-name {
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.3;
}
.service-card--main {
    padding: 40px 20px;
}
.service-card--main .service-icon {
    font-size: 3rem;
}
.service-card--main .service-name {
    font-size: 1.2rem;
}
.service-card--popular {
    padding: 24px 16px;
}
.service-card--popular .service-icon {
    font-size: 2rem;
}
.service-card--popular .service-name {
    font-size: 1rem;
}

/* --- Directions Text (services page) --- */
.services__directions-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.services__direction-text-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: #f9fbfd;
    border-radius: 10px;
    border-left: 3px solid #2c7da0;
    transition: background 0.2s ease;
}
.services__direction-text-item:hover {
    background: #f0f6fa;
}
.services__direction-text-item i {
    font-size: 1.4rem;
    color: #2c7da0;
    flex-shrink: 0;
    margin-top: 2px;
    width: 28px;
    text-align: center;
}
.services__direction-text-item div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
}
.services__direction-text-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a3f;
}
.services__direction-text-item span {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #2c3e50;
}

/* --- Advantages --- */
.advantages {
    padding: 70px 0;
    background: #fff;
}
.advantages__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.advantage-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all .25s;
}
.advantage-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.advantage-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2a44;
    margin: 0;
    line-height: 1.4;
}
.advantage-card:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: #d4e2f0;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Docs (Training, Documents, Requirements) --- */
.docs {
    padding: 70px 0;
    background: #fff;
}
.docs__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.docs-row {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    border-bottom: 1px solid #eef2f8;
    padding-bottom: 50px;
}
.docs-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.docs-row__image {
    flex: 1;
    min-width: 0;
}
.docs-row__content {
    flex: 1;
    min-width: 0;
    align-self: center;
}
.docs-row__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.docs-row__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.docs-row__list li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 1rem;
    color: #2c3e50;
}
.docs-row__list li::before {
    content: "•";
    color: #2c7da0;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    left: 4px;
}
.docs-row__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a3f;
    margin: 20px 0 8px;
}
.docs-row__text {
    font-size: .95rem;
    color: #4a627a;
    line-height: 1.5;
    margin-bottom: 28px;
}
.docs-row__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.docs-row__requirements {
    margin: 28px 0 24px;
}
.requirements-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 12px;
}
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}
.req-item {
    font-size: .9rem;
    color: #2c3e50;
    padding-left: 10px;
    border-left: 2px solid #2c7da0;
    line-height: 1.3;
}
.docs-row__price.price-accent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    background: linear-gradient(135deg, #fff6e6, #ffe6cc);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #e67e22;
    margin-top: 15px;
    border-left: 4px solid #e67e22;
    box-shadow: 0 2px 8px rgba(230, 126, 34, .1);
}
.docs-price-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.docs-price-row .docs-row__price {
    margin: 0;
}
.docs-price-row .download-link {
    background: #2c7da0;
    color: #fff;
    padding: 8px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}
.docs-price-row .download-link:hover {
    background: #236b8a;
    transform: translateY(-2px);
}

/* --- FIS-FRDO --- */
.fis-frdo {
    padding: 40px 0;
    background-color: #ffffff;
}
.fis-card {
    background: linear-gradient(135deg, #eef2f8 0%, #f4f8fe 100%);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.fis-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 280px;
    justify-content: center;
}
.fis-left i {
    font-size: 2.5rem;
    color: #2c7da0;
    flex-shrink: 0;
}
.fis-left span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2a3f;
    line-height: 1.4;
}
.fis-frdo--simple .fis-card {
    justify-content: center;
}
.fis-frdo--simple .fis-left {
    flex: none;
    max-width: 800px;
}
.fis-frdo--with-right .fis-right {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.fis-frdo--with-right .fis-right i {
    font-size: 1.8rem;
    color: #e67e22;
    flex-shrink: 0;
}
.fis-frdo--with-right .fis-right span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a3f;
    white-space: nowrap;
}

/* --- SEO Text --- */
.seo-text {
    margin-top: 70px;
}
.seo-intro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #f0f6fa 0%, #ffffff 100%);
    border-left: 4px solid #2c7da0;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 40px;
}
.seo-intro__icon {
    flex-shrink: 0;
    font-size: 2.2rem;
    color: #2c7da0;
    margin-top: 2px;
}
.seo-intro__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1a2a3f;
    font-weight: 500;
    margin: 0;
}
.seo-text__content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 48px 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #2c7da0;
    display: block;
    text-align: center;
}
.seo-text__content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c7da0;
    margin: 0 0 8px 0;
}
.seo-text__content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0 32px 0;
}
.seo-grid--three {
    grid-template-columns: repeat(3, 1fr);
}
.seo-grid__item {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.2s ease;
}
.seo-grid__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
    border-color: #cbdde9;
}
.seo-grid__icon {
    font-size: 1.8rem;
    color: #2c7da0;
    margin-bottom: 12px;
    text-align: center;
}
.seo-grid__item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 0 0 8px 0;
    text-align: center;
}
.seo-grid__item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a627a;
    margin: 0;
    text-align: center;
}
.seo-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 24px 0 32px 0;
}
.seo-two-col__item {
    background: #ffffff;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    padding: 24px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}
.seo-two-col__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.06);
    border-color: #cbdde9;
}
.seo-two-col__icon {
    font-size: 2rem;
    color: #2c7da0;
    margin-bottom: 12px;
    text-align: center;
}
.seo-two-col__item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 0 0 8px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2f8;
    text-align: center;
}
.seo-two-col__item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a627a;
    margin: 0;
    text-align: center;
}
.seo-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #fff6e6 0%, #ffffff 100%);
    border-left: 4px solid #e67e22;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0 32px 0;
}
.seo-highlight i {
    font-size: 2rem;
    color: #e67e22;
    flex-shrink: 0;
    margin-top: 4px;
}
.seo-highlight strong {
    display: block;
    font-size: 1.05rem;
    color: #7a4a1a;
    margin-bottom: 4px;
}
.seo-highlight p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7a4a1a;
    margin: 0;
}
.seo-info-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #eef2f8 0%, #f8fafc 100%);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0 32px 0;
    border: 1px solid #e2e8f0;
}
.seo-info-box i {
    font-size: 2rem;
    color: #2c7da0;
    flex-shrink: 0;
    margin-top: 4px;
}
.seo-info-box strong {
    display: block;
    font-size: 1rem;
    color: #1a2a3f;
    margin-bottom: 4px;
}
.seo-info-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a627a;
    margin: 0;
}
.seo-info-box--price {
    background: linear-gradient(135deg, #fff6e6 0%, #ffffff 100%);
    border-left: 4px solid #e67e22;
}
.seo-info-box--price i {
    color: #e67e22;
}
.seo-table-wrapper {
    overflow-x: auto;
    margin: 20px 0 16px 0;
    border-radius: 12px;
    border: 1px solid #eef2f8;
}
.seo-price-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.95rem;
}
.seo-price-table thead {
    background: linear-gradient(135deg, #2c7da0 0%, #236b8a 100%);
}
.seo-price-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.seo-price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eef2f8;
    color: #2c3e50;
}
.seo-price-table tbody tr {
    transition: background 0.2s ease;
}
.seo-price-table tbody tr:hover {
    background: #f9fbfd;
}
.seo-price-table tbody tr:last-child td {
    border-bottom: none;
}
.seo-price-table td:first-child {
    font-weight: 600;
    color: #1a2a3f;
    width: 40%;
}
.seo-price-table td:last-child {
    color: #4a627a;
}
.seo-table-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fbfd;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 0 0 32px 0;
    font-size: 0.9rem;
    color: #2c3e50;
    border-left: 4px solid #2c7da0;
}
.seo-table-note i {
    font-size: 1.2rem;
    color: #2c7da0;
    flex-shrink: 0;
}
.seo-center-card {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    margin: 20px 0 24px 0;
    transition: all 0.2s ease;
}
.seo-center-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbdde9;
}
.seo-center-card__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2c7da0 0%, #236b8a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}
.seo-center-card__content {
    flex: 1;
}
.seo-center-card__content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 12px;
}
.seo-center-card__content p:last-child {
    margin-bottom: 0;
}
.seo-center-card__content strong {
    color: #1a2a3f;
}
.seo-center-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 16px 0 0 0;
}
.seo-center-features__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.2s ease;
}
.seo-center-features__item:hover {
    background: #ffffff;
    border-color: #cbdde9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.06);
}
.seo-center-features__item i {
    font-size: 1.2rem;
    color: #2c7da0;
    flex-shrink: 0;
}
.seo-center-features__item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.3;
}

/* --- SEO Steps --- */
.seo-steps-container {
    margin: 24px 0 32px 0;
}
.seo-steps-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2a3f;
    text-align: center;
    margin-bottom: 24px;
}
.seo-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    counter-reset: step-counter;
}
/* Для трёх карточек в seo-steps-grid */
.seo-steps-grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
}
.seo-step-item {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    padding: 20px 14px;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.seo-step-item:hover {
    transform: translateY(-4px);
    border-color: #cbdde9;
    background: #ffffff;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
}
.seo-step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 4px;
}
.seo-step-icon {
    font-size: 1.8rem;
    color: #2c7da0;
    margin-bottom: 4px;
}
.seo-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.seo-step-content strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2a3f;
    line-height: 1.3;
}
.seo-step-content span {
    font-size: 0.8rem;
    color: #4a627a;
    line-height: 1.4;
}

/* --- SEO Steps Vysota --- */
.seo-steps-container--vysota .seo-steps-grid--vysota {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}
.seo-steps-container--vysota .seo-step-item {
    width: 100%;
    max-width: 280px;
    padding: 24px 16px;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.seo-steps-container--vysota .seo-step-item:hover {
    transform: translateY(-4px);
    border-color: #cbdde9;
    background: #ffffff;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
}
.seo-steps-container--vysota .seo-step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 4px;
}
.seo-steps-container--vysota .seo-step-icon {
    font-size: 1.8rem;
    color: #2c7da0;
    margin-bottom: 4px;
}
.seo-steps-container--vysota .seo-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.seo-steps-container--vysota .seo-step-content strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a3f;
    line-height: 1.3;
}
.seo-steps-container--vysota .seo-step-content span {
    font-size: 0.85rem;
    color: #4a627a;
    line-height: 1.4;
}

/* --- SEO Price Breakdown --- */
.seo-price-breakdown {
    background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    margin: 24px 0 32px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}
.seo-price-breakdown:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.08);
    border-color: #cbdde9;
}
.seo-price-breakdown__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a3f;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.seo-price-breakdown__title i {
    color: #e67e22;
    font-size: 1.3rem;
}
.seo-price-breakdown__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.seo-price-breakdown__item {
    background: #ffffff;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.25s ease;
}
.seo-price-breakdown__item:hover {
    transform: translateY(-4px);
    border-color: #2c7da0;
    box-shadow: 0 8px 20px -8px rgba(44, 125, 160, 0.12);
}
.seo-price-breakdown__icon {
    font-size: 2rem;
    color: #2c7da0;
    margin-bottom: 10px;
}
.seo-price-breakdown__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.seo-price-breakdown__content strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2a3f;
    line-height: 1.3;
}
.seo-price-breakdown__content span {
    font-size: 0.8rem;
    color: #4a627a;
    line-height: 1.4;
}
.seo-price-breakdown__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff6e6 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 14px 20px;
    border-left: 4px solid #e67e22;
    font-size: 0.95rem;
    color: #7a4a1a;
    flex-wrap: wrap;
    text-align: center;
}
.seo-price-breakdown__footer i {
    font-size: 1.4rem;
    color: #e67e22;
    flex-shrink: 0;
}
.seo-price-breakdown__footer span {
    font-weight: 500;
    line-height: 1.4;
}

/* --- SEO Full Width --- */
.seo-full-width {
    margin: 24px 0 32px 0;
    width: 100%;
}
.seo-full-width__item {
    background: linear-gradient(135deg, #f0f7fe 0%, #ffffff 100%);
    border: 1px solid #2c7da0;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 4px 16px rgba(44, 125, 160, 0.08);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.seo-full-width__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px -12px rgba(44, 125, 160, 0.15);
    border-color: #236b8a;
}
.seo-full-width__icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 12px;
}
.seo-full-width__item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 0 0 8px 0;
}
.seo-full-width__item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Licenses --- */
.licenses {
    padding: 70px 0;
    background: #fafcff;
}
.licenses__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.licenses__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.licenses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.license-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 16px;
    transition: all .2s;
}
.license-card .image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.license-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.license-card .zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(44, 125, 160, .8);
    border-radius: 30px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transition: opacity .2s;
}
.license-card:hover {
    transform: translateY(-4px);
    border-color: #cbdde9;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .08);
}
.license-card:hover .zoom-icon {
    opacity: 1;
}

/* --- Reviews --- */
.reviews {
    padding: 70px 0;
    background: #fff;
}
.reviews__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.reviews__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.reviews__subtitle--secondary {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2a3f;
    margin: 56px 0 32px;
}
.reviews__grid {
    display: grid;
    gap: 30px;
}
.letters-grid {
    grid-template-columns: repeat(4, 1fr);
}
.messengers-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.review-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 12px;
    transition: all .2s;
}
.review-card .image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.review-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: #cbdde9;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .08);
}
.reviews__media {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}
.media-video,
.media-audio {
    flex: 1;
    background: #f9fbfd;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #eef2f8;
    display: flex;
    flex-direction: column;
}
.media-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
    margin-bottom: 20px;
    text-align: center;
}
.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.audio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin: auto 0;
}
.audio-grid audio {
    width: 100%;
    border-radius: 10px;
}

/* --- FAQ --- */
.faq {
    padding: 70px 0;
    background: #fafcff;
}
.faq__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.faq__accordion {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef2f8;
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #eef2f8;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a2a3f;
    transition: background .2s;
}
.accordion-header span {
    flex: 1;
    text-align: center;
    margin: 0 16px;
}
.accordion-header:hover {
    background: #f9fbfd;
}
.accordion-header i {
    font-size: 1rem;
    color: #2c7da0;
    transition: transform .2s;
    width: 20px;
}
.accordion-item.active .accordion-header .right-icon {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 24px;
    background: #fff;
}
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 24px;
}
.accordion-content p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.5;
    color: #4a627a;
}

/* --- Contacts --- */
.contacts-main {
    padding: 70px 0;
    background: #fff;
}
.contacts__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.contacts__info {
    background: #f9fbfd;
    border-radius: 10px;
    padding: 32px 28px;
    border: 1px solid #eef2f8;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1rem;
    color: #2c3e50;
}
.contact-item i {
    width: 24px;
    font-size: 1.2rem;
    color: #2c7da0;
}
.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color .2s;
}
.contact-item a:hover {
    color: #1f6392;
}
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    transition: transform .2s, opacity .2s;
}
.messenger-btn i {
    font-size: 1.3rem;
}
.messenger-btn.whatsapp {
    background: #25D366;
}
.messenger-btn.whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
}
.messenger-btn.telegram {
    background: #26A5E4;
}
.messenger-btn.telegram:hover {
    background: #1e93cc;
    transform: translateY(-2px);
}
.messenger-btn.max {
    background: #5e5ce0;
}
.messenger-btn.max:hover {
    background: #4a48c0;
    transform: translateY(-2px);
}
.contacts__map {
    background: #eef2f8;
    border-radius: 10px;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid #eef2f8;
}
.contacts__map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

/* --- Subscribe & Consult --- */
.subscribe-consult {
    padding: 70px 0;
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
}
.subscribe-consult__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.subscribe-consult__col {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.subscribe-consult__col:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, .08);
    border-color: #cbdde9;
}
.subscribe-consult__icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 12px;
    text-align: center;
}
.subscribe-consult__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 8px;
    text-align: center;
}
.subscribe-consult__subtitle {
    font-size: 1rem;
    color: #4a627a;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}
.subscribe-consult__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.subscribe-consult__form .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.subscribe-consult__form .form-field label {
    font-weight: 600;
    font-size: .9rem;
    color: #2c3e50;
}
.subscribe-consult__form .form-field input {
    padding: 12px 16px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    transition: .2s;
    width: 100%;
}
.subscribe-consult__form .form-field input:focus {
    outline: none;
    border-color: #2c7da0;
    box-shadow: 0 0 0 3px rgba(44, 125, 160, .1);
}
.subscribe-consult__form .optional {
    font-weight: 400;
    color: #8ba0b5;
    font-size: .8rem;
}
.subscribe-consult__form .form-checkbox {
    margin: 4px 0;
}
.subscribe-consult__form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .8rem;
    color: #4a627a;
    cursor: pointer;
    line-height: 1.4;
}
.subscribe-consult__form .checkbox-label input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #2c7da0;
    flex-shrink: 0;
}
.subscribe-consult__btn {
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    width: 100%;
}
.subscribe-consult__btn--subscribe {
    background: #2c7da0;
    color: #fff;
}
.subscribe-consult__btn--subscribe:hover {
    background: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -6px rgba(44, 125, 160, .4);
}
.subscribe-consult__btn--consult {
    background: #2c7da0;
    color: #fff;
}
.subscribe-consult__btn--consult:hover {
    background: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -6px rgba(44, 125, 160, .4);
}
.subscribe-consult__confirm {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 16px;
    padding: 16px 18px;
    background: #f0f7fe;
    border-radius: 12px;
    border-left: 4px solid #2c7da0;
}
.subscribe-consult__confirm i {
    font-size: 1.6rem;
    color: #2c7da0;
    flex-shrink: 0;
    margin-top: 2px;
    align-self: center;
}
.confirm-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .85rem;
    line-height: 1.5;
    color: #2c3e50;
}
.confirm-text strong {
    font-weight: 700;
    color: #1a2a3f;
}
.confirm-text span {
    color: #4a627a;
}

/* --- Trust Carousel --- */
.trust {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}
.trust__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.trust__carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}
.logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #4a627a;
    transition: all .2s;
    font-size: .9rem;
    text-align: center;
    padding: 0 12px;
}
.trust__carousel:hover .carousel-track {
    animation-play-state: paused;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Delivery --- */
.delivery {
    padding: 70px 0;
    background: #fafcff;
}
.delivery__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.delivery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.delivery-col {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
}
.delivery-col__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f8;
    display: inline-block;
}
.delivery-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.delivery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #f9fbfd;
    border-radius: 10px;
    padding: 24px 16px;
}
.delivery-item i {
    font-size: 2.2rem;
    color: #2c7da0;
}
.delivery-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}
.delivery-item:hover {
    transform: translateY(-4px);
    background: #fff;
    border: 1px solid #cbdde9;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .08);
}

/* --- Price Table --- */
.price-table-section {
    padding: 50px 0;
    background: #fff;
}
.price-table__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 30px;
}
.price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #f9fbfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}
.price-table th,
.price-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.price-table th {
    background: #eef2f8;
    font-weight: 700;
    color: #1a2a3f;
}
.price-table td {
    color: #2c3e50;
}
.price-cell {
    font-weight: 700;
    color: #e67e22;
}
.price-note {
    background: #fff6e6;
    border-left: 4px solid #e67e22;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: .85rem;
    color: #7a5a2e;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.price-note i {
    font-size: 1.2rem;
    color: #e67e22;
}

/* --- Who Suitable --- */
.who-suitable {
    padding: 60px 0;
    background: #fafcff;
}
.who-suitable__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.who-suitable__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.suitable-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 40px 28px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 260px;
    max-width: 380px;
}
.suitable-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.suitable-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.suitable-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Questions --- */
.questions {
    padding: 60px 0;
    background: #f4f6fa;
}
.questions__card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef2f8;
}
.questions__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 12px;
}
.questions__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 32px;
}
.questions__messengers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.q-messenger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    transition: transform .2s, opacity .2s;
}
.q-messenger i {
    font-size: 1.2rem;
}
.q-messenger.whatsapp {
    background: #25D366;
}
.q-messenger.whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
}
.q-messenger.telegram {
    background: #26A5E4;
}
.q-messenger.telegram:hover {
    background: #1e93cc;
    transform: translateY(-2px);
}
.q-messenger.max {
    background: #5e5ce0;
}
.q-messenger.max:hover {
    background: #4a48c0;
    transform: translateY(-2px);
}
.questions__contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.q-phone,
.q-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a2a3f;
    text-decoration: none;
    transition: color .2s;
}
.q-phone::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2c7da0;
    font-size: .9rem;
}
.q-email::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2c7da0;
    font-size: .9rem;
}
.q-phone:hover,
.q-email:hover {
    color: #2c7da0;
}

/* --- Download Card --- */
.download-card {
    padding: 40px 32px;
    text-align: center;
}
.download__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 32px;
    letter-spacing: -.3px;
}
.download-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #cbdde9;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: #1a2a3f;
    text-decoration: none;
    transition: all .2s;
}
.download-link i {
    font-size: 1.2rem;
    color: #2c7da0;
}
.download-link:hover {
    background: #fff;
    border-color: #2c7da0;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .1);
}

/* ============================================================
   7. SPECIAL PAGES
   ============================================================ */

/* --- Service Options --- */
.service-options {
    background: #f4f6fa;
    padding-bottom: 48px;
}
.services-page__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a2a3f;
    margin: 0 0 48px;
    letter-spacing: -.3px;
}
.services__grid--eb {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}
.services__grid--pk,
.services__grid--nk {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}
.services__grid--vysota {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    margin-bottom: 48px;
}

/* --- Services Grid with Dropdowns --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    position: relative;
}
.services-grid-rabochie {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    position: relative;
}
.services-grid>*,
.services-grid-rabochie>* {
    min-width: 0;
}
.service-item {
    display: flex;
    flex-direction: column;
    background: #f4f6fa;
    border-radius: 10px;
    transition: all .25s;
}
.service-main {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    height: 200px;
}
.service-main:hover {
    background: #fff;
    border-color: #cbdde9;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .1);
}
.service-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 16px;
}
.service-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 8px;
}
.service-sub {
    display: block;
    font-size: .85rem;
    font-weight: 400;
    color: #4a627a;
}
.service-dropdown {
    background: #f9fbfd;
    border-radius: 10px;
    border: 1px solid #eef2f8;
    display: none;
}
.service-dropdown.active {
    display: block;
    background: #fff;
}
.service-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}
.service-dropdown li {
    padding: 6px 20px;
}
.service-dropdown li a {
    text-decoration: none;
    font-size: .9rem;
    color: #2c7da0;
    display: block;
    transition: color .2s;
}
.service-dropdown li a:hover {
    color: #1f6392;
    text-decoration: underline;
}
.global-dropdown {
    display: none;
}
.temp-global-dropdown {
    display: block !important;
    width: 100%;
    grid-column: 1 / -1;
    margin: 16px 0;
    z-index: 10;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef2f8;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, .15);
    padding: 24px;
    animation: fadeInUp .2s ease;
}
.temp-global-dropdown ul {
    display: grid;
    gap: 12px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.services-grid .temp-global-dropdown ul {
    grid-template-columns: repeat(3, 1fr);
}
.services-grid-rabochie .temp-global-dropdown ul {
    grid-template-columns: repeat(4, 1fr);
}
.temp-global-dropdown li a {
    display: block;
    padding: 8px 0;
    font-size: .9rem;
    color: #2c7da0;
    text-decoration: none;
    border-bottom: 1px dashed #eef2f8;
    transition: .2s;
}
.temp-global-dropdown li a:hover {
    color: #1f6392;
    padding-left: 6px;
    border-bottom-color: #2c7da0;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Team --- */
.team {
    padding: 70px 0;
    background: #fff;
}
.team__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    background: #f9fbfd;
    border-radius: 10px;
    padding: 28px 20px 24px;
    text-align: center;
    border: 1px solid #eef2f8;
    transition: all .2s;
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
}
.team-photo svg {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 6px;
}
.team-position {
    font-size: .9rem;
    font-weight: 500;
    color: #2c7da0;
    margin-bottom: 8px;
}
.team-experience {
    font-size: .85rem;
    color: #4a627a;
}

/* --- Ohrana Warning --- */
.ohrana-warning {
    padding: 70px 0;
    background: #fff;
}
.ohrana-warning-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
}
.ohrana-warning__card {
    background: linear-gradient(135deg, #fff0e0, #ffe0c0);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
    border-left: 6px solid #e67e22;
    border-right: 1px solid #f0d5b0;
    border-top: 1px solid #f0d5b0;
    border-bottom: 1px solid #f0d5b0;
}
.ohrana-warning__icon {
    font-size: 3rem;
    color: #e67e22;
    line-height: 1;
}
.ohrana-warning__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #7a4a1a;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}
.warning-highlight {
    font-weight: 800;
    background: rgba(230, 126, 34, .1);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
}

/* --- Violations --- */
.violations {
    background: #fff;
}
.violations__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
}
.violations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.violation-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 24px;
    transition: all .2s;
}
.violation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
    border-color: #cbdde9;
}
.violation-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffcdb5;
    display: inline-block;
}
.violation-fines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fine-item {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 4px solid #e67e22;
}
.fine-type {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.fine-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #e67e22;
}
.fine-note {
    font-size: .75rem;
    font-weight: 400;
    color: #7f8c8d;
    display: inline-block;
    margin-left: 6px;
}
.fine-note-text {
    font-size: .85rem;
    font-weight: 500;
    color: #e67e22;
    background: #fff6e6;
    padding: 10px 12px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid #e67e22;
}

/* --- Fines Warning --- */
.fines-warning {
    padding: 40px 0 0;
    background: #fff;
}
.fines-card {
    background: linear-gradient(135deg, #fff4e6, #ffe8d6);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    border-left: 6px solid #e67e22;
    border-right: 1px solid #f0d5b0;
    border-top: 1px solid #f0d5b0;
    border-bottom: 1px solid #f0d5b0;
}
.fines-icon {
    font-size: 2.5rem;
    color: #e67e22;
    line-height: 1;
}
.fines-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #7a4a1a;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}
.fines-bold {
    font-weight: 800;
    margin-bottom: 4px;
}
.fines-text>div {
    margin-bottom: 6px;
}
.fines-text>div:last-child {
    margin-bottom: 0;
}

/* --- Protect Fines --- */
.protect-fines {
    padding: 70px 0;
    background: #fff;
}
.protect-fines__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.protect-fines__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.protect-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    transition: all .25s;
}
.protect-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 20px;
    text-align: center;
}
.protect-text {
    font-size: .95rem;
    line-height: 1.5;
    color: #2c3e50;
    text-align: center;
}
.protect-text strong {
    color: #1a2a3f;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}
.protect-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Benefit --- */
.benefit {
    background: #fff;
}
.benefit-card {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.benefit-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    line-height: 1;
}
.benefit-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2a3f;
    line-height: 1.4;
    max-width: 800px;
}

/* --- Ohrana Advantages --- */
.ohrana-advantages {
    padding: 70px 0;
    background: #fff;
}
.ohrana-advantages__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.ohrana-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.ohrana-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.ohrana-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.ohrana-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.ohrana-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.ohrana-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
}
.ohrana-banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}

/* --- Worker Steps --- */
.worker-steps {
    padding: 70px 0;
    background: #fafcff;
}
.worker-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.worker-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.worker-step {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 200px;
    /* max-width: 280px; */
    overflow: hidden;
}
.worker-step .step-number-big {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3.8rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .15;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
.worker-step-icon {
    font-size: 2.4rem;
    color: #2c7da0;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.worker-step-text {
    font-size: .95rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.worker-step:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Actual Info --- */
.actual-info {
    padding: 40px 0;
    background: #fff;
}
.actual-card {
    background: linear-gradient(135deg, #f0f6fa, #eef2f8);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.actual-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    line-height: 1;
}
.actual-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a2a3f;
    line-height: 1.4;
    max-width: 800px;
}

/* --- New Gallery --- */
.new-gallery-section {
    padding: 60px 0;
    background: #fff;
}
.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.new-gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}
.new-gallery-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.new-gallery-row:last-child {
    margin-bottom: 0;
}
.new-gallery-images {
    flex: 1;
    min-width: 280px;
}
.new-gallery-main {
    margin-bottom: 20px;
}
.new-img-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}
.new-img-wrapper img {
    width: 100%;
    display: block;
}
.new-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 125, 160, .85);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: .2s;
    pointer-events: none;
}
.new-img-wrapper:hover .new-zoom-icon {
    opacity: 1;
}
.new-thumb-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.new-thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: .2s;
}
.new-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-thumb.active {
    border-color: #2c7da0;
}
.new-gallery-description {
    flex: 1;
    min-width: 280px;
}
.new-gallery-description h3,
.new-gallery-description h4 {
    margin-top: 0;
}
.new-gallery-description ul {
    list-style: none;
    padding-left: 0;
}
.new-gallery-description li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.new-gallery-description li::before {
    content: "•";
    color: #2c7da0;
    font-weight: 700;
    position: absolute;
    left: 2px;
}
.new-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.new-btn-outline {
    background: transparent;
    border: 1px solid #cbdde9;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #2c3e50;
    transition: .2s;
}
.new-btn-outline:hover {
    border-color: #2c7da0;
    background: #f8fafc;
}
.new-btn-primary {
    background: #2c7da0;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: .2s;
}
.new-btn-primary:hover {
    background: #236b8a;
    transform: translateY(-2px);
}
.new-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center;
}
.new-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.new-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* --- Docs Doc Block --- */
.docs-doc-block {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e2e8f0;
}

/* --- SOUT Advantages --- */
.sout-advantages {
    padding: 70px 0;
    background: #fff;
}
.sout-advantages__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.sout-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.sout-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.sout-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.sout-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.sout-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- SOUT Steps --- */
.sout-steps {
    padding: 70px 0;
    background: #fafcff;
}
.sout-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.sout-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.step-item {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.step-item .step-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 16px;
}
.step-item .step-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.step-item:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.sout-steps__banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
}
.sout-steps__banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}

/* --- SOUT Docs --- */
.sout-docs {
    padding: 70px 0;
    background: #fff;
}
.sout-docs__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.sout-docs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.sout-doc-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all .25s;
}
.sout-doc-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.sout-doc-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2a44;
}
.sout-doc-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- SOUT Who --- */
.sout-who {
    padding: 70px 0;
    background: #fff;
}
.sout-who__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.sout-who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.sout-who-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all .25s;
}
.sout-who-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.sout-who-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.sout-who-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.sout-who-card__text {
    font-size: .95rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 16px;
}
.sout-who-fine {
    display: inline-block;
    background: #fff6e6;
    border-left: 3px solid #e67e22;
    padding: 8px 16px;
    font-size: .85rem;
    font-weight: 700;
    color: #e67e22;
    border-radius: 8px;
}
.sout-who-note {
    background: #eef2f8;
    border-radius: 10px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
    font-size: .95rem;
    font-weight: 500;
    color: #1a2a3f;
}
.sout-who-note i {
    font-size: 1.5rem;
    color: #2c7da0;
}

/* --- MCHS Interactive --- */
.mchs {
    background: #fff;
}
.mchs__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.mchs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.mchs-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all .2s;
}
.mchs-item:hover {
    background: #fff;
    border-color: #cbdde9;
}
.mchs-item input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2c7da0;
}
.mchs-item span {
    font-size: 1rem;
    color: #1a2a3f;
    line-height: 1.3;
}
.mchs-item.disabled-item {
    opacity: .7;
    background: #f0f2f5;
    cursor: not-allowed;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}
.mchs-item.disabled-item input {
    cursor: not-allowed;
}
.mchs-item.disabled-item span:first-of-type {
    text-decoration: line-through;
    color: #8ba0b5;
}
.disabled-note {
    font-size: .75rem;
    color: #e67e22;
    background: #fff6e6;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 0;
    width: 100%;
    margin-top: 4px;
}
.mchs-warning {
    grid-column: 1 / -1;
    background: #fff6e6;
    border-left: 5px solid #e67e22;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    color: #7a4a1a;
}
.mchs-warning i {
    font-size: 1.3rem;
    color: #e67e22;
}
.mchs-result {
    background: #f0f6fa;
    border-radius: 10px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid #e2e8f0;
}
.mchs-result__text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a3f;
}
.mchs-result__btn {
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
}
.mchs-result__btn:hover {
    background: #236b8a;
    transform: translateY(-2px);
}
.email-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.email-popup__content {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
}
.email-popup__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #8ba0b5;
}
.email-popup h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}
#popupSelectedText {
    margin-bottom: 20px;
    font-weight: 500;
}
#emailForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#emailForm input {
    padding: 12px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: 1rem;
}
#emailForm button {
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

/* --- Rental Experts --- */
.rental-experts {
    background: #fff;
}
.rental-experts__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.rental-experts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.rental-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.rental-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.rental-card .card-number {
    font-size: 4rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .2;
    position: absolute;
    top: 16px;
    left: 20px;
    line-height: 1;
}
.rental-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 20px;
    position: relative;
}
.rental-card .card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    position: relative;
}
.rental-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 50px;
    text-align: left;
}
.rental-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: .95rem;
    line-height: 1.4;
    color: #2c3e50;
}
.rental-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7da0;
    font-weight: 700;
    font-size: 1rem;
}
.rental-list li:last-child {
    margin-bottom: 0;
}

/* --- MCHS Steps --- */
.mchs-steps {
    padding: 70px 0;
    background: #fff;
}
.mchs-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.mchs-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.mchs-steps__row-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.mchs-step {
    position: relative;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    overflow: hidden;
}
.mchs-step .step-number-big {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .15;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
.mchs-step-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.mchs-step-text {
    font-size: .95rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.mchs-step:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- MCHS Regions --- */
.mch-regions {
    background: #fff;
}
.mch-regions__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
}
.mch-regions__grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.mch-card {
    flex: 1;
    min-width: 280px;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 24px;
    transition: .2s;
}
.map-card {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tags-card {
    background: transparent;
    border: none;
    padding: 0;
}
.map-placeholder svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.city-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.city-tag {
    display: inline-block;
    background: #eef2f8;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: .9rem;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    transition: .2s;
}
.city-tag:hover {
    background: #2c7da0;
    color: #fff;
    transform: translateY(-2px);
}
.mch-benefits {
    background: linear-gradient(135deg, #eef2f8, #f4f8fe);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 6px solid #e67e22;
    align-items: center;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a2a3f;
    flex-wrap: wrap;
}
.benefit-item i {
    font-size: 1.6rem;
    color: #e67e22;
    width: 36px;
}

/* --- MCHS Control --- */
.mchs-control {
    padding: 70px 0;
    background: #fafcff;
}
.mchs-control__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 24px;
    letter-spacing: -.3px;
}
.mchs-control__desc {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
}
.mchs-control__desc p {
    margin-bottom: 16px;
}
.mchs-control__subtitle {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 40px;
    letter-spacing: -.3px;
}
.mchs-control__grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.control-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    overflow: hidden;
}
.control-card .control-number {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .2;
    line-height: 1;
    pointer-events: none;
}
.control-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.control-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.control-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.mchs-control__banner {
    background: linear-gradient(135deg, #fff0e0, #ffe0c0);
    border-radius: 10px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    border-left: 6px solid #e67e22;
    border-right: 1px solid #f0d5b0;
    border-top: 1px solid #f0d5b0;
    border-bottom: 1px solid #f0d5b0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #7a4a1a;
}
.mchs-control__banner i {
    font-size: 2rem;
    color: #e67e22;
}

/* --- Check List --- */
.check-list {
    padding: 70px 0;
    background: #fff;
}
.check-list__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}
.check-list__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.check-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.check-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 28px 20px;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.check-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.check-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
    text-align: center;
}
.check-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
    text-align: center;
}
.check-list__items {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.check-list__items li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: .9rem;
    line-height: 1.4;
    color: #2c3e50;
}
.check-list__items li::before {
    content: "•";
    color: #2c7da0;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    left: 2px;
    top: -2px;
}

/* --- Control Frequency --- */
.control-frequency {
    padding: 70px 0;
    background: #fafcff;
}
.control-frequency__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.control-frequency__grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.freq-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
}
.freq-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.freq-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.freq-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- MCHS Diff --- */
.mchs-diff {
    padding: 70px 0;
    background: #fff;
}
.mchs-diff__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.mchs-diff__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.diff-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 40px 28px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 260px;
    max-width: 400px;
}
.diff-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.diff-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.diff-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Practical Advice --- */
.practical-advice {
    padding: 70px 0;
    background: #fff;
}
.practical-advice__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}
.practical-advice__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.practical-advice__grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.advice-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
}
.advice-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.advice-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.advice-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- UPK Advantages --- */
.upk-advantages {
    padding: 70px 0;
    background: #fafcff;
}
.upk-advantages__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
}
.upk-advantages__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.upk-card {
    flex: 0 1 320px;
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.upk-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.upk-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.upk-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- UPK Duration --- */
.upk-duration {
    padding: 70px 0;
    background: #fff;
}
.upk-duration__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.upk-duration__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.duration-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all .25s;
}
.duration-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.duration-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    margin: 0;
}
.duration-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- UPK Steps --- */
.upk-steps {
    padding: 70px 0;
    background: #fafcff;
}
.upk-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.upk-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.upk-step {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.upk-step-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 16px;
}
.upk-step-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.upk-step:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Fire Violations --- */
.fire-violations {
    background: #fff;
    padding: 70px 0;
}

/* --- Price Block --- */
.price-block {
    padding-bottom: 70px;
    background: #f4f6fa;
}
.price-block__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 12px;
}
.price-block__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.price-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 20px;
    transition: all .2s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
    border-color: #cbdde9;
}
.price-card__header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}
.price-card__num {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2c7da0;
    background: #eef2f8;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}
.price-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 0;
    line-height: 1.3;
}
.price-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}
.price-label {
    font-size: .85rem;
    font-weight: 600;
    color: #4a627a;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.price-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e67e22;
}
.price-term {
    font-size: 1rem;
    font-weight: 600;
    color: #2c7da0;
}
.price-note {
    font-size: .75rem;
    color: #8ba0b5;
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px dashed #e2e8f0;
}
.price-card--special {
    background: linear-gradient(135deg, #f9fbfd, #fff);
    border-left: 4px solid #e67e22;
}
.price-card--highlight {
    background: linear-gradient(135deg, #fff6e6, #fff);
    border-left: 4px solid #e67e22;
}

/* --- NOK Who --- */
.nok-who {
    padding: 70px 0;
    background: #fff;
}
.nok-who__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.nok-who__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}
.nok-who-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    transition: all .25s;
}
.nok-who-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.nok-who-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.nok-who-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.nok-who-card__text {
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
}
.nok-who-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2a3f;
}
.nok-who-banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}

/* --- NOK Quiz --- */
.nok {
    padding: 70px 0;
    background: #fafcff;
}
.nok__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.nok__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.nok__quiz {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef2f8;
    padding: 32px;
}
.quiz-question {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f8;
}
.quiz-question:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.quiz-question__text {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a2a3f;
    margin-bottom: 14px;
    text-align: center;
}
.quiz-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.quiz-btn {
    background: #f9fbfd;
    border: 1px solid #cbdde9;
    border-radius: 10px;
    padding: 8px 24px;
    font-size: .95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    color: #1a2a3f;
}
.quiz-btn.active {
    background: #2c7da0;
    border-color: #2c7da0;
    color: #fff;
}
.quiz-btn:hover {
    background: #eef2f8;
    transform: translateY(-1px);
}
.nok__result {
    max-width: 700px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef2f8;
    padding: 32px;
    text-align: center;
}
.result-percent {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c7da0;
    margin-bottom: 20px;
}
.result-form p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #1a2a3f;
}
.result-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.result-form input {
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: 1rem;
}
.result-form button {
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: .2s;
}
.result-form button:hover {
    background: #236b8a;
}

/* --- NOK Why --- */
.nok-why {
    padding: 70px 0;
    background: #fff;
}
.nok-why__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.nok-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.nok-why-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.nok-why-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.nok-why-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.nok-why-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.nok-why-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2a3f;
}
.nok-why-banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}

/* --- NOK Steps --- */
.nok-steps {
    padding: 70px 0;
    background: #fff;
}
.nok-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.nok-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.nok-steps__row-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.nok-step {
    position: relative;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    overflow: hidden;
}
.nok-step .step-number-big {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3.8rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .15;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
.nok-step-icon {
    font-size: 2.4rem;
    color: #2c7da0;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.nok-step-text {
    font-size: .9rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.nok-step:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.nok-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
}
.nok-banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}

/* --- Electro Who --- */
.electro-who {
    padding: 70px 0;
    background: #fff;
}
.electro-doc-info {
    background: #eef2f8;
    border-left: 4px solid #2c7da0;
    border-radius: 10px;
    padding: 16px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .95rem;
    color: #1a2a3f;
}
.electro-doc-info i {
    font-size: 1.8rem;
    color: #2c7da0;
}
.electro-who__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.electro-who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.electro-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all .25s;
}
.electro-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.electro-icon {
    font-size: 3rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.electro-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.electro-card p {
    font-size: .95rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 16px;
}
.electro-law {
    display: inline-block;
    background: #fff;
    border: 1px solid #d4e2f0;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: #2c7da0;
    border-radius: 20px;
}
.electro-note {
    background: #eef2f8;
    border-radius: 10px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    color: #1a2a3f;
}
.electro-note i {
    font-size: 2rem;
    color: #e67e22;
    flex-shrink: 0;
}
.electro-note__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
.electro-note__line {
    font-size: 1.1rem;
    line-height: 1.4;
}
.electro-note__line strong {
    color: #e67e22;
}

/* --- Electro Table --- */
.electro-table {
    padding: 70px 0;
    background: #fafcff;
}
.electro-table__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
}
.electro-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}
.electro-groups {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}
.electro-groups th {
    background: #eef2f8;
    padding: 15px;
    font-weight: 700;
    color: #1a2a3f;
    text-align: left;
}
.electro-groups td {
    padding: 15px;
    border-bottom: 1px solid #eef2f8;
    vertical-align: top;
    color: #2c3e50;
}
.group-badge {
    font-weight: 800;
    font-size: 1.2rem;
    color: #2c7da0;
    width: 80px;
}
.accent-row {
    background: #f9fbfd;
}
.electro-table-note {
    background: #fff;
    border-left: 4px solid #2c7da0;
    border-radius: 10px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    color: #1a2a3f;
}
.electro-table-note i {
    font-size: 2rem;
    color: #2c7da0;
    flex-shrink: 0;
}
.electro-table-note__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.electro-table-note__line {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* --- Electro Fines --- */
.electro-fines {
    padding: 70px 0;
    background: #fff;
}
.electro-fines__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
}
.electro-fines__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.fine-card {
    background: #fff9f0;
    border: 1px solid #fce4c5;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: all .2s;
}
.fine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}
.fine-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7a4a1a;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffcdb5;
    display: inline-block;
}
.fine-card .fine-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 8px;
}
.fine-desc {
    font-size: .8rem;
    color: #8ba0b5;
    margin-top: 10px;
}
.electro-fines-warning {
    background: linear-gradient(135deg, #fff4e6, #ffe8d6);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    border-left: 6px solid #e67e22;
    font-weight: 600;
    color: #7a4a1a;
}

/* --- Electro Steps --- */
.electro-steps {
    padding: 70px 0;
    background: #fff;
}
.electro-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.electro-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.electro-steps__row-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.electro-step {
    position: relative;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px 24px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}
.electro-step-number {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .2;
    line-height: 1;
}
.electro-step-icon {
    font-size: 2.5rem;
    color: #2c7da0;
    margin-bottom: 16px;
}
.electro-step-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.electro-step:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.electro-steps__banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2a3f;
}
.electro-steps__banner i {
    font-size: 2rem;
    color: #2c7da0;
}

/* --- Region Training --- */
.region-training {
    padding: 70px 0;
    background: #fff;
}
.region-training__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.region-training__cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.region-training__cloud span {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: .9rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all .2s;
    cursor: default;
}
.region-training__cloud span:hover {
    background: #eef2f8;
    border-color: #cbdde9;
    transform: translateY(-2px);
}

/* --- Vysota Groups --- */
.vysota-groups {
    padding: 70px 0;
    background: #fafcff;
}
.vysota-groups__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
}
.vysota-groups__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a627a;
    margin-bottom: 48px;
}
.vysota-groups__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.group-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 24px;
    transition: all .25s;
}
.group-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.group-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eef2f8;
}
.group-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    background: #2c7da0;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.group-badge-vysota {
    font-size: .85rem;
    font-weight: 600;
    padding: 6px 14px;
    background: #eef2f8;
    border-radius: 30px;
    color: #1a2a3f;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}
.group-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 20px 0 12px;
}
.group-card__title:first-of-type {
    margin-top: 0;
}
.group-card p {
    font-size: .95rem;
    line-height: 1.5;
    color: #2c3e50;
}
.group-card ul {
    padding-left: 20px;
    margin: 0;
}
.group-card li {
    font-size: .9rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* --- How Prepare --- */
.how-prepare {
    padding: 70px 0;
    background: #fafcff;
}
.how-prepare__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.how-prepare__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.how-prepare__row-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.prepare-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    overflow: hidden;
}
.prepare-card .card-number {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: #2c7da0;
    opacity: .15;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
.prepare-card .card-icon {
    font-size: 2.2rem;
    color: #2c7da0;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.prepare-card .card-text {
    font-size: .95rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
.prepare-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.how-prepare__banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2a3f;
}
.how-prepare__banner i {
    font-size: 2.2rem;
    color: #2c7da0;
}

/* --- Cost Includes --- */
.cost-includes {
    padding: 70px 0;
    background: #fff;
}
.cost-includes__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.cost-includes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.cost-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.cost-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.cost-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.cost-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.cost-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.banner-header {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
    justify-content: center;
}
.banner-header i {
    font-size: 2rem;
    color: #2c7da0;
}
.banner-stats {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.stat-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c7da0;
    display: block;
    margin-bottom: 10px;
    opacity: .6;
}
.stat-label {
    font-size: .95rem;
    font-weight: 500;
    color: #1a2a3f;
}
.stat-label strong {
    color: #e67e22;
}

/* --- EVA Why --- */
.eva-why {
    padding: 70px 0;
    background: #fff;
}
.eva-why__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.eva-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.eva-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.eva-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.eva-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.eva-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.eva-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2a3f;
}
.eva-banner i {
    font-size: 2.5rem;
    color: #2c7da0;
}

/* --- Who Suitable EVA --- */
.who-suitable-eva {
    padding: 70px 0;
    background: #fafcff;
}
.who-suitable-eva__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.who-suitable-eva__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.suitable-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.suitable-card .suitable-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.suitable-card .suitable-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.suitable-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Areas Cloud --- */
.areas-cloud {
    padding: 70px 0;
    background: #fff;
}
.areas-cloud__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.areas-cloud__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.area-tag {
    display: inline-block;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: .9rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all .2s;
    cursor: default;
}
.area-tag:hover {
    background: #eef2f8;
    border-color: #cbdde9;
    transform: translateY(-2px);
}

/* --- Electro Groups EVA --- */
.electro-groups-eva {
    padding: 70px 0;
    background: #fafcff;
}
.electro-groups-eva__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.electro-groups-eva__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.group-card {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.group-card .group-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.group-card .group-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2a44;
}
.group-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}

/* --- Why Work --- */
.why-work {
    padding: 70px 0;
    background: #fff;
}
.why-work__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.why-work__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.why-work__row-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.why-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}
.why-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.why-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.why-banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2a3f;
}
.why-banner i {
    font-size: 2.2rem;
    color: #2c7da0;
}

/* --- Electro Info --- */
.electro-info {
    padding: 70px 0;
    background: #fff;
}
.electro-info__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 32px;
    letter-spacing: -.3px;
}
.electro-info__badge {
    width: 100%;
    margin: 0 auto 32px;
    background: #fff6e6;
    border-left: 4px solid #e67e22;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #7a4a1a;
}
.electro-info__badge i {
    font-size: 1.2rem;
    color: #e67e22;
}
.electro-info__subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
    margin-bottom: 40px;
}
.electro-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.electro-info-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
}
.electro-info-card .card-icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.electro-info-card .card-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2a44;
    line-height: 1.4;
}
.electro-info-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.electro-info__banner {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a3f;
}
.electro-info__banner i {
    font-size: 2.2rem;
    color: #2c7da0;
}

/* --- About Words --- */
.about-words {
    padding: 70px 0;
    background: #fff;
}
.about-words__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.about-words__row-first {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}
.about-words__row-second {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}
.word-card {
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
    flex: 1;
    min-width: 240px;
}
.word-card:hover {
    transform: translateY(-6px);
    border-color: #cbdde9;
    background: #fff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
}
.word-card__icon {
    font-size: 2.8rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.word-card__text {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2a44;
    line-height: 1.4;
    margin: 0;
}
.about-words__row-second .word-card {
    max-width: 400px;
}
.about-words__trust {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
    transition: all .2s;
}
.about-words__trust i {
    font-size: 2.5rem;
    color: #2c7da0;
}
.about-words__trust span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2a3f;
    letter-spacing: -.3px;
}
.about-words__trust:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .1);
    border-color: #cbdde9;
}

/* --- Company Details --- */
.company-details {
    padding: 70px 0;
    background: #fafcff;
}
.company-details__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}
.company-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef2f8;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
}
.details-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #eef2f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c7da0;
    font-size: 1.4rem;
    transition: all .2s;
}
.detail-item:hover .detail-icon {
    background: #2c7da0;
    color: #fff;
    transform: scale(1.02);
}
.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.detail-label {
    font-size: .85rem;
    font-weight: 600;
    color: #4a627a;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1a2a3f;
    line-height: 1.4;
    word-break: break-word;
}
.detail-note {
    font-size: .85rem;
    color: #4a627a;
    margin-top: 4px;
}

/* ============================================================
   ПРАВОВАЯ ИНФОРМАЦИЯ (БЛОК С ДОКУМЕНТАМИ)
   ============================================================ */
.legal-docs {
    padding-bottom: 48px;
    background: linear-gradient(135deg, #fafcff 0%, #f4f8fe 100%);
}

.legal-docs__card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.legal-docs__card:hover {
    box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.08);
    border-color: #cbdde9;
}

.legal-docs__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.legal-docs__header i {
    font-size: 2.2rem;
    color: #2c7da0;
}

.legal-docs__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 0;
    letter-spacing: -0.3px;
}

.legal-docs__subtitle {
    text-align: center;
    font-size: 1rem;
    color: #4a627a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.legal-docs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.legal-docs__item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.legal-docs__item:hover {
    transform: translateX(6px);
    border-color: #2c7da0;
    background: #f0f7fe;
    box-shadow: 0 4px 12px rgba(44, 125, 160, 0.08);
}

.legal-docs__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #eef2f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2c7da0;
    transition: all 0.25s ease;
}

.legal-docs__item:hover .legal-docs__icon {
    background: #2c7da0;
    color: #ffffff;
}

.legal-docs__content {
    flex: 1;
}

.legal-docs__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.legal-docs__content p {
    font-size: 0.85rem;
    color: #4a627a;
    margin: 0;
    line-height: 1.4;
}

.legal-docs__arrow {
    flex-shrink: 0;
    font-size: 1rem;
    color: #8ba0b5;
    transition: all 0.25s ease;
}

.legal-docs__item:hover .legal-docs__arrow {
    transform: translateX(4px);
    color: #2c7da0;
}

/* --- Route Map --- */
.route-map {
    padding: 70px 0;
    background: #fff;
}
.route-map__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 48px;
    letter-spacing: -.3px;
}

/* ===== ОСНОВНОЙ КОНТЕЙНЕР (растягиваем колонки) ===== */
.route-station {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: stretch; /* ← колонки одинаковой высоты */
}

.route-station:last-of-type {
    margin-bottom: 48px;
}

/* ===== ЛЕВАЯ КОЛОНКА (изображение) ===== */
.route-station__image {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.route-station__image .image-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f0f4f9, #e6edf4);
    border-radius: 20px;
    min-height: 260px;
    border: 2px dashed #cbdde9;
    overflow: hidden;
    height: 100%; /* ← растягиваем на всю высоту */
}

.route-station__image .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ← изображение заполняет весь контейнер */
    border-radius: 20px;
    display: block;
}

.image-note {
    font-size: .75rem;
    color: #8ba0b5;
    text-align: center;
    margin-top: 12px;
}

/* ===== ПРАВАЯ КОЛОНКА (информация) ===== */
.route-station__info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.route-station__info .station-card {
    flex: 1;
    background: #f9fbfd;
    border: 1px solid #eef2f8;
    border-radius: 20px;
    padding: 24px;
    transition: all .2s;
    height: 100%; /* ← растягиваем карточку на всю высоту */
}

.route-station__info .station-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .1);
    border-color: #cbdde9;
}

/* ===== ЗАГОЛОВОК СТАНЦИИ ===== */
.station-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.station-title i {
    color: #2c7da0;
    font-size: 1.4rem;
}

/* ===== ДЕТАЛИ (строки) ===== */
.station-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: #2c3e50;
}

.detail-row i {
    width: 24px;
    color: #2c7da0;
    font-size: 1.1rem;
    text-align: center;
}

.detail-row strong {
    font-weight: 700;
    color: #1a2a3f;
}

/* ===== ВСТРЕЧА (жёлтая плашка) ===== */
.detail-row.meet {
    background: #fff6e6;
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 8px;
    border-left: 4px solid #e67e22;
}

.detail-row.meet i {
    color: #e67e22;
}

/* ===== КООРДИНАТЫ (большая плашка) ===== */
.route-map__coords {
    background: linear-gradient(135deg, #eef2f8, #f8fafc);
    border-radius: 60px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a3f;
    transition: all .2s;
}

.route-map__coords i {
    font-size: 1.4rem;
    color: #e67e22;
}

.route-map__coords:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .1);
    border-color: #cbdde9;
}

/* --- Additional Pages --- */
.company-info {
    padding-bottom: 48px;
}
.About-the-company {
    background: #f4f6fa;
}
.contacts-page {
    background: #f4f6fa;
}
.block-contacts {
    padding-bottom: 48px;
}
.company-info p {
    margin-bottom: 20px;
}
.vysota-page {
    background: #f4f6fa;
    padding-bottom: 48px;
}

/* --- Error Page --- */
.error-page {
    background: #f4f6fa;
    padding: 60px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 1px solid #eef2f8;
}
.error-icon {
    font-size: 5rem;
    color: #2c7da0;
    opacity: .6;
    margin-bottom: 20px;
}
.error-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a3f;
    margin-bottom: 12px;
}
.error-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a627a;
    margin-bottom: 20px;
}
.error-text {
    font-size: 1.1rem;
    color: #4a627a;
    line-height: 1.6;
    margin-bottom: 32px;
}
.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-error {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent;
}
.btn-error-primary {
    background: #2c7da0;
    color: #fff;
}
.btn-error-primary:hover {
    background: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -6px rgba(44, 125, 160, .4);
}
.btn-error-outline {
    background: transparent;
    border-color: #cbdde9;
    color: #2c3e50;
}
.btn-error-outline:hover {
    border-color: #2c7da0;
    background: #f8fafc;
    transform: translateY(-2px);
}
.error-popular {
    margin-top: 20px;
    padding-top: 32px;
    border-top: 1px solid #eef2f8;
}
.error-popular-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a3f;
    margin-bottom: 20px;
}
.error-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    justify-items: center;
}
.error-popular-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f9fbfd;
    border-radius: 10px;
    font-size: .9rem;
    color: #2c7da0;
    text-decoration: none;
    transition: .2s;
    border: 1px solid transparent;
}
.error-popular-link:hover {
    background: #fff;
    border-color: #cbdde9;
    transform: translateY(-2px);
}
.error-popular-link i {
    font-size: .9rem;
}
.error-contacts {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .95rem;
}
.error-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    text-decoration: none;
    transition: color .2s;
}
.error-contacts a:hover {
    color: #2c7da0;
}

/* --- Thank You Page --- */
.thankyou-page {
    background: #f4f6fa;
    padding: 60px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.thankyou-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 1px solid #eef2f8;
}
.thankyou-icon {
    font-size: 5rem;
    color: #2c7da0;
    margin-bottom: 20px;
}
.thankyou-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2a3f;
    margin-bottom: 12px;
}
.thankyou-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a627a;
    margin-bottom: 20px;
}
.thankyou-text {
    font-size: 1.1rem;
    color: #4a627a;
    line-height: 1.6;
    margin-bottom: 12px;
}
.thankyou-text small {
    display: block;
    font-size: .95rem;
    color: #8ba0b5;
    margin-top: 8px;
}
.thankyou-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn-thankyou {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent;
}
.btn-thankyou-primary {
    background: #2c7da0;
    color: #fff;
}
.btn-thankyou-primary:hover {
    background: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -6px rgba(44, 125, 160, .4);
}
.btn-thankyou-outline {
    background: transparent;
    border-color: #cbdde9;
    color: #2c3e50;
}
.btn-thankyou-outline:hover {
    border-color: #2c7da0;
    background: #f8fafc;
    transform: translateY(-2px);
}
.thankyou-contacts {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eef2f8;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .95rem;
}
.thankyou-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    text-decoration: none;
    transition: color .2s;
}
.thankyou-contacts a:hover {
    color: #2c7da0;
}

/* --- Policy Page --- */
.policy-page {
    background: #f4f6fa;
    padding: 0 0 70px;
}
.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    border: 1px solid #eef2f8;
}
.policy-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 8px;
    text-align: center;
}
.policy-content .policy-date {
    text-align: center;
    font-size: .9rem;
    color: #8ba0b5;
    margin-bottom: 40px;
    display: block;
}
.policy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2a3f;
    margin: 32px 0 12px;
}
.policy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}
.policy-content ul {
    padding-left: 24px;
    margin: 12px 0 20px;
}
.policy-content ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 8px;
    list-style: disc;
}
.policy-content .highlight-box {
    background: #f9fbfd;
    border-left: 4px solid #2c7da0;
    padding: 16px 24px;
    border-radius: 8px;
    margin: 24px 0;
}
.policy-content .highlight-box p {
    margin-bottom: 0;
}

/* --- Blog Page --- */
.blog-page {
    background: #f4f6fa;
    padding: 0 0 70px;
}
.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}
.blog-filter__btn {
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid #cbdde9;
    background: #fff;
    font-size: .9rem;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    transition: all .2s;
}
.blog-filter__btn:hover {
    border-color: #2c7da0;
    background: #f8fafc;
}
.blog-filter__btn.active {
    background: #2c7da0;
    color: #fff;
    border-color: #2c7da0;
}
.blog-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.blog-main {
    flex: 1;
    min-width: 0;
}
.blog-sidebar {
    flex: 0 0 320px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef2f8;
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .08);
    border-color: #cbdde9;
}
.blog-card__image {
    height: 200px;
    background: #eef2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8ba0b5;
    position: relative;
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2c7da0;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 10px;
}
.blog-card__body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__date {
    font-size: .85rem;
    color: #8ba0b5;
    margin-bottom: 8px;
}
.blog-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.blog-card__title a:hover {
    color: #2c7da0;
}
.blog-card__excerpt {
    font-size: .95rem;
    color: #4a627a;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card__link {
    font-weight: 600;
    color: #2c7da0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
}
.blog-card__link:hover {
    color: #1f6392;
    gap: 10px;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #eef2f8;
    background: #fff;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    transition: all .2s;
}
.blog-pagination a:hover {
    border-color: #2c7da0;
    background: #f8fafc;
}
.blog-pagination .active {
    background: #2c7da0;
    color: #fff;
    border-color: #2c7da0;
}
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef2f8;
    padding: 24px;
    margin-bottom: 32px;
}
.sidebar-widget:last-child {
    margin-bottom: 0;
}
.sidebar-widget__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a3f;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f8;
}
.sidebar-search {
    display: flex;
    gap: 8px;
}
.sidebar-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: .95rem;
}
.sidebar-search button {
    padding: 10px 16px;
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: .2s;
}
.sidebar-search button:hover {
    background: #236b8a;
}
.sidebar-categories li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f9;
    display: flex;
    justify-content: space-between;
}
.sidebar-categories li:last-child {
    border-bottom: none;
}
.sidebar-categories a {
    color: #2c3e50;
    text-decoration: none;
    transition: color .2s;
}
.sidebar-categories a:hover {
    color: #2c7da0;
}
.sidebar-categories .count {
    color: #8ba0b5;
    font-size: .9rem;
}
.sidebar-posts li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f9;
    display: flex;
    gap: 12px;
    align-items: center;
}
.sidebar-posts li:last-child {
    border-bottom: none;
}
.sidebar-posts .thumb {
    width: 60px;
    height: 60px;
    background: #eef2f8;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ba0b5;
    font-size: 1.2rem;
}
.sidebar-posts .info {
    flex: 1;
}
.sidebar-posts .info a {
    font-weight: 600;
    color: #1a2a3f;
    text-decoration: none;
    transition: color .2s;
}
.sidebar-posts .info a:hover {
    color: #2c7da0;
}
.sidebar-posts .info .date {
    font-size: .8rem;
    color: #8ba0b5;
}
.sidebar-subscribe input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    font-size: .95rem;
    margin-bottom: 12px;
}
.sidebar-subscribe button {
    width: 100%;
    padding: 12px;
    background: #2c7da0;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}
.sidebar-subscribe button:hover {
    background: #236b8a;
}

/* ============================================================
   8. FOOTER
   ============================================================ */
.footer {
    background: #222;
    color: #ccc;
    padding: 40px 0;
    font-size: .9rem;
    border-top: 1px solid #333;
}
.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-logo {
    max-height: 50px;
    width: auto;
}
.footer-slogan {
    font-weight: 500;
    font-size: 1rem;
    color: #ddd;
}
.footer__info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}
.footer__legal p,
.footer__phones a,
.footer__links a,
.footer__links span {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    text-decoration: none;
    transition: color .2s;
}
.footer__phones a:hover,
.footer__links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer__links span {
    margin-top: 8px;
    color: #aaa;
    font-size: .8rem;
}

/* ============================================================
   COOKIE-БАННЕР
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 280px;
}

.cookie-banner__icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: #e67e22;
}

.cookie-banner__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2c3e50;
}

.cookie-banner__text strong {
    color: #1a2a3f;
}

.cookie-banner__text a {
    color: #2c7da0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-banner__text a:hover {
    color: #1f6392;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: #2c7da0;
    color: #ffffff;
    border-color: #2c7da0;
}

.cookie-banner__btn--accept:hover {
    background: #236b8a;
    border-color: #236b8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(44, 125, 160, 0.4);
}

.cookie-banner__btn--settings {
    background: transparent;
    color: #2c3e50;
    border-color: #dfe7ef;
}

.cookie-banner__btn--settings:hover {
    background: #f8fafc;
    border-color: #cbdde9;
    transform: translateY(-2px);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: #8ba0b5;
    border-color: transparent;
}

.cookie-banner__btn--decline:hover {
    color: #2c3e50;
    transform: translateY(-2px);
}

/* ============================================================
   КАРУСЕЛЬ ДЛЯ ЛИЦЕНЗИЙ И ОТЗЫВОВ (мобильная версия)
   ============================================================ */

/* Блок-обёртка для карусели */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

/* Контейнер с карточками */
.carousel-wrapper .carousel-track {
    display: flex;
    transition: transform 0.35s ease-in-out;
    will-change: transform;
}

/* Каждый элемент — фиксированная ширина */
.carousel-wrapper .carousel-slide {
    flex: 0 0 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

/* Кнопки навигации */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(44, 125, 160, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel-btn:hover {
    background: #236b8a;
}
.carousel-btn--prev {
    left: 6px;
}
.carousel-btn--next {
    right: 6px;
}

/* Точки (пагинация) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dfe7ef;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.carousel-dot.active {
    background: #2c7da0;
}

/* ============================================================
   9. MEDIA QUERIES (в порядке убывания ширины)
   ============================================================ */

/* --- 1150px and less --- */
@media (max-width: 1150px) {
    .logo img {
        width: 290px;
    }
    .footer__wrapper {
        justify-content: space-evenly;
    }
}

/* --- 1000px and less --- */
@media (max-width: 1000px) {
    .messenger-link,
    .contact-link,
    .action-btn {
        font-size: 0;
        padding: 8px 10px;
    }
    .messenger-link i,
    .contact-link i,
    .action-btn i {
        font-size: 1.4rem;
        width: 24px;
    }
    .action-btn i {
        font-size: 1.4rem;
    }
    .header__wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 0;
    }
    .logo {
        width: 100%;
        text-align: center;
        margin: 0 auto 4px;
    }
    .logo img {
        display: inline-block;
    }
    .header__right {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
        gap: 16px;
    }
    .info-card {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
        min-width: unset;
        width: auto;
        flex: 0 1 auto;
    }
    .messenger-link,
    .contact-link {
        padding: 6px 8px;
    }
    .action-btn {
        padding: 6px 10px;
        min-width: 120px;
        max-width: 0px;
    }
    .info-card {
        gap: 2px 6px;
    }
}

/* --- 992px and less --- */
@media (max-width: 992px) {
    .new-gallery-row {
        gap: 30px;
    }
    .new-gallery-images {
        min-width: 240px;
    }
    .new-thumb {
        width: 70px;
        height: 70px;
    }
    .reviews__media {
        gap: 30px;
    }
    .media-video,
    .media-audio {
        padding: 16px;
    }
    .audio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* --- 900px and less --- */
@media (max-width: 900px) {
    .top-bar__grid {
        justify-content: space-around;
        gap: 12px 24px;
    }
    .top-bar__item {
        white-space: normal;
        word-break: break-word;
    }
    .tasks__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .tasks__title {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }
    .audience__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .audience__title {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }
    .common-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .common-steps__title {
        font-size: 1.8rem;
    }
    .services__grid--main,
    .services__grid--popular {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .services__title {
        font-size: 1.8rem;
    }
    .services__subtitle {
        font-size: 1rem;
    }
    .services__subtitle--popular {
        font-size: 1.3rem;
        margin-top: 40px;
    }
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .advantages__title {
        font-size: 1.8rem;
    }
    .licenses__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .licenses__title {
        font-size: 1.8rem;
    }
    .letters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nok-who__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nok-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .nok-why__title {
        font-size: 1.6rem;
    }
    .nok-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .nok-steps__row-center {
        flex-wrap: wrap;
        gap: 24px;
    }
    .nok-step {
        max-width: 100%;
        min-width: 200px;
    }
    .nok-steps__title {
        font-size: 1.8rem;
    }
    .electro-who__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .electro-steps__row-center {
        gap: 24px;
    }
    .electro-step {
        max-width: 100%;
        min-width: 200px;
    }
    .electro-steps__title {
        font-size: 1.8rem;
    }
    .vysota-groups__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .vysota-groups__title {
        font-size: 1.8rem;
    }
    .how-prepare__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .how-prepare__row-center {
        gap: 24px;
    }
    .prepare-card {
        max-width: 100%;
        min-width: 200px;
    }
    .how-prepare__title {
        font-size: 1.8rem;
    }
    .cost-includes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .cost-includes__title {
        font-size: 1.8rem;
    }
    .eva-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .eva-why__title {
        font-size: 1.8rem;
    }
    .who-suitable-eva__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .who-suitable-eva__title {
        font-size: 1.8rem;
    }
    .electro-groups-eva__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .electro-groups-eva__title {
        font-size: 1.8rem;
    }
    .why-work__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-work__row-center {
        flex-wrap: wrap;
        gap: 24px;
    }
    .why-card {
        max-width: 100%;
        min-width: 180px;
    }
    .why-work__title {
        font-size: 1.8rem;
    }
    .electro-info__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .electro-info__title {
        font-size: 1.8rem;
    }
    .electro-info__subtitle {
        font-size: 1rem;
    }
    .about-words__row-first {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .about-words__row-second {
        gap: 24px;
    }
    .company-details__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
    .company-details__title {
        font-size: 1.8rem;
    }
    .route-station {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 56px;
    }
    
    .route-station__image {
        min-width: 0;
        width: 100%;
    }
    
    .route-station__image .image-placeholder {
        min-height: 220px;
        height: auto;
    }
    
    .route-station__image .image-placeholder img {
        height: auto;
        min-height: 220px;
        object-fit: cover;
    }
    
    .route-station__info {
        min-width: 0;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid-rabochie {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid .temp-global-dropdown ul,
    .services-grid-rabochie .temp-global-dropdown ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .docs-row {
        flex-direction: column;
    }
    .docs-row__image {
        max-width: 800px;
        margin: 0 auto;
    }
    .docs-row__content {
        text-align: center;
    }
    .docs-row__list li::before {
        display: none;
    }
    .docs-row__buttons {
        justify-content: center;
    }
    .ohrana-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .ohrana-advantages__title {
        font-size: 1.8rem;
    }
    .sout-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sout-advantages__title {
        font-size: 1.8rem;
    }
    .sout-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sout-steps__title {
        font-size: 1.8rem;
    }
    .sout-who__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sout-who__title {
        font-size: 1.8rem;
    }
    .mchs-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .mchs-steps__row-center {
        flex-wrap: wrap;
        gap: 24px;
    }
    .mchs-step {
        max-width: 100%;
        min-width: 200px;
    }
    .mchs-steps__title {
        font-size: 1.8rem;
    }
    .mchs-control__grid {
        gap: 24px;
    }
    .control-card {
        min-width: 220px;
    }
    .mchs-control__title {
        font-size: 1.8rem;
    }
    .mchs-control__subtitle {
        font-size: 1.5rem;
    }
    .check-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .check-list__title {
        font-size: 1.8rem;
    }
    .control-frequency__grid {
        gap: 24px;
    }
    .freq-card {
        min-width: 220px;
    }
    .control-frequency__title {
        font-size: 1.8rem;
    }
    .practical-advice__grid {
        gap: 24px;
    }
    .advice-card {
        min-width: 220px;
    }
    .practical-advice__title {
        font-size: 1.8rem;
    }
    .upk-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .upk-steps__title {
        font-size: 1.8rem;
    }
    .electro-fines__grid {
        grid-template-columns: 1fr;
    }
    .services__grid--eb,
    .services__grid--pk,
    .services__grid--nk {
        grid-template-columns: repeat(2, 1fr);
    }
    .services__grid--vysota {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .blog-wrapper {
        flex-direction: column;
    }
    .blog-sidebar {
        flex: 1 1 auto;
        width: 100%;
    }

    /* SEO blocks */
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .seo-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .seo-text__content h2 {
        font-size: 1.4rem;
    }
    .seo-center-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .seo-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .seo-steps-container--vysota .seo-steps-grid--vysota {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 600px;
    }
    .seo-price-breakdown__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

    /* ===== МОБИЛЬНАЯ ВЕРСИЯ (до 800px) ===== */
@media (max-width: 800px) {
    .main-nav {
        position: relative;
        z-index: 100;
    }

    .nav__wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Бургер-кнопка */
    .burger-icon {
        display: flex;
        order: 1;
    }

    /* Меню — поверх страницы (position: absolute) */
    .nav-menu {
        display: none; /* скрыто по умолчанию */
        position: absolute;
        top: calc(100% + 10px); /* сразу под навбаром */
        left: 0;
        right: 0;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        padding: 20px 24px;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border: 1px solid #eef2f8;
        gap: 12px;
        z-index: 200;
        order: 3;
        /* отключаем margin-top, он не нужен при absolute */
        margin-top: 0;
        /* анимация появления */
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
    }

    /* При открытом чекбоксе — показываем меню с анимацией */
    #burger-toggle:checked~.nav-menu {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 8px 0;
        white-space: normal;
        border-bottom: 1px solid #f0f4f9;
        font-size: 1.05rem;
        text-align: center;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Поиск — всегда виден, справа от бургера */
    .search-form {
        order: 2;
        flex: 1;
        margin-left: 16px;
    }

    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contacts__map {
        min-height: 300px;
    }
    .contacts__map iframe {
        min-height: 300px;
    }
    .subscribe-consult__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .subscribe-consult__col {
        padding: 28px 24px;
    }
    .subscribe-consult__title {
        font-size: 1.4rem;
    }
    .delivery__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .delivery__title {
        font-size: 1.8rem;
    }
    .delivery-col__title {
        font-size: 1.3rem;
    }
    .who-suitable-eva__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .suitable-card {
        max-width: 100%;
    }
    .electro-groups-eva__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .company-details__grid {
        padding: 24px 20px;
    }
    .policy-content {
        padding: 30px 24px;
    }
    .policy-content h1 {
        font-size: 1.8rem;
    }
    .policy-content h2 {
        font-size: 1.2rem;
    }
}

/* На десктопе карусель отключается */
@media (min-width: 769px) {
    .carousel-wrapper {
        overflow: visible;
    }
    .carousel-wrapper .carousel-track {
        display: grid !important;
        gap: 30px;
        transform: none !important;
    }
    .carousel-wrapper .carousel-slide {
        flex: none;
        padding: 0;
    }
    .carousel-btn,
    .carousel-dots {
        display: none !important;
    }

    /* Восстанавливаем исходную сетку для каждого блока */
    .licenses__grid .carousel-wrapper .carousel-track {
        grid-template-columns: repeat(4, 1fr);
    }
    .letters-grid .carousel-wrapper .carousel-track {
        grid-template-columns: repeat(4, 1fr);
    }
    .messengers-grid .carousel-wrapper .carousel-track {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* --- 768px and less --- */
@media (max-width: 768px) {
    .top-bar__item {
        font-size: .75rem;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__title {
        font-size: 2rem;
        text-align: center;
    }
    .hero {
        padding: 40px 0;
    }
    .hero__right {
        padding: 28px 20px;
    }
    .hero__subtitle {
        text-align: center;
    }
    .new-gallery-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    .new-gallery-images {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
    }
    .new-gallery-description {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
    }
    .new-thumb {
        width: 65px;
        height: 65px;
    }
    .new-thumb-list {
        gap: 10px;
    }
    /* Правая колонка с описанием */
    .docs-row__content {
        width: 100%;
        text-align: center;
    }
    .docs-row__list {
        display: inline-block;
        text-align: left;
    }
    .docs-row__list li {
        text-align: left;
    }
    .requirements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
    }
    .docs-price-row {
        justify-content: center;
    }
    .docs-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
        padding-bottom: 40px;
    }
    .docs__title {
        font-size: 1.8rem;
    }
    .docs-row__title {
        font-size: 1.2rem;
    }
    .docs-row__buttons {
        justify-content: space-evenly;
    }
    .btn {
        padding: 8px 20px;
    }
    .footer__wrapper {
        flex-direction: column;
        text-align: center;
    }
    .footer__brand {
        justify-content: center;
    }
    .footer__info {
        justify-content: center;
        gap: 30px;
    }
    .upk-card {
        flex: 0 1 100%;
        max-width: 400px;
    }
    .upk-advantages__title {
        font-size: 1.6rem;
    }
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .team__title {
        font-size: 1.8rem;
    }
    .about-words__row-first {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-words__row-second {
        flex-direction: column;
        align-items: center;
    }
    .word-card {
        width: 100%;
        max-width: 100%;
    }
    .about-words__trust {
        flex-direction: column;
        padding: 24px 20px;
    }
    .about-words__trust span {
        font-size: 1.2rem;
    }
    .about-words__trust i {
        font-size: 2rem;
    }
    .fis-card {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 20px;
    }
    .fis-left {
        min-width: 0;
    }
    .fis-left i {
        font-size: 2rem;
    }
    .fis-left span {
        font-size: 1rem;
    }
    .fis-frdo--with-right .fis-right {
        justify-content: center;
        padding: 10px 18px;
    }
    .fis-frdo--with-right .fis-right i {
        font-size: 1.4rem;
    }
    .fis-frdo--with-right .fis-right span {
        font-size: 0.9rem;
        white-space: normal;
    }
    .mchs-item.disabled-item {
        flex-wrap: nowrap;
        align-items: center;
    }
    .disabled-note {
        width: auto;
        margin-left: auto;
        margin-top: 0;
    }
    .reviews__media {
        flex-direction: column;
        gap: 30px;
    }
    .media-video,
    .media-audio {
        flex: 1 1 auto;
        width: 100%;
    }
    .media-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    .audio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .audio-grid audio {
        width: 100%;
    }
    .legal-docs {
        padding: 50px 0;
    }

    .legal-docs__card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .legal-docs__header {
        gap: 10px;
    }

    .legal-docs__header i {
        font-size: 1.8rem;
    }

    .legal-docs__title {
        font-size: 1.4rem;
    }

    .legal-docs__subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .legal-docs__item {
        padding: 14px 16px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .legal-docs__icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .legal-docs__content h3 {
        font-size: 0.9rem;
    }

    .legal-docs__content p {
        font-size: 0.8rem;
    }

    .legal-docs__arrow {
        margin-left: auto;
    }
    .cookie-banner {
        padding: 16px 0;
    }

    .cookie-banner__wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        min-width: 0;
    }

    .cookie-banner__icon {
        font-size: 1.6rem;
    }

    .cookie-banner__text {
        font-size: 0.85rem;
    }

    .cookie-banner__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-banner__btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* --- 700px and less --- */
@media (max-width: 700px) {
    .info-card {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 12px;
        width: 100%;
        min-width: unset;
    }
    .info-card.messengers,
    .info-card.contacts,
    .info-card.actions {
        flex-direction: row;
    }
    .messenger-link,
    .contact-link,
    .action-btn {
        font-size: 0;
        padding: 6px 8px;
    }
    .messenger-link i,
    .contact-link i,
    .action-btn i {
        font-size: 1.2rem;
        width: 20px;
    }
    .action-btn {
        max-width: 50px;
        min-width: 40px;
        padding: 6px 10px;
    }
    .who-suitable__grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .suitable-card {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px;
    }
    .who-suitable__title {
        font-size: 1.6rem;
    }
    .mchs__grid {
        grid-template-columns: 1fr;
    }
    .mchs-result {
        flex-direction: column;
        text-align: center;
    }
    .mchs__title {
        font-size: 1.6rem;
    }
    .rental-experts__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .rental-experts__title {
        font-size: 1.6rem;
    }
    .card-number {
        font-size: 3rem;
        top: 12px;
        left: 16px;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .mchs-control__grid {
        flex-direction: column;
        align-items: center;
    }
    .control-card {
        max-width: 100%;
        width: 100%;
    }
    .mchs-control__banner {
        flex-direction: column;
        padding: 20px;
        font-size: 1rem;
    }
    .mchs-control {
        padding: 50px 0;
    }
    .violations__grid {
        grid-template-columns: 1fr;
    }
    .violations__title {
        font-size: 1.6rem;
    }
    .areas-cloud__title {
        font-size: 1.6rem;
    }
    .area-tag {
        padding: 6px 16px;
        font-size: .8rem;
    }
    .electro-who__grid {
        grid-template-columns: 1fr;
    }
    .electro-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .electro-steps {
        padding: 50px 0;
    }
    .electro-step {
        max-width: 100%;
        padding: 24px 16px;
    }
    .electro-step-number {
        font-size: 2rem;
    }
    .electro-step-icon {
        font-size: 2rem;
    }
    .electro-steps__banner {
        flex-direction: column;
        padding: 20px;
        font-size: 1rem;
    }
    .electro-steps__banner i {
        font-size: 1.8rem;
    }
    .electro-groups th,
    .electro-groups td {
        padding: 10px;
        font-size: .85rem;
    }
    .group-badge {
        width: 50px;
    }
    .vysota-groups__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vysota-groups {
        padding: 50px 0;
    }
    .group-number {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    .price-grid {
        grid-template-columns: 1fr;
    }
    .price-block__title {
        font-size: 1.6rem;
    }
    .region-training__title {
        font-size: 1.6rem;
    }
    .region-training__cloud span {
        padding: 6px 16px;
        font-size: .8rem;
    }
    .protect-fines__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .worker-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .messengers-grid {
        grid-template-columns: repeat(3, 2fr);
    }

    /* SEO blocks */
    .seo-center-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
    .seo-center-card__icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    .seo-center-card__content p {
        font-size: 0.9rem;
    }
    .seo-center-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .seo-center-features__item {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .seo-center-features__item span {
        font-size: 0.8rem;
    }
    .seo-price-table th,
    .seo-price-table td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    .seo-table-note {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    .seo-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* --- 640px and less --- */
@media (max-width: 640px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .fis-card {
        padding: 24px 20px;
        gap: 16px;
    }
    .fis-icon {
        font-size: 2.2rem;
    }
    .fis-text {
        font-size: 1rem;
    }
    .letters-grid {
        grid-template-columns: 1fr;
    }
    .messengers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews__subtitle--secondary {
        font-size: 1.2rem;
    }
    .reviews {
        padding: 50px 0;
    }
    .questions__card {
        padding: 30px 20px;
    }
    .questions__messengers {
        gap: 12px;
    }
    .q-messenger {
        padding: 10px 16px;
        font-size: .85rem;
    }
    .questions__contacts {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    .sout-docs__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sout-docs__title {
        font-size: 1.6rem;
    }
    .sout-doc-card {
        padding: 28px 16px;
    }
    .sout-doc-icon {
        font-size: 2.5rem;
    }
    .sout-doc-text {
        font-size: 1rem;
    }
    .sout-who__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sout-who {
        padding: 50px 0;
    }
    .sout-who-card {
        padding: 24px 16px;
    }
    .sout-who-card__title {
        font-size: 1.1rem;
    }
    .sout-who-note {
        padding: 12px 16px;
        font-size: .85rem;
    }
    .upk-duration__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .upk-duration__title {
        font-size: 1.6rem;
    }
    .duration-card {
        padding: 28px 16px;
    }
    .duration-icon {
        font-size: 2.5rem;
    }
    .duration-text {
        font-size: 1rem;
    }
    .error-content {
        padding: 40px 24px 32px;
    }
    .error-title {
        font-size: 2.2rem;
    }
    .error-subtitle {
        font-size: 1.2rem;
    }
    .error-icon {
        font-size: 3.5rem;
    }
    .error-popular-grid {
        grid-template-columns: 1fr 1fr;
    }
    .btn-error {
        width: 100%;
        justify-content: center;
    }
    .thankyou-content {
        padding: 40px 24px 32px;
    }
    .thankyou-title {
        font-size: 2.2rem;
    }
    .thankyou-subtitle {
        font-size: 1.2rem;
    }
    .thankyou-icon {
        font-size: 3.5rem;
    }
    .btn-thankyou {
        width: 100%;
        justify-content: center;
    }

    /* SEO blocks */
    .services__direction-text-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }
    .services__direction-text-item div {
        flex-direction: column;
        align-items: center;
    }
    .services__direction-text-item i {
        margin-top: 0;
        font-size: 1.6rem;
    }
    .seo-steps-container--vysota .seo-steps-grid--vysota {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 320px;
    }
    .seo-steps-container--vysota .seo-step-item {
        padding: 18px 14px;
    }
    .seo-steps-container--vysota .seo-step-number {
        font-size: 1.6rem;
    }
    .seo-steps-container--vysota .seo-step-icon {
        font-size: 1.4rem;
    }
    .seo-steps-container--vysota .seo-step-content strong {
        font-size: 0.85rem;
    }
    .seo-steps-container--vysota .seo-step-content span {
        font-size: 0.8rem;
    }
    .seo-price-breakdown__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .seo-price-breakdown {
        padding: 20px 16px;
    }
    .seo-price-breakdown__item {
        padding: 16px 12px;
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }
    .seo-price-breakdown__icon {
        font-size: 1.6rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .seo-price-breakdown__title {
        font-size: 1.1rem;
    }
    .seo-price-breakdown__footer {
        flex-direction: column;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    .seo-price-breakdown__footer i {
        font-size: 1.2rem;
    }
    .seo-full-width__item {
        padding: 20px 16px;
    }
    .seo-full-width__icon {
        font-size: 2rem;
    }
    .seo-full-width__item h3 {
        font-size: 1rem;
    }
    .seo-full-width__item p {
        font-size: 0.9rem;
    }
}

/* --- 600px and less --- */
@media (max-width: 600px) {
    .header__right {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .badge {
        padding: 12px 16px;
    }
    .badge i {
        font-size: 1.2rem;
    }
    .badge span {
        font-size: .85rem;
    }
    .hero-price {
        padding: 8px 16px;
    }
    .price-value {
        font-size: 1.4rem;
    }
    .hero__title {
        font-size: 1.7rem;
    }
    .hero__subtitle {
        font-size: 1rem;
    }
    .hero__right {
        padding: 24px 16px;
    }
    .tasks__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tasks {
        padding: 50px 0;
    }
    .task-card {
        padding: 24px 20px;
    }
    .task-icon {
        font-size: 2.2rem;
    }
    .task-title {
        font-size: 1rem;
    }
    .audience__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .audience {
        padding: 50px 0;
    }
    .audience-card {
        padding: 24px 20px;
    }
    .audience-icon {
        font-size: 2.2rem;
    }
    .audience-title {
        font-size: 1rem;
    }
    .common-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .common-steps {
        padding: 50px 0;
    }
    .step-card {
        padding: 24px 16px;
    }
    .step-icon {
        font-size: 2.2rem;
    }
    .step-text {
        font-size: 1rem;
    }
    .step-number-big {
        font-size: 2.5rem;
        opacity: .2;
    }
    .steps-banner {
        flex-direction: column;
        padding: 24px 20px;
        font-size: 1rem;
    }
    .steps-banner i {
        font-size: 2rem;
    }
    .services__grid--main,
    .services__grid--popular {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .services {
        padding: 50px 0;
    }
    .service-card--main {
        padding: 28px 20px;
    }
    .service-card--main .service-icon {
        font-size: 2.5rem;
    }
    .service-card--main .service-name {
        font-size: 1rem;
    }
    .service-card--popular {
        padding: 18px 16px;
    }
    .service-card--popular .service-icon {
        font-size: 1.8rem;
    }
    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .advantages {
        padding: 50px 0;
    }
    .advantage-card {
        padding: 24px 20px;
    }
    .advantage-icon {
        font-size: 2.2rem;
    }
    .advantage-title {
        font-size: 1rem;
    }
    .docs-row__buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .licenses__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .licenses {
        padding: 50px 0;
    }
    .faq {
        padding: 50px 0;
    }
    .faq__title {
        font-size: 1.6rem;
    }
    .accordion-header {
        padding: 16px 18px;
        font-size: .95rem;
    }
    .accordion-content p {
        font-size: .85rem;
    }
    .subscribe-consult {
        padding: 50px 0;
    }
    .subscribe-consult__col {
        padding: 24px 16px;
    }
    .subscribe-consult__title {
        font-size: 1.2rem;
    }
    .subscribe-consult__subtitle {
        font-size: .9rem;
    }
    .subscribe-consult__btn {
        padding: 12px 16px;
        font-size: .9rem;
    }
    .subscribe-consult__confirm {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px;
    }
    .subscribe-consult__confirm i {
        margin-top: 0;
    }
    .contacts__title {
        font-size: 1.6rem;
    }
    .contacts__info {
        padding: 24px 20px;
    }
    .contact-item {
        font-size: .9rem;
        gap: 12px;
    }
    .messenger-btn {
        padding: 12px 16px;
        font-size: .9rem;
    }
    .ohrana-warning__card {
        padding: 24px 20px;
        gap: 16px;
    }
    .ohrana-warning__icon {
        font-size: 2.2rem;
    }
    .ohrana-warning__text {
        font-size: .95rem;
    }
    .ohrana-advantages__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ohrana-advantages {
        padding: 50px 0;
    }
    .ohrana-card {
        padding: 24px 16px;
    }
    .ohrana-icon {
        font-size: 2.2rem;
    }
    .ohrana-banner {
        flex-direction: column;
        padding: 24px 20px;
        font-size: 1rem;
    }
    .ohrana-banner i {
        font-size: 2rem;
    }
    .sout-advantages__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sout-advantages {
        padding: 50px 0;
    }
    .sout-card {
        padding: 24px 16px;
    }
    .sout-icon {
        font-size: 2.2rem;
    }
    .sout-text {
        font-size: 1rem;
    }
    .sout-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sout-steps {
        padding: 50px 0;
    }
    .step-item {
        padding: 24px 16px;
    }
    .sout-steps__banner {
        flex-direction: column;
        padding: 24px 20px;
        font-size: 1rem;
    }
    .sout-steps__banner i {
        font-size: 2rem;
    }
    .mchs-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mchs-steps {
        padding: 50px 0;
    }
    .mchs-step {
        padding: 20px 16px;
    }
    .mchs-step-icon {
        font-size: 2rem;
    }
    .step-number-big {
        font-size: 2.5rem;
        opacity: .2;
    }
    .check-list__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .check-list {
        padding: 50px 0;
    }
    .check-card {
        padding: 24px 16px;
    }
    .check-icon {
        font-size: 2.2rem;
    }
    .control-frequency__grid {
        flex-direction: column;
        align-items: center;
    }
    .freq-card {
        max-width: 100%;
        width: 100%;
    }
    .control-frequency {
        padding: 50px 0;
    }
    .mchs-diff__grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .diff-card {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px;
    }
    .mchs-diff__title {
        font-size: 1.8rem;
    }
    .mchs-diff {
        padding: 50px 0;
    }
    .practical-advice__grid {
        flex-direction: column;
        align-items: center;
    }
    .advice-card {
        max-width: 100%;
        width: 100%;
    }
    .practical-advice {
        padding: 50px 0;
    }
    .upk-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .upk-steps {
        padding: 50px 0;
    }
    .upk-step {
        padding: 24px 16px;
    }
    .upk-step-icon {
        font-size: 2rem;
    }
    .rental-list li {
        font-size: .85rem;
        padding-left: 22px;
        margin-bottom: 10px;
    }
    .mch-regions__title {
        font-size: 1.6rem;
    }
    .mch-benefits {
        padding: 20px;
    }
    .benefit-item {
        font-size: .9rem;
    }
    .company-details {
        padding: 50px 0;
    }
    .company-details__grid {
        padding: 24px 20px;
    }
    .detail-item {
        gap: 12px;
    }
    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .detail-value {
        font-size: .9rem;
    }
    .detail-label {
        font-size: .75rem;
    }
    .route-map {
        padding: 50px 0;
    }
    .route-station {
        gap: 24px;
        margin-bottom: 40px;
    }
    .station-card {
        padding: 20px;
    }
    .station-title {
        font-size: 1.1rem;
    }
    .detail-row {
        font-size: .9rem;
        gap: 10px;
    }
    .detail-row i {
        width: 20px;
        font-size: .9rem;
    }
    .route-station__image .image-placeholder {
        min-height: 180px;
    }
    .route-station__image .image-placeholder img {
        min-height: 180px;
    }
    .route-map__coords {
        padding: 16px 24px;
        font-size: .9rem;
        gap: 12px;
    }
    .electro-doc-info {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .electro-table-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    .electro-table-note__line {
        font-size: 1rem;
    }
    .electro-fines__grid {
        grid-template-columns: 1fr;
    }
    .services__grid--eb,
    .services__grid--pk,
    .services__grid--nk,
    .services__grid--vysota {
        grid-template-columns: 1fr;
    }
    .services-page__title {
        font-size: 1.7rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-grid-rabochie {
        grid-template-columns: 1fr;
    }
    .services-grid .temp-global-dropdown ul,
    .services-grid-rabochie .temp-global-dropdown ul {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-filter {
        gap: 8px;
    }
    .blog-filter__btn {
        padding: 6px 16px;
        font-size: .85rem;
    }
    .blog-pagination a,
    .blog-pagination span {
        width: 38px;
        height: 38px;
        font-size: .9rem;
    }

    /* SEO blocks */
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .seo-grid--three {
        grid-template-columns: 1fr;
    }
    .seo-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 20px;
    }
    .seo-intro__text {
        font-size: 0.95rem;
    }
    .seo-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 20px;
    }
    .seo-info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 20px;
    }
    .seo-text__content h2 {
        font-size: 1.2rem;
        display: block;
        text-align: center;
    }
    .seo-grid__item {
        padding: 18px 16px;
    }
    .seo-two-col__item {
        padding: 18px 16px;
    }
    .seo-step-item {
        padding: 16px 12px;
    }
    .seo-step-number {
        font-size: 1.6rem;
    }
    .seo-step-icon {
        font-size: 1.4rem;
    }
    .seo-step-content strong {
        font-size: 0.8rem;
    }
    .seo-step-content span {
        font-size: 0.75rem;
    }
    .seo-steps-grid--three {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .new-gallery-row {
        gap: 24px;
        margin-bottom: 24px;
    }
    .new-gallery-main {
        margin-bottom: 14px;
    }
    .new-thumb {
        width: 55px;
        height: 55px;
    }
    .new-thumb-list {
        gap: 8px;
        justify-content: center;
    }
    .new-zoom-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .docs-row__title {
        font-size: 1.1rem;
    }
    .docs-row__list li {
        font-size: 0.9rem;
        padding: 4px 0 4px 20px;
    }
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .req-item {
        font-size: 0.85rem;
        padding-left: 8px;
    }
    .docs-row__price {
        font-size: 1.1rem;
        padding: 6px 16px;
    }
    .docs-price-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .docs-price-row .download-link {
        padding: 6px 20px;
        font-size: 0.9rem;
    }
    .docs-row__subtitle {
        font-size: 1rem;
    }
    .docs-row__text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .reviews__media {
        gap: 24px;
        margin-top: 40px;
    }
    .media-video,
    .media-audio {
        padding: 14px;
        border-radius: 8px;
    }
    .media-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .audio-grid {
        gap: 10px;
    }
    .audio-grid audio {
        border-radius: 6px;
        height: 40px;
    }
    .video-placeholder {
        border-radius: 8px;
    }
}

/* --- 550px and less --- */
@media (max-width: 550px) {
    .electro-groups-eva__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .electro-groups-eva {
        padding: 50px 0;
    }
    .group-card {
        padding: 24px 16px;
    }
    .group-icon {
        font-size: 2.2rem;
    }
    .electro-info__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .electro-info {
        padding: 50px 0;
    }
    .electro-info-card {
        padding: 24px 16px;
    }
    .electro-info-card .card-icon {
        font-size: 2.2rem;
    }
    .electro-info__banner {
        flex-direction: column;
        padding: 20px;
        font-size: 1rem;
    }
    .electro-info__banner i {
        font-size: 1.8rem;
    }
    .nok-why__grid {
        grid-template-columns: 1fr;
    }
    .protect-fines__grid {
        grid-template-columns: 1fr;
    }
}

/* --- 480px and less --- */
@media (max-width: 480px) {
    .search-button span {
        display: none;
    }
    .search-button {
        padding: 0 16px;
    }
    .hero__title {
        font-size: 1.7rem;
    }
    .hero__subtitle {
        font-size: 1rem;
    }
    .hero__right {
        padding: 24px 16px;
    }
    .logo img {
        width: 100%;
    }
    .carousel-track {
        gap: 15px;
        animation-duration: 12s;
    }
    .logo-item {
        width: 100px;
        height: 70px;
    }
    .delivery {
        padding: 50px 0;
    }
    .delivery-col {
        padding: 24px 16px;
    }
    .delivery-item {
        padding: 20px 12px;
    }
    .delivery-item i {
        font-size: 1.8rem;
    }
    .price-table th,
    .price-table td {
        padding: 10px 12px;
        font-size: .85rem;
    }
    .price-table__title {
        font-size: 1.4rem;
    }
    .footer__info {
        gap: 30px 50px;
    }
    .team__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .team {
        padding: 50px 0;
    }
    .team-photo {
        width: 100px;
        height: 100px;
    }
    .electro-who__grid {
        grid-template-columns: 1fr;
    }
    .electro-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    .electro-note__line {
        font-size: 1rem;
    }
    .electro-who__title {
        font-size: 1.6rem;
    }
    .policy-content {
        padding: 24px 16px;
    }
    .policy-content h1 {
        font-size: 1.6rem;
    }
    .policy-content h2 {
        font-size: 1.1rem;
    }
    .fis-left {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .fis-frdo--with-right .fis-right {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .nok-steps__grid {
        grid-template-columns: 1fr;
    }
    .worker-steps__grid {
        grid-template-columns: 1fr;
    }
    .legal-docs__item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .legal-docs__icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .legal-docs__content {
        width: 100%;
        text-align: center;
    }

    .legal-docs__arrow {
        display: none;
    }

    /* SEO blocks */
    .seo-center-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .seo-center-features__item {
        justify-content: center;
    }
    .seo-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .cookie-banner__buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner__btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__text {
        font-size: 0.8rem;
    }
}

/* Для очень маленьких телефонов */
@media (max-width: 400px) {
    .electro-table__title {
        font-size: 1.6rem;
    }
    .electro-card {
        padding: 5px;
    }
    .new-thumb {
        width: 45px;
        height: 45px;
    }
    .new-thumb-list {
        gap: 6px;
    }
    .docs-row__list li {
        font-size: 0.85rem;
        padding: 3px 0 3px 16px;
    }
    .docs-row__list li::before {
        font-size: 1rem;
        left: 2px;
    }
    .requirements-title {
        font-size: 0.9rem;
    }
    .req-item {
        font-size: 0.8rem;
    }
    .reviews__media {
        gap: 20px;
        margin-top: 32px;
    }
    .media-video,
    .media-audio {
        padding: 10px;
    }
    .media-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .audio-grid {
        gap: 8px;
    }
    .audio-grid audio {
        height: 36px;
    }
}