/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
}

/* Header */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
}

/* Логотип */
.header__logo {
    flex-shrink: 0;
}

.header__logo-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    outline: none;
}

.header__logo-link:hover {
    color: #000;
}

.header__logo-link:focus {
    outline: none;
}

.header__logo-text {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Навигация */
.header__nav {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.header__nav-link:hover {
    color: #ff6b35;
    background: transparent;
}

.header__nav-link:focus {
    outline: none;
}

.header__nav-link.active {
    color: #ff6b35;
}

.header__nav-link::after {
    display: none;
}

/* Кнопка связаться */
.header__contact-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
    outline: none;
}

.header__contact-btn:hover {
    background: #000;
}

.header__contact-btn:active {
    background: #000;
    border-radius: 10px;
}

.header__contact-btn:focus {
    outline: none;
}

/* Мобильное меню (бургер) */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.header__burger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.header__burger-line {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Эффект прокрутки для шапки */
.header.scrolled {
    background: rgba(255, 255, 255, 0.7);
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    padding-top: 12vh;
    padding-bottom: 12vh;
    /* Убираем фиксированные min-height/max-height, чтобы секция была пропорциональной */
    min-height: unset;
    max-height: unset;
    text-align: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background-color: #F3F3F5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; /* Добавляем z-index чтобы solution мог накладываться */
}

.hero::before {
    display: none;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: 50px center;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    /* Улучшения для iOS */
    -webkit-transform: translateY(-50%);
    -webkit-object-fit: cover;
    -webkit-object-position: 50px center;
    /* Принудительное аппаратное ускорение */
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Оптимизация для мобильных */
    pointer-events: none;
}

/* Fallback стили для случаев ошибки видео */
.hero.video-error {
    background-image: url("images/hero-fallback.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.video-error .hero__video {
    display: none;
}

/* Дополнительные стили для iOS Safari */
@supports (-webkit-appearance: none) {
    .hero__video {
        /* Специфичные стили для WebKit браузеров */
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }
}

/* Стили для мобильных устройств */
@media (max-width: 767px) {
    .hero__video {
        /* Оптимизация позиционирования для мобильных */
        object-position: center center;
        /* Улучшенная производительность на мобильных */
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
        /* Принудительное включение аппаратного ускорения */
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    
    /* Дополнительная оптимизация для iOS */
    .hero__video::-webkit-media-controls {
        display: none !important;
    }
    
    .hero__video::-webkit-media-controls-panel {
        display: none !important;
    }
    
    .hero__video::-webkit-media-controls-play-button {
        display: none !important;
    }
    
    .hero__video::-webkit-media-controls-start-playback-button {
        display: none !important;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 60px; /* Минимальный отступ сверху */
    margin-top: 5vh;
}

.hero__title {
    font-size: 56px !important;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
    letter-spacing: -0.02em;
    color: #000;
    text-align: left;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    
    /* Убираем анимацию появления */
}

.hero__subtitle {
    font-size: 20px !important;
    max-width: 90%;
    margin-left: 0;
    margin-right: 0;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    position: relative;
    font-family: 'Inter', sans-serif;
    text-align: left;
    line-height: 1.2;
    
    /* Убираем анимацию появления */
}

/* Убираем эффект при наведении */
.hero__subtitle:hover {
    /* Никаких эффектов при наведении */
}

.hero__subtitle::before {
    /* Убираем псевдоэлемент */
    display: none;
}

.hero__subtitle::after {
    /* Убираем псевдоэлемент */
    display: none;
}

/* Текст должен быть поверх всех эффектов */
.hero__subtitle * {
    position: relative;
    z-index: 10;
}

/* Кнопка CTA в херо блоке */
.hero__cta-button {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 64px;
    min-width: 320px;
    margin-top: 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease;
    outline: none;
    
    /* Убираем центрирование, кнопка выравнивается по левому краю */
    align-self: flex-start;
}

/* Эффект при наведении */
.hero__cta-button:hover {
    background: #000;
}

/* Эффект при нажатии */
.hero__cta-button:active {
    background: #000;
}

.hero__cta-button:focus {
    outline: none;
}

/* Блик на кнопке */
.hero__cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.hero__cta-button:hover::before {
    left: 100%;
}

/* Пометка FITTIN в hero блоке */
.hero__fittin-label {
    margin-top: 40px;
    align-self: flex-start;
}

.hero__fittin-link {
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.hero__fittin-link:hover {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}

.hero__fittin-link:focus {
    outline: none;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}

.hero__fittin-icon {
    margin-left: 4px;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    vertical-align: middle;
}

.hero__fittin-link:hover .hero__fittin-icon {
    opacity: 0.8;
    transform: translateX(1px) translateY(-1px);
}

.hero__slogan {
    font-size: 1.125rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    color: #000;
}

/* Section styles */
section {
    padding: 60px 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #333;
    max-width: 800px;
}

.section__subtitle-secondary {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #000;
}

/* SEO Intro Section - блок с заголовком, подзаголовком и картинкой */
.seo-intro {
    background-color: #fff;
    padding: 80px 0 40px 0; /* Уменьшаем нижний отступ, так как карточки теперь в отдельном блоке */
    margin-top: -50px;
}

.seo-intro .container {
    max-width: 1240px; /* Стандартный контейнер */
    margin: 0 auto;
    padding: 0 20px; /* Стандартные боковые отступы контейнера */
    display: flex;
    align-items: center;
    gap: 60px; /* Расстояние между текстом и картинкой */
}

.seo-intro__content {
    flex: 1; /* Занимает оставшееся место */
    max-width: 600px; /* Ограничиваем ширину текста для лучшей читаемости */
    margin-top: -200px;
}

.seo-intro .section__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.13;
    margin-bottom: 32px;
    color: #181818;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.seo-intro .section__title-accent {
    font-weight: 700;
    font-size: inherit;
    color: #181818;
}

.seo-intro .section__subtitle {
    margin-bottom: 0; /* Убираем нижний отступ, так как картинка теперь справа */
}

.seo-visual {
    flex-shrink: 0; /* Картинка не сжимается */
    display: flex;
    justify-content: flex-end; /* Выравниваем картинку по правому краю */
    align-items: center;
    margin: 0; /* Убираем отступы, так как теперь используем gap в контейнере */
}

.seo-icecube {
    width: 640px;
    height: 640px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2);
    opacity: 1;
}

.seo-cards {
    display: grid;
    grid-template-columns: 1fr 1fr; /* ДВЕ КОЛОНКИ НА ДЕСКТОПЕ */
    gap: 16px; /* Расстояние между карточками для десктопа: 16px (как у seo-cards) */
    width: calc(100% - 32px); /* Точно как у шапки и seo-cards */
    max-width: 1280px; /* Точно как у шапки и seo-cards */
    margin: 0 auto; /* Центрируем сетку карточек */
}

.seo-card {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 60px;
    position: relative;
}

.seo-card__number {
    position: static;
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}

.seo-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    padding-top: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.seo-card__content {
    margin-bottom: 0;
}

.seo-card__content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 16px 0;
}

.seo-card__content p:last-child {
    margin-bottom: 0;
}

.seo-card__author {
    border-top: 1px solid #E0E0E0;
    padding-top: 24px;
}

.seo-card__author-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.seo-card__author-title {
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Адаптивность для SEO блока */
@media (max-width: 1024px) {
    .seo-intro .container {
        max-width: 1240px; /* Стандартный контейнер */
        padding: 0 20px; /* Стандартные боковые отступы контейнера */
    }
    
    .seo-cards {
        grid-template-columns: 1fr; /* ОДНА КОЛОНКА НА ПЛАНШЕТАХ */
        gap: 16px; /* РАССТОЯНИЕ НА ПЛАНШЕТАХ: 16px между карточками (как у seo-cards) */
        width: calc(100% - 32px); /* Точно как у шапки и seo-cards */
        max-width: 1280px; /* Точно как у шапки и seo-cards */
    }
    
    .seo-icecube {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .seo-intro {
        padding: 60px 0 30px 0; /* Уменьшаем отступы для мобильных */
    }
    
    .seo-intro .container {
        max-width: 1240px; /* Стандартный контейнер */
        padding: 0 20px; /* Стандартные боковые отступы контейнера */
        flex-direction: column; /* Вертикальная раскладка на мобильных */
        gap: 40px; /* Уменьшаем расстояние для мобильных */
        text-align: center; /* Центрируем текст на мобильных */
    }
    
    .seo-intro__content {
        max-width: none; /* Убираем ограничение ширины на мобильных */
    }
    
    .seo-visual {
        justify-content: center; /* Центрируем картинку на мобильных */
    }
    
    .seo-cards-section {
        padding: 0 0 30px 0; /* Уменьшаем нижний отступ с 60px до 30px для мобильных */
    }
    
    .seo-icecube {
        width: 220px;
        height: 220px;
    }
    
    .seo-cards {
        gap: 12px; /* РАССТОЯНИЕ НА МОБИЛЬНЫХ: 12px между карточками (как у seo-cards) */
        width: calc(100% - 32px); /* Точно как у шапки и seo-cards */
        max-width: 1280px; /* Точно как у шапки и seo-cards */
    }
    
    .seo-card {
        padding: 32px;
    }
    
    .seo-card__number {
        font-size: 0.875rem;
    }
    
    .seo-card__title {
        font-size: 1.25rem;
        margin-bottom: 16px;
        padding-top: 0;
    }
    
    .seo-card__content {
        margin-bottom: 0;
    }
    
    .seo-card__content p {
        font-size: 0.9rem;
        margin: 0 0 12px 0;
    }
    
    .seo-card__content p:last-child {
        margin-bottom: 0;
    }
    
    .seo-card__author {
        padding-top: 20px;
    }
}

/* Solution Section */
.solution {
    margin-top: 0 !important;
    padding: 130px 0 130px 0 !important;
    background-color: #000;
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.solution .section__title {
    color: #000;
    text-align: center;
    margin-bottom: 1rem;
}

.solution .section__subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 160px);
    gap: 16px; /* Расстояние между карточками для десктопа: 16px */
    width: calc(100% - 32px); /* Точно как у шапки */
    max-width: 1280px; /* Точно как у шапки */
    margin: 0 auto;
}

.solution__card {
    border-radius: 20px;
    padding: 24px; /* Уменьшаем внутренние отступы карточек с 32px до 24px */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.solution__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution__card--large {
    grid-column: span 6;
    grid-row: span 2;
}

.solution__card--medium {
    grid-column: span 3;
    grid-row: span 2;
}

.solution__card--tall {
    grid-column: span 6;
    grid-row: span 2;
}

.solution__card--light {
    background: #fff;
    color: #000;
}

.solution__card--gray {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
}

.solution__card--dark {
    background: linear-gradient(135deg, #2c3136 0%, #1a1d20 100%);
    color: #fff;
}

.solution__card--gray-dark {
    background: #38393B;
    color: #fff;
}

.solution__card--red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
}

.solution__card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.solution__card-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solution__card-subtitle {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.solution__card-text {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.solution__card-icon {
    position: absolute;
    bottom: 32px;
    right: 32px;
    opacity: 0.6;
}

.solution__card-arrow {
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: auto;
    align-self: flex-end;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.solution__card:hover .solution__card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.solution__card-details {
    font-size: 1rem;
    font-weight: 400;
    margin-top: auto;
    align-self: flex-start;
    color: #6B7280;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution__card-details:hover {
    color: #000000;
}

.solution__card-details:visited {
    color: #6B7280;
}

.solution__card-details:visited:hover {
    color: #000000;
}

.solution__card--gray .solution__card-details {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--gray .solution__card-details:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--gray .solution__card-details:visited {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--gray .solution__card-details:visited:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--dark .solution__card-details {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--dark .solution__card-details:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--dark .solution__card-details:visited {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--dark .solution__card-details:visited:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--red .solution__card-details {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--red .solution__card-details:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--red .solution__card-details:visited {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--red .solution__card-details:visited:hover {
    color: #FFFFFF;
    opacity: 1;
}

/* Адаптивность для карточек */
@media (max-width: 1024px) {
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 140px);
    }
    
    .solution__card--large {
        grid-column: span 6;
        grid-row: span 2;
    }
    
    .solution__card--medium {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .solution__card--tall {
        grid-column: span 6;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px; /* Расстояние между карточками для мобильных: 12px */
    }
    
    .solution__card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 120px;
        padding: 20px;
    }
    
    .solution__card-title {
        font-size: 1.25rem; /* 20px */
    }
    
    .solution__card-text {
        font-size: 1rem; /* 16px */
    }
    
    .solution__card-details {
        font-size: 0.875rem; /* 14px */
    }
    
    .solution {
        margin-top: 200px; /* Отступ сверху для мобильных */
        padding: 200px 0 60px 0; /* Увеличиваем верхний отступ */
    }
}

/* Mobile First Responsive Design */
@media (max-width: 767px) {
    /* Скрываем шапку на мобильных устройствах */
    .header {
        display: none;
    }
    
    /* Hero блок без отступа сверху, так как шапки нет */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        max-height: 700px;
        padding: 20px 0 100px 0; /* Минимальный верхний отступ */
    }
    
    /* Мобильный логотип в hero-блоке */
    .hero__mobile-logo {
        display: block !important; /* Показываем только на мобильных с приоритетом */
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 1.5rem;
        font-weight: 700;
        color: #000;
        z-index: 1000; /* Максимальный z-index для отображения поверх всего */
        font-family: 'Inter', sans-serif;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__burger {
        display: block;
    }
    
    .header__contact-btn {
        display: none;
    }
    
    .header__logo-text {
        font-size: 1.25rem;
    }
    
    /* SEO блок для мобильных */
    .seo-intro .container {
        flex-direction: column;
        gap: 30px; /* Уменьшенное расстояние для мобильных */
        padding: 0 16px; /* Боковые отступы для мобильных */
    }
    
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
    }
    
    .solution {
        margin-top: 200px; /* Отступ сверху для мобильных */
        padding: 200px 0 60px 0; /* Сохраняем верхний отступ 200px */
    }
    
    .hero__title {
        font-size: 2.5rem;
        margin-top: 30px;
        text-align: left;
    }
    
    
    .hero__subtitle {
        font-size: 1.25rem;
        padding: 0;
        border-radius: 0;
        text-align: left;
        max-width: calc(100vw - 110px) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero__cta-button {
        font-size: 1rem;
        padding: 14px 28px;
        margin-top: 30px;
        align-self: flex-start;
    }
    
    .hero__fittin-label {
        margin-top: 30px;
    }
    
    .hero__fittin-link {
        font-size: 0.8125rem;
    }
    
    .hero__fittin-icon {
        width: 10px;
        height: 10px;
        margin-left: 3px;
    }
    
    .hero__video {
        object-position: center center; /* Центрируем видео на мобильных */
    }
    
    /* Показываем мобильный навбар */
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Добавляем отступ снизу к футеру, чтобы он не перекрывался навбаром */
    .footer {
        margin-bottom: 80px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    /* Скрываем мобильный логотип на планшетах и десктопах */
    .hero__mobile-logo {
        display: none !important;
    }
    
    /* Показываем полную навигацию на планшетах и десктопах */
    .header__burger {
        display: none;
    }
    
    .header__nav {
        display: flex;
        position: static;
        width: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        gap: 2rem;
        padding: 0;
        border-top: none;
        box-shadow: none;
    }
    
    .header__nav-item {
        width: auto;
        text-align: left;
    }
    
    .header__nav-link {
        display: inline-block;
        padding: 0.5rem 0;
        border-radius: 0;
        width: auto;
    }
    
    .header__contact-btn {
        display: block;
    }
    
    /* SEO блок для планшетов */
    .seo-intro .container {
        max-width: 1240px; /* Стандартный контейнер */
        padding: 0 40px; /* Увеличенные боковые отступы для планшетов */
        gap: 50px; /* Среднее расстояние для планшетов */
    }
    
    .seo-intro__content {
        max-width: 500px; /* Немного уменьшаем для планшетов */
    }
    
    /* Solution блок для планшетов */
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
    }
    
    .solution {
        margin-top: 0; /* Убираем отступ для планшетов, карточки вплотную к hero */
        padding: 0 0 80px 0; /* Убираем боковые отступы */
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
        max-height: 800px;
        padding: 60px 0 120px 0; /* Минимальный отступ для планшетов */
    }
    
    .hero__title {
        font-size: 3rem;
        margin-top: 35px;
        text-align: left;
    }
    
    .hero__subtitle {
        font-size: 1.75rem;
        padding: 0;
        border-radius: 0;
        text-align: left;
        max-width: none;
    }
    
    .hero__cta-button {
        font-size: 1.0625rem;
        padding: 15px 30px;
        margin-top: 35px;
        align-self: flex-start;
    }
    
    .hero__fittin-label {
        margin-top: 35px;
    }
    
    .hero__fittin-link {
        font-size: 0.875rem;
    }
    
    section {
        padding: 80px 0; /* Уменьшаем с 120px до 80px для планшетов */
    }
    
    .section__title {
        font-size: 3rem;
    }
    
    .how-it-works__title {
        font-size: 3rem;
    }
    
    .seo-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem; /* Расстояние между карточками для планшетов: 16px (как во втором блоке) */
    }
    
    .image-block__content {
        padding: 3rem;
    }
    
    .image-block__text {
        font-size: 1rem;
        max-width: 250px;
    }
    
    /* Адаптивный размер для большой карточки на планшетах */
    .solution__card--large .solution__card-title {
        font-size: 2.25rem;
    }
    
    /* Адаптивный размер для карточки Mobile First на планшетах */
    .solution__card--gray-dark .solution__card-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    /* SEO блок для больших экранов */
    .seo-intro .container {
        max-width: 1240px; /* Стандартный контейнер */
        padding: 0 20px; /* Стандартные боковые отступы контейнера */
    }
    
    /* Solution блок для больших экранов */
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
    }
    
    .hero__title {
        font-size: 3.5rem;
        margin-top: 40px;
        text-align: left;
    }
    
    .hero__subtitle {
        font-size: 1.625rem;
        padding: 0;
        border-radius: 0;
        text-align: left;
        max-width: none;
    }
    
    .hero__cta-button {
        font-size: 1.125rem;
        padding: 16px 32px;
        margin-top: 40px;
        align-self: flex-start;
    }
    
    .hero__fittin-label {
        margin-top: 40px;
    }
    
    .section__title {
        font-size: 3.5rem;
    }
    
    .how-it-works__title {
        font-size: 3.5rem;
    }
    
    .image-block__content {
        padding: 4rem;
    }
    
    /* Адаптивный размер для большой карточки на больших экранах */
    .solution__card--large .solution__card-title {
        font-size: 2.75rem;
    }
    
    /* Адаптивный размер для карточки Mobile First на больших экранах */
    .solution__card--gray-dark .solution__card-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1440px) {
    /* SEO блок для очень больших экранов */
    .seo-intro .container {
        max-width: 1240px; /* Стандартный контейнер */
        padding: 0 20px; /* Стандартные боковые отступы контейнера */
    }
    
    /* Solution блок для очень больших экранов */
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
    }
    
    .hero {
        height: 90vh; /* Уменьшаем высоту с 120vh до 90vh */
        min-height: 700px; /* Уменьшаем с 800px до 700px */
        max-height: 850px; /* Уменьшаем с 1000px до 850px */
    }
    
    .hero__video {
        object-position: center center; /* Центрируем видео */
        transform: translateY(-50%); /* Убираем горизонтальное смещение */
    }
    
    .hero__title {
        font-size: 4rem;
        margin-top: 45px;
        text-align: left;
    }
    
    .hero__subtitle {
        font-size: 1.75rem;
        padding: 0;
        border-radius: 0;
        text-align: left;
        max-width: none;
    }
    
    .hero__cta-button {
        font-size: 1.25rem;
        padding: 18px 36px;
        margin-top: 45px;
        align-self: flex-start;
    }
    
    /* Убираем переопределение ширины сетки */
}

@media (min-width: 1920px) {
    /* SEO блок для сверхбольших экранов */
    .seo-intro .container {
        max-width: 1240px; /* Стандартный контейнер */
        padding: 0 20px; /* Стандартные боковые отступы контейнера */
    }
    
    /* Solution блок для сверхбольших экранов */
    .solution__grid {
        width: calc(100% - 32px); /* Точно как у шапки */
        max-width: 1280px; /* Точно как у шапки */
    }
    
    .hero {
        height: 95vh; /* Уменьшаем высоту с 130vh до 95vh */
        min-height: 750px; /* Уменьшаем с 900px до 750px */
        max-height: 950px; /* Уменьшаем с 1200px до 950px */
    }
    
    .hero__video {
        object-position: center center; /* Центрируем видео */
        transform: translateY(-50%); /* Убираем горизонтальное смещение */
    }
    
    .hero__title {
        font-size: 4.5rem;
    }
    
    .hero__subtitle {
        font-size: 2rem;
    }
    
    /* Убираем переопределение ширины сетки */
}

/* Focus and accessibility */
a:focus,
button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Исключения для навигации */
.header__logo-link:focus,
.header__nav-link:focus {
    outline: none;
}

/* Print styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    section {
        padding: 20px 0;
    }
    
    .container {
        padding: 0;
    }
}

/* Image Block */
.image-block {
    height: 120vh;
    min-height: 800px;
    background-image: url('images/verticalbackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.image-block__content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.image-block__text {
    font-size: 1.375rem;
    color: #fff;
    max-width: 250px;
    text-align: right;
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Специальный стиль для заголовка в большой карточке */
.solution__card--large .solution__card-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Специальный стиль для заголовка в карточке Mobile First */
.solution__card--gray-dark .solution__card-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* SEO Cards Section - блок с карточками */
.seo-cards-section {
    background-color: #fff;
    padding: 0 0 40px 0; /* Уменьшаем нижний отступ с 80px до 40px */
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
    padding: 80px 0;
}

.how-it-works__content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.how-it-works__header {
    flex: 0 0 auto;
    width: 400px;
    margin-bottom: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.how-it-works__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Схема процесса - только для десктопа */
.how-it-works__schema {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.schema-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.schema-step__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Активное состояние пункта схемы */
.schema-step.active .schema-step__circle {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.schema-step__number {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

/* Активное состояние подписи */
.schema-step.active .schema-step__label {
    color: #ff6b6b;
    font-weight: 600;
}

.schema-step__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    text-align: left;
    transition: all 0.3s ease;
}

.schema-arrow {
    margin-left: 24px;
    color: #666;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

/* Активное состояние стрелки */
.schema-step.active + .schema-arrow {
    color: #ff6b6b;
}

.schema-arrow svg {
    width: 20px;
    height: 20px;
}

.how-it-works__panel {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 60px;
    color: #fff;
}

.how-it-works__step {
    margin-bottom: 50px;
}

.how-it-works__step:last-child {
    margin-bottom: 0;
}

.how-it-works__step-number {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.how-it-works__step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.how-it-works__step-subtitle {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

.how-it-works__step-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.how-it-works__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-it-works__step-list li {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.how-it-works__step-list li:before {
    content: '•';
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.how-it-works__step-list li:last-child {
    margin-bottom: 0;
}

/* Responsive для How It Works */
@media (max-width: 1024px) {
    .how-it-works__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .how-it-works__header {
        width: 100%;
    }
    
    .how-it-works__title {
        text-align: center;
    }
    
    .how-it-works__panel {
        padding: 50px;
    }
    
    /* Скрываем схему на планшетах и мобильных */
    .how-it-works__schema {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works__header {
        position: static;
    }
    
    .how-it-works__title {
        font-size: 2.5rem;
    }
    
    .how-it-works__content {
        gap: 30px;
    }
    
    .how-it-works__panel {
        padding: 40px 30px;
    }
    
    .how-it-works__step {
        margin-bottom: 40px;
    }
    
    .how-it-works__step-title {
        font-size: 1.125rem;
    }
    
    /* Схема скрыта */
    .how-it-works__schema {
        display: none;
    }
}

@media (max-width: 480px) {
    .how-it-works__header {
        position: static;
    }
    
    .how-it-works__title {
        font-size: 2rem;
    }
    
    .how-it-works__panel {
        padding: 30px 20px;
    }
    
    .how-it-works__step {
        margin-bottom: 30px;
    }
    
    .how-it-works__step-title {
        font-size: 1.125rem;
    }
    
    /* Схема скрыта */
    .how-it-works__schema {
        display: none;
    }
}

/* Pricing Section */
.pricing {
    background-color: #ffffff;
    padding: 100px 0;
    color: #000;
}

.pricing__header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Группировка тарифов */
.pricing__group {
    margin-bottom: 60px;
}

.pricing__group:last-child {
    margin-bottom: 0;
}

.pricing__group-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: -0.01em;
}

.pricing__group--subscription {
    margin-top: 0;
    padding-top: 0;
}

.pricing__grid {
    display: grid;
    gap: 16px;
    width: calc(100% - 32px);
    max-width: 1280px;
    margin: 0 auto;
}

/* Сетка для разовых платежей */
.pricing__grid--one-time {
    grid-template-columns: 1fr; /* ОДНА КОЛОНКА НА ПЛАНШЕТАХ для разовых платежей */
    gap: 16px;
}

/* Сетка для абонентской платы */
.pricing__grid--subscription {
    grid-template-columns: 1fr; /* ОДНА КОЛОНКА для абонентской платы, но центрированная */
    max-width: 640px; /* Ограничиваем ширину для лучшего вида */
}

.pricing__card {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 60px;
    position: relative;
}

/* Особые стили для карточки абонентской платы */
.pricing__card--subscription {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.pricing__card--subscription .pricing__card-title {
    color: #fff;
}

.pricing__card--subscription .pricing__card-subtitle {
    color: #fff;
}

.pricing__card--subscription .pricing__card-list li {
    color: #e0e0e0;
}

.pricing__card--subscription .pricing__card-list li:before {
    color: #fff;
}

.pricing__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.pricing__card-subtitle {
    font-size: 1rem;
    color: #000;
    margin-bottom: 16px;
    font-weight: 600;
}

.pricing__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing__card-list li {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
    position: relative;
    padding-left: 20px;
}

.pricing__card-list li:before {
    content: '•';
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.pricing__card-list li:last-child {
    margin-bottom: 0;
}

/* Responsive для Pricing */
@media (max-width: 1200px) {
    .pricing__grid--one-time {
        grid-template-columns: 1fr; /* Остается две колонки на средних экранах */
        gap: 16px;
    }
    
    .pricing__grid--subscription {
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .pricing {
        padding: 80px 0;
    }
    
    .pricing__title {
        font-size: 3.5rem;
    }
    
    .pricing__group-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .pricing__group--subscription {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .pricing__grid--one-time {
        grid-template-columns: 1fr; /* ОДНА КОЛОНКА НА ПЛАНШЕТАХ для разовых платежей */
        gap: 16px;
    }
    
    .pricing__grid--subscription {
        max-width: 100%;
    }
    
    .pricing__card {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing__header {
        margin-bottom: 60px;
    }
    
    .pricing__title {
        font-size: 2.5rem;
    }
    
    .pricing__group {
        margin-bottom: 50px;
    }
    
    .pricing__group-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .pricing__group--subscription {
        margin-top: 0;
        padding-top: 0;
    }
    
    .pricing__grid--one-time,
    .pricing__grid--subscription {
        gap: 12px;
    }
    
    .pricing__card {
        padding: 32px;
    }
    
    .pricing__card-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .pricing__card-list li {
        font-size: 0.9rem;
        margin: 0 0 12px 0;
    }
    
    .pricing__card-list li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 50px 0;
    }
    
    .pricing__title {
        font-size: 2rem;
    }
    
    .pricing__header {
        margin-bottom: 50px;
    }
    
    .pricing__group {
        margin-bottom: 40px;
    }
    
    .pricing__group-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .pricing__group--subscription {
        margin-top: 0;
        padding-top: 0;
    }
    
    .pricing__grid--one-time,
    .pricing__grid--subscription {
        gap: 12px;
    }
    
    .pricing__card {
        padding: 32px;
    }
    
    .pricing__card-title {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }
    
    .pricing__card-list li {
        font-size: 0.9rem;
        margin: 0 0 12px 0;
    }
}

/* Why Profitable Section */
.why-profitable {
    background-color: #1a1a1a;
    padding: 100px 0;
    color: #fff;
}

.why-profitable__header {
    margin-bottom: 60px;
    text-align: center;
}

.why-profitable__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.why-profitable__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-profitable__card {
    padding: 40px;
}

.why-profitable__card-number {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.why-profitable__card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 16px;
}

.why-profitable__card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-profitable {
        padding: 80px 0;
    }
    
    .why-profitable__title {
        font-size: 3.5rem;
    }
    
    .why-profitable__grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .why-profitable {
        padding: 60px 0;
    }
    
    .why-profitable__header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .why-profitable__footer {
        margin-top: 40px;
    }
    
    .why-profitable__title {
        font-size: 2.5rem;
    }
    
    .why-profitable__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .why-profitable__card {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .why-profitable {
        padding: 50px 0;
    }
    
    .why-profitable__title {
        font-size: 2rem;
    }
    
    .why-profitable__header {
        margin-bottom: 50px;
    }
    
    .why-profitable__grid {
        gap: 30px;
    }
    
    .why-profitable__card-title {
        font-size: 1.25rem;
    }
}

/* Модальные окна с формами */
.modal__content--form {
    max-width: 520px;
    padding: 0; /* Убираем padding, так как .modal__content уже имеет отступы */
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form__field {
    margin-bottom: 10px; /* Уменьшено с 12px до 10px */
}

.contact-form__label {
    display: block;
    margin-bottom: 3px; /* Уменьшено с 4px до 3px */
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.01em;
}

.contact-form__input {
    width: 100%;
    padding: 16px 18px; /* Уменьшено с 18px 20px */
    border: 2px solid #e9ecef;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.contact-form__input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.contact-form__input:valid {
    border-color: #28a745;
}

.contact-form__input::placeholder {
    color: #adb5bd;
    font-size: 0.95rem;
}

.contact-form__submit {
    padding: 16px 30px; /* Уменьшено с 18px 32px */
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    outline: none;
    margin-top: 4px; /* Уменьшено с 6px */
}

.contact-form__submit:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-form__submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form__submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
}

.contact-form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.contact-form__submit:hover::before {
    left: 100%;
}

.contact-form__note {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: 8px; /* Уменьшено с 12px */
    line-height: 1.4;
    padding: 0 10px;
}

/* Адаптивность для модальных окон с формами */
@media (max-width: 768px) {
    .modal__content {
        max-width: 100vw;
        width: calc(100% - 24px); /* Уменьшаем ширину для отступов */
        height: auto; /* Автоматическая высота вместо 100vh */
        max-height: 85vh; /* Ограничиваем максимальную высоту */
        padding: 20px 16px; /* Увеличиваем padding для лучшего вида */
        border-radius: 16px; /* Возвращаем скругления */
        margin: 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .modal__header {
        margin-bottom: 16px; /* Увеличиваем отступ */
        margin-top: 0; /* Убираем верхний отступ */
        flex-shrink: 0;
    }

    .modal__title {
        font-size: 1.5rem; /* Уменьшаем размер заголовка */
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .modal__subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .modal__close {
        position: absolute;
        top: -10px; /* Изменено с -6px на -10px */
        right: -6px;
        width: 28px;
        height: 28px;
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        font-size: 16px;
        color: #666;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        outline: none;
    }

    .modal__content--form {
        padding: 0; /* Убираем padding */
        height: auto; /* Убираем фиксированную высоту */
        max-height: none; /* Убираем ограничение высоты */
        display: flex;
        flex-direction: column;
        margin-top: 0; /* Убираем отступ сверху */
    }

    .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px; /* Увеличиваем расстояние между элементами */
    }

    .contact-form__input {
        padding: 14px 16px; /* Увеличиваем padding */
        font-size: 16px; /* Предотвращает зум на iOS */
        border-radius: 12px;
    }

    .contact-form__submit {
        padding: 16px 24px; /* Увеличиваем padding кнопки */
        font-size: 1rem;
        border-radius: 12px;
        margin-top: 8px;
    }

    .contact-form__field {
        margin-bottom: 0; /* Убираем margin, используем gap в форме */
    }

    .contact-form__note {
        margin-top: 12px; /* Увеличиваем отступ */
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 16px; /* Увеличиваем padding модального окна */
    }

    .modal__content {
        max-width: 100%;
        width: calc(100% - 16px); /* Уменьшаем отступы для очень маленьких экранов */
        max-height: 80vh; /* Немного уменьшаем максимальную высоту */
        padding: 16px 14px; /* Оптимизируем padding */
        border-radius: 12px;
    }

    .modal__header {
        margin-bottom: 14px;
        margin-top: 0;
    }

    .modal__title {
        font-size: 1.4rem; /* Увеличиваем размер заголовка */
        margin-bottom: 4px;
    }

    .modal__subtitle {
        font-size: 0.9rem;
    }

    .modal__close {
        top: -10px;
        right: -10px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .contact-form {
        gap: 10px; /* Уменьшаем gap для маленьких экранов */
    }

    .contact-form__input {
        padding: 12px 14px;
        font-size: 16px;
    }

    .contact-form__submit {
        padding: 14px 20px;
        font-size: 15px;
    }

    .contact-form__note {
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

/* Мобильная адаптация модального окна */
@media (max-width: 768px) {
    .modal {
        align-items: center;
        padding: 12px;
    }
    
    .modal__overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .modal__content {
        width: 100%;
        max-width: 400px;
        max-height: 75vh;
        margin: 0;
        padding: 16px; /* Уменьшено с 20px */
        border-radius: 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .modal__header {
        margin-bottom: 12px; /* Уменьшено с 16px */
        margin-top: 8px; /* Уменьшено с 16px */
        flex-shrink: 0;
    }

    .modal__title {
        font-size: 1.4rem;
        margin-bottom: 4px; /* Уменьшено с 6px */
        line-height: 1.3;
    }

    .modal__subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .modal__close {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 32px;
        height: 32px;
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        color: #666;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        outline: none;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 8px; /* Уменьшено с 10px до 8px */
    }

    .contact-form__input {
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 12px;
    }

    .contact-form__submit {
        padding: 14px 24px;
        font-size: 16px;
        margin-top: 6px; /* Уменьшено с 8px */
    }

    .contact-form__field {
        margin-bottom: 0;
    }

    .contact-form__note {
        font-size: 0.8rem;
        margin-top: 6px; /* Уменьшено с 8px */
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 8px;
    }

    .modal__content {
        max-width: 100%;
        max-height: 70vh;
        padding: 12px; /* Уменьшено с 16px */
        border-radius: 16px;
    }

    .modal__header {
        margin-bottom: 8px; /* Уменьшено с 12px */
        margin-top: 12px; /* Уменьшено с 20px */
    }

    .modal__title {
        font-size: 1.3rem;
        margin-bottom: 3px; /* Уменьшено с 4px */
    }

    .modal__subtitle {
        font-size: 0.85rem;
    }

    .modal__close {
        top: -6px;
        right: -6px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .contact-form__input {
        padding: 10px 14px;
        font-size: 16px;
    }

    .contact-form__submit {
        padding: 12px 20px;
        font-size: 15px;
    }

    .contact-form__note {
        font-size: 0.75rem;
        margin-top: 4px; /* Уменьшено с 6px */
    }
}

/* Секции с кнопками CTA */
.cta-section {
    text-align: center;
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.cta-section__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Стили кнопок CTA */
.cta-button {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease;
    outline: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Основная кнопка */
.cta-button--primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
}

.cta-button--primary:hover {
    background: #000;
}

.cta-button--primary:active {
    background: #000;
}

.cta-button--primary:focus {
    outline: none;
}

/* Вторичная кнопка */
.cta-button--secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
}

.cta-button--secondary:hover {
    background: #000;
}

.cta-button--secondary:active {
    background: #000;
}

.cta-button--secondary:focus {
    outline: none;
}

/* Адаптивность для кнопок */
@media (max-width: 768px) {
    .cta-section {
        padding: 30px 0 60px 0;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 20px 0 40px 0;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* Contact Section */
.contact-section {
    background-color: #1a1a1a;
    padding: 60px 0; /* Уменьшил с 100px до 60px */
    color: #fff;
}

.contact-section__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section__header {
    margin-bottom: 60px;
}

.contact-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-section__subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin: 0 auto;
    line-height: 1.4;
    max-width: 600px;
}

.contact-section__form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-section__field {
    text-align: left;
}

.contact-section__label {
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
}

.contact-section__input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.contact-section__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.contact-section__input:focus {
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.contact-section__input:valid {
    border-color: #28a745;
}

.contact-section__submit {
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    outline: none;
    margin-bottom: 20px;
    min-width: 250px;
}

.contact-section__submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-section__submit:active {
    transform: translateY(0);
}

.contact-section__submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
}

.contact-section__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.contact-section__submit:hover::before {
    left: 100%;
}

.contact-section__note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Responsive для Contact Section */
@media (max-width: 1024px) {
    .contact-section {
        padding: 50px 0; /* Уменьшил с 80px до 50px */
    }
    
    .contact-section__title {
        font-size: 3rem;
    }
    
    .contact-section__form {
        padding: 40px;
    }
    
    .contact-section__fields {
        gap: 25px;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0; /* Уменьшил с 60px до 40px */
    }
    
    .contact-section__header {
        margin-bottom: 50px;
    }
    
    .contact-section__title {
        font-size: 2.5rem;
    }
    
    .contact-section__subtitle {
        font-size: 1.125rem;
    }
    
    .contact-section__form {
        padding: 35px 30px;
    }
    
    .contact-section__fields {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-section__input {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .contact-section__submit {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 35px 0; /* Уменьшил с 50px до 35px */
    }
    
    .contact-section__title {
        font-size: 2rem;
    }
    
    .contact-section__subtitle {
        font-size: 1rem;
    }
    
    .contact-section__header {
        margin-bottom: 40px;
    }
    
    .contact-section__form {
        padding: 30px 25px;
    }
    
    .contact-section__fields {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .contact-section__input {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    
    .contact-section__submit {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
    
    .contact-section__note {
        font-size: 0.85rem;
    }
}

/* Футер */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__company {
    flex: 1;
}

.footer__company-name {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
}

.footer__company-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__address {
    font-size: 0.875rem;
    color: #ccc;
    line-height: 1.4;
}

.footer__inn {
    font-size: 0.875rem;
    color: #ccc;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer__phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__phone:hover {
    color: #ff6b6b;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.footer__link {
    font-size: 0.875rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #ff6b6b;
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer__contact {
        align-items: flex-start;
    }
    
    .footer__links {
        align-items: flex-start;
    }
    
    .footer__phone {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }
    
    .footer__content {
        gap: 25px;
    }
    
    .footer__company-name {
        font-size: 0.875rem;
        margin-bottom: 15px;
    }
    
    .footer__address,
    .footer__inn,
    .footer__link {
        font-size: 0.8rem;
    }
    
    .footer__phone {
        font-size: 1rem;
    }
}

/* Модальные окна с формами */
/* Стили для информационного контента модальных окон */
.modal-info {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.modal-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
}

.modal-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.modal-info li {
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

.modal-info li:before {
    content: '•';
    color: #ff6b6b;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-info li:last-child {
    margin-bottom: 0;
}

.modal-info strong {
    color: #1a1a1a;
    font-weight: 600;
}

.modal-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
}

/* Адаптивность для информационного контента */
@media (max-width: 768px) {
    .modal-info h3 {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }
    
    .modal-info li {
        font-size: 0.95rem;
        margin-bottom: 14px;
        padding-left: 18px;
    }
    
    .modal-info p {
        font-size: 0.95rem;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .modal-info h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .modal-info li {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding-left: 16px;
    }
    
    .modal-info p {
        font-size: 0.9rem;
        padding: 14px;
    }
}

.modal-info p {
    font-size: 14px;
    line-height: 1.5;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 40px);
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-notice--visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cookie-notice__content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
}

.cookie-notice__text {
    flex: 1;
}

.cookie-notice__title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.cookie-notice__description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cookie-notice__accept {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    outline: none;
}

.cookie-notice__accept:hover {
    background: #000;
    transform: translateY(-1px);
}

.cookie-notice__accept:active {
    background: #000;
    transform: translateY(0);
}

.cookie-notice__accept:focus {
    outline: none;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-notice {
        bottom: 16px;
        width: calc(100% - 32px);
        border-radius: 12px;
    }
    
    .cookie-notice__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .cookie-notice__title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .cookie-notice__description {
        font-size: 13px;
    }
    
    .cookie-notice__accept {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        bottom: 12px;
        width: calc(100% - 24px);
        border-radius: 10px;
    }
    
    .cookie-notice__content {
        padding: 14px 16px;
        gap: 14px;
    }
    
    .cookie-notice__title {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .cookie-notice__description {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .cookie-notice__accept {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Мобильный нижний навбар */
.mobile-bottom-nav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    z-index: 1000;
    display: none; /* Скрыт по умолчанию */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav__content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 8px; /* Уменьшено с 12px до 8px */
}

.mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px; /* Уменьшено с 4px до 2px */
    padding: 6px 12px; /* Уменьшено с 8px до 6px */
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    outline: none; /* Убираем обводку */
    -webkit-tap-highlight-color: transparent; /* Убираем подсветку на iOS */
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item.active {
    color: #EE5A52;
    ;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.mobile-bottom-nav__item:focus {
    outline: none; /* Убираем обводку при фокусе */
}

.mobile-bottom-nav__item:active {
    transform: translateY(0); /* Убираем эффект нажатия */
    outline: none;
}

.mobile-bottom-nav__item.active .mobile-bottom-nav__icon svg {
    transform: scale(1.1);
}

.mobile-bottom-nav__item.active .mobile-bottom-nav__label {
    font-weight: 600;
}

.mobile-bottom-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; /* Уменьшено с 24px до 20px */
    height: 20px; /* Уменьшено с 24px до 20px */
}

.mobile-bottom-nav__icon svg {
    width: 18px; /* Уменьшено с 20px до 18px */
    height: 18px; /* Уменьшено с 20px до 18px */
    transition: all 0.3s ease;
}

.mobile-bottom-nav__label {
    font-size: 0.6875rem; /* Уменьшено с 0.75rem (12px) до 0.6875rem (11px) */
    font-weight: 500;
    text-align: center;
    line-height: 1;
}

/* Показываем нижний навбар только на мобильных */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: block;
    }
}

.modal__header {
    text-align: center;
    margin-bottom: 16px; /* Уменьшено с 20px */
    margin-top: 8px; /* Уменьшено с 12px */
    position: relative;
}

.modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px; /* Уменьшено с 6px */
    line-height: 1.2;
}

.modal__subtitle {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.modal__close {
    position: absolute;
    top: -12px; /* Изменено с -8px на -12px */
    right: -8px;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none;
}

.modal__close:hover {
    background: #e9ecef;
    color: #495057;
    transform: scale(1.1);
}

.modal__close:focus {
    outline: none;
}

/* Модальные окна */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal__content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 20px; /* Уменьшено с 32px 24px */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
    z-index: 1001;
}

/* Модальные окна с формами */

/* Кастомные сообщения валидации */
.custom-validation-message {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.25);
    position: absolute;
    z-index: 1000;
    max-width: 300px;
    animation: slideInUp 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.custom-validation-message::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ff6b6b;
}

.custom-validation-message::after {
    content: '💡';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Стили для полей с ошибками валидации */
.validation-error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
    background: rgba(255, 107, 107, 0.05) !important;
}

/* Анимация появления сообщения */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивные стили для сообщений валидации */
@media (max-width: 768px) {
    .custom-validation-message {
        font-size: 0.8rem;
        padding: 10px 14px;
        max-width: 280px;
        border-radius: 10px;
    }
    
    .custom-validation-message::before {
        left: 16px;
    }
    
    .custom-validation-message::after {
        top: 10px;
        right: 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .custom-validation-message {
        font-size: 0.75rem;
        padding: 8px 12px;
        max-width: 250px;
        border-radius: 8px;
    }
    
    .custom-validation-message::before {
        left: 14px;
        border-left-width: 5px;
        border-right-width: 5px;
        border-bottom-width: 5px;
        top: -5px;
    }
    
    .custom-validation-message::after {
        top: 8px;
        right: 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .custom-validation-message {
        font-size: 12px;
        padding: 6px 10px;
        margin-top: 4px;
        border-radius: 6px;
    }
    
    .custom-validation-message::before {
        border-width: 0 6px 6px 6px;
        top: -6px;
        left: 12px;
    }
    
    .custom-validation-message::after {
        border-width: 0 5px 5px 5px;
        top: -5px;
        left: 13px;
    }
}

/* Калькулятор экономии */
.calculator-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.calculator-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.calculator-section__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.calculator-section__subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

.calculator {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calculator__settings {
    padding-right: 20px;
}

.calculator__settings-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.calculator__field {
    margin-bottom: 25px;
}

.calculator__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calculator__label-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.calculator__value {
    font-weight: 600;
    color: #ff6b6b;
}

.calculator__slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calculator__slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid #666;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.calculator__slider::-webkit-slider-thumb:hover {
    background: #f0f0f0;
    border-color: #333;
    transform: scale(1.1);
}

.calculator__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid #666;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.calculator__slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.calculator__range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.calculator__results {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator__comparison {
    margin-bottom: 40px;
}

.calculator__comparison-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator__comparison-item--current {
    border-color: rgba(255, 255, 255, 0.1);
}

.calculator__comparison-item--ai {
    border-color: rgba(255, 255, 255, 0.1);
}

.calculator__comparison-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.calculator__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.calculator__amount-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.calculator__amount--current .calculator__amount-value {
    color: #fff;
}

.calculator__amount--ai .calculator__amount-value {
    color: #fff;
}

.calculator__amount-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.calculator__yearly {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.calculator__includes {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.calculator__vs {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.6);
}

.calculator__savings {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.calculator__savings-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.calculator__savings-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.calculator__savings-value {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b6b;
}

.calculator__savings-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.calculator__savings-yearly {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.calculator__savings-percentage {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b6b;
}

.calculator__cta-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.calculator__cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.calculator__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.calculator__cta-button:hover::before {
    left: 100%;
}

.calculator__cta-button:active {
    transform: translateY(0);
}

.calculator__cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .calculator-section {
        padding: 60px 0;
    }
    
    .calculator {
        padding: 32px;
    }
    
    .calculator__content {
        gap: 40px;
    }
    
    .calculator-section__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 50px 0;
    }
    
    .calculator-section__header {
        margin-bottom: 40px;
    }
    
    .calculator-section__title {
        font-size: 2rem;
    }
    
    .calculator-section__subtitle {
        font-size: 1rem;
    }
    
    .calculator {
        padding: 24px;
        border-radius: 16px;
    }
    
    .calculator__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .calculator__settings,
    .calculator__results {
        padding: 0;
    }
    
    .calculator__results {
        border-left: none;
        border-top: 1px solid #e9ecef;
        padding-top: 32px;
    }
    
    .calculator__settings-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
    
    .calculator__field {
        margin-bottom: 24px;
    }
    
    .calculator__comparison-item {
        padding: 20px;
    }
    
    .calculator__amount-value {
        font-size: 1.5rem;
    }
    
    .calculator__savings-value {
        font-size: 1.75rem;
    }
    
    .calculator__cta-button {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .calculator-section {
        padding: 40px 0;
    }
    
    .calculator-section__title {
        font-size: 1.75rem;
    }
    
    .calculator-section__subtitle {
        font-size: 0.875rem;
    }
    
    .calculator {
        padding: 20px;
        border-radius: 12px;
    }
    
    .calculator__content {
        gap: 24px;
    }
    
    .calculator__settings-title {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }
    
    .calculator__field {
        margin-bottom: 20px;
    }
    
    .calculator__label-text,
    .calculator__value {
        font-size: 0.875rem;
    }
    
    .calculator__comparison-item {
        padding: 16px;
    }
    
    .calculator__comparison-title {
        font-size: 0.875rem;
    }
    
    .calculator__amount-value {
        font-size: 1.25rem;
    }
    
    .calculator__amount-period {
        font-size: 0.875rem;
    }
    
    .calculator__yearly {
        font-size: 0.75rem;
    }
    
    .calculator__savings {
        padding: 20px;
    }
    
    .calculator__savings-title {
        font-size: 1rem;
    }
    
    .calculator__savings-value {
        font-size: 1.5rem;
    }
    
    .calculator__savings-yearly {
        font-size: 0.875rem;
    }
    
    .calculator__savings-percentage {
        font-size: 1rem;
    }
    
    .calculator__cta-button {
        font-size: 0.875rem;
        padding: 12px 16px;
    }
    
    .calculator__cta-note {
        font-size: 0.75rem;
    }
}

/* Блок с текстом-переходом к решению */
.solution-intro {
    padding: 40px 0 40px 0;
    background: #fff;
}

.solution-intro__text {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .solution-intro {
        padding: 30px 0 30px 0;
    }
    
    .solution-intro__text {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .solution-intro {
        padding: 20px 0 20px 0;
    }
    
    .solution-intro__text {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .solution-intro {
        padding: 40px 0;
    }
    
    .solution-intro__text {
        font-size: 1.2rem;
    }
}

/* Solution Choice Section */
.solution-choice {
    padding: 80px 0;
    background: #ffffff;
}

.solution-choice__header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-choice__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.solution-choice__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-choice__card {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 40px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.solution-choice__card:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-choice__card--new-site:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-choice__card--integration:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-choice__card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-choice__card-icon {
    margin-bottom: 24px;
    color: #000;
    align-self: flex-start;
}

.solution-choice__card--new-site .solution-choice__card-icon {
    color: #000;
}

.solution-choice__card--integration .solution-choice__card-icon {
    color: #000;
}

.solution-choice__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-choice__card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.solution-choice__card-features {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
}

.solution-choice__card-features li {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.solution-choice__card-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
}

.solution-choice__card-price {
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.solution-choice__card-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.solution-choice__card-price-period {
    color: #666;
    font-size: 0.9rem;
    margin-top: 4px;
}

.solution-choice__card-arrow {
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: auto;
    align-self: flex-end;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #000;
    cursor: pointer;
}

.solution-choice__card:hover .solution-choice__card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.solution-choice__card-button {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: stretch;
    margin-top: auto;
}

.solution-choice__card-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.solution-choice__card-button--secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.solution-choice__card-button--secondary:hover {
    background: #000;
    color: #fff;
}

/* AI Blog Integration Section */
.ai-blog-integration {
    padding: 80px 0;
    background: #ffffff;
}

.ai-blog-integration__content {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-blog-integration__header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-blog-integration__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ai-blog-integration__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.ai-blog-integration__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-blog-integration__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
}

.ai-blog-integration__features {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.website-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.website-mockup__header {
    background: #f0f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.website-mockup__controls {
    display: flex;
    gap: 6px;
}

.website-mockup__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.website-mockup__dot:nth-child(1) {
    background: #ff5f57;
}

.website-mockup__dot:nth-child(2) {
    background: #ffbd2e;
}

.website-mockup__dot:nth-child(3) {
    background: #28ca42;
}

.website-mockup__url {
    background: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #666;
    flex-grow: 1;
    text-align: center;
}

.website-mockup__nav {
    background: #fff;
    padding: 16px;
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.website-mockup__nav-item {
    font-size: 0.9rem;
    color: #666;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.website-mockup__nav-item--blog {
    background: #ff6b6b;
    color: #fff;
    font-weight: 600;
}

.website-mockup__content {
    padding: 32px;
}

.website-mockup__blog-section h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 16px;
    font-weight: 600;
}

.website-mockup__articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.website-mockup__article {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
}

.website-mockup__article-date {
    font-size: 0.75rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 4px;
}

.website-mockup__article-title {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

.ai-blog-integration__features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ai-blog-integration__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.ai-blog-integration__feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ai-blog-integration__feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0;
    color: #ff6b6b;
    width: 20px;
    text-align: center;
}

.ai-blog-integration__feature-text {
    color: #666;
    line-height: 1.4;
    font-size: 0.95rem;
}

.ai-blog-integration__feature-text strong {
    color: #000;
    font-weight: 600;
    display: block;
    margin-bottom: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-choice__grid {
        gap: 30px;
    }
    
    .solution-choice__card {
        padding: 32px;
    }
    
    .ai-blog-integration__grid {
        gap: 50px;
    }
    
    .ai-blog-integration__feature {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .ai-blog-integration__feature:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .solution-choice {
        padding: 60px 0;
    }
    
    .solution-choice__header {
        margin-bottom: 40px;
    }
    
    .solution-choice__title {
        font-size: 2rem;
    }
    
    .solution-choice__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-choice__card {
        padding: 28px;
    }
    
    .solution-choice__card-title {
        font-size: 1.1rem;
    }
    
    .ai-blog-integration {
        padding: 60px 0;
    }
    
    .ai-blog-integration__title {
        font-size: 2rem;
    }
    
    .ai-blog-integration__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-blog-integration__visual {
        order: 1;
    }
    
    .ai-blog-integration__features {
        order: 2;
    }
    
    .website-mockup {
        max-width: 100%;
    }
    
    .website-mockup__nav {
        gap: 16px;
        padding: 12px;
    }
    
    .website-mockup__nav-item {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .ai-blog-integration__feature {
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .ai-blog-integration__feature:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .solution-choice {
        padding: 40px 0;
    }
    
    .solution-choice__title {
        font-size: 1.8rem;
    }
    
    .solution-choice__card {
        padding: 20px;
    }
    
    .solution-choice__card-title {
        font-size: 1.2rem;
    }
    
    .solution-choice__card-price-value {
        font-size: 1.5rem;
    }
    
    .ai-blog-integration {
        padding: 40px 0;
    }
    
    .ai-blog-integration__title {
        font-size: 1.8rem;
    }
    
    .ai-blog-integration__subtitle {
        font-size: 1.1rem;
    }
    
    .ai-blog-integration__feature {
        gap: 8px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }
    
    .ai-blog-integration__feature-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .website-mockup__nav {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .website-mockup__nav-item {
        font-size: 0.75rem;
    }
}

/* Специальные стили для карточки интеграции */
.pricing__card--integration {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border: 2px solid #e0e7ff;
}

.pricing__card--integration .pricing__card-title {
    color: #3b4afe;
}

.pricing__card--integration .pricing__card-subtitle {
    color: #3b4afe;
}

/* Бейдж для рекомендованного тарифа */
.pricing__card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.header__fittin-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff6b35; /* fallback */
    margin-left: 0;
    vertical-align: middle;
    letter-spacing: 0.01em;
    transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), background 0.18s;
}

.header__fittin-label:hover, .header__fittin-label:focus, .header__fittin-label:active {
    transform: scale(1.08);
    background: linear-gradient(135deg, #ff944d 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    outline: none;
}

.hero__title-accent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff6b35; /* fallback */
    font-weight: 700;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 40px !important;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 30px !important;
  }
}

.hero__subtitle {
    font-size: 20px !important;
    max-width: 90%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 1024px) {
  .hero__subtitle {
    font-size: 18px !important;
  }
}

@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .hero__subtitle {
    font-size: 14px !important;
  }
}

@media (max-width: 1024px) {
  .hero__cta-button {
    min-width: 240px;
  }
}

@media (max-width: 767px) {
  .hero__cta-button {
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .hero__cta-button {
    min-width: 140px;
  }
}

.solution {
    margin-top: 200px; /* Отступ сверху для мобильных */
    padding: 200px 0 60px 0; /* Сохраняем верхний отступ 200px */
}

.solution__card--large .solution__card-title {
    font-size: 2.1rem !important;
    line-height: 1.05 !important;
}

.solution__card--large .solution__card-subtitle {
    max-width: 36ch;
    text-align: left;
    line-height: 1.25;
}

.solution__card--dark .solution__card-details:visited:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--red .solution__card-details {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--red .solution__card-details:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--red .solution__card-details:visited {
    color: #FFFFFF;
    opacity: 0.8;
}

.solution__card--red .solution__card-details:visited:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--gray-dark .solution__card-details {
    color: #FFFFFF;
    opacity: 0.9;
}

.solution__card--gray-dark .solution__card-details:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--gray-dark .solution__card-details:visited {
    color: #FFFFFF;
    opacity: 0.9;
}

.solution__card--gray-dark .solution__card-details:visited:hover {
    color: #FFFFFF;
    opacity: 1;
}

.solution__card--large .solution__card-title {
    font-size: 2.1rem !important;
    line-height: 1.05 !important;
}

.solution__card--gray-dark .solution__card-title {
    font-size: 2.1rem !important;
    line-height: 1.05 !important;
}

.solution__card--large .solution__card-subtitle {
    max-width: 36ch;
    text-align: left;
    line-height: 1.25;
}

.solution__card--gray-dark .solution__card-text {
    max-width: 85%;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .solution__card--large .solution__card-title {
        font-size: 1.25rem !important; /* 20px */
        line-height: 1.2 !important;
    }
    
    .solution__card--gray-dark .solution__card-title {
        font-size: 1.25rem !important; /* 20px */
        line-height: 1.2 !important;
    }
    
    .solution__card--gray-dark .solution__card-text {
        font-size: 1rem !important; /* 16px */
    }
}

.solution__card--large .solution__card-subtitle {
    font-size: 1rem !important;
}

@media (max-width: 768px) {
    .solution__card--dark .solution__card-text {
        max-width: 100% !important;
    }
    
    .solution__card--gray-dark .solution__card-text {
        max-width: 100% !important;
    }
    
    .solution__card-text {
        margin-bottom: 20px !important;
    }
}

.solution__card--large .solution__card-subtitle {
    font-size: 1.125rem !important; /* 18px для десктопа */
}

@media (max-width: 768px) {
    .solution__card--large .solution__card-subtitle {
        font-size: 1rem !important; /* 16px для мобильных */
    }
}

/* --- Новый фирменный стиль блока сравнения --- */
.comparison-section {
    background: #fff;
    padding: 80px 0;
}
.comparison-section__header {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}
.comparison-section__title {
    font-size: 40px;
    font-weight: 700;
    color: #181818;
    text-align: left;
    margin-bottom: 40px;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
.comparison-table {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.comparison-table__row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    border-bottom: 1px solid #ececf0;
    transition: background 0.2s;
}
.comparison-table__row:last-child {
    border-bottom: none;
}
.comparison-table__row--head {
    font-weight: 700;
    color: #222;
    background: #f3f3f5;
}
.comparison-table__cell {
    padding: 24px 20px;
    font-size: 1.1rem;
    color: #222;
    display: flex;
    align-items: center;
    min-height: 56px;
    border-right: 1px solid #ececf0;
    background: transparent;
    font-family: 'Inter', sans-serif;
}
.comparison-table__cell:last-child {
    border-right: none;
}
.comparison-table__cell--head.comparison-table__cell--classic {
    background: #f7f7fa;
    color: #222;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    border-right: 1px solid #ececf0;
}
.comparison-table__cell--head.comparison-table__cell--ai {
    background: linear-gradient(90deg, #ff6b35 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    justify-content: center;
}
.comparison-table__cell--title {
    font-weight: 600;
    color: #ff6b35;
    background: #f3f3f5;
    min-width: 120px;
    border-right: 1px solid #ececf0;
    font-size: 1.08rem;
    letter-spacing: -0.01em;
}
.comparison-table__row:not(.comparison-table__row--head):hover {
    background: linear-gradient(90deg, #fff6f0 0%, #fff0f0 100%);
}
.comparison-table__row:nth-child(even):not(.comparison-table__row--head) {
    background: #faf9f7;
}
@media (max-width: 900px) {
    .comparison-table__row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .comparison-table__cell {
        font-size: 1rem;
        padding: 18px 10px;
    }
}
@media (max-width: 600px) {
    .comparison-section {
        padding: 40px 0;
    }
    .comparison-section__header {
        margin-bottom: 1.5rem;
    }
    .comparison-table {
        margin-top: 12px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .comparison-table__row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .comparison-table__row--head {
        display: none;
    }
    .comparison-table__cell--title {
        background: #f3f3f5;
        border-radius: 8px 8px 0 0;
        margin-bottom: 0;
        font-size: 1.05rem;
        border-right: none;
        color: #ff6b35;
    }
    .comparison-table__row {
        margin-bottom: 18px;
        border-bottom: 1px solid #ececf0;
    }
    .comparison-table__cell {
        padding: 14px 10px;
        font-size: 0.98rem;
        border-radius: 0;
        background: #fff;
        border-right: none;
        border-bottom: none;
    }
    .comparison-table__cell--head {
        display: none;
    }
}

.comparison-cards__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}
.comparison-cards {
    width: 100%;
    max-width: 1280px;
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}
.comparison-card {
    flex: 0 0 49.5%;
    max-width: 49.5%;
    margin: 0;
    min-height: 420px;
    height: 100%;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .comparison-cards {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
        max-width: 100%;
    }
    .comparison-card {
        max-width: 100%;
        width: 100%;
    }
}

.comparison-card--light {
    background: #f6f6f6;
    color: #181818;
    border-radius: 28px;
    box-shadow: none;
    padding: 60px;
    display: flex;
    flex-direction: column;
    transition: none;
}
.comparison-card--dark {
    background: #181818;
    color: #fff;
    border-radius: 28px;
    box-shadow: none;
    padding: 60px;
    display: flex;
    flex-direction: column;
    transition: none;
}
.comparison-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: inherit;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.comparison-card__list {
    list-style: disc inside;
    margin: 0;
    padding: 0;
    font-size: 1.08rem;
    color: inherit;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comparison-card__list li {
    color: #666;
    font-weight: 400;
}
.comparison-card--dark .comparison-card__list li {
    color: #e0e0e0;
    font-weight: 400;
}
.comparison-card__list b {
    font-weight: 600;
    color: #ff6b35;
}
.comparison-card--dark .comparison-card__list b {
    color: #ff6b6b;
}

.comparison-cards {
    align-items: stretch;
}
.comparison-card {
    height: auto;
    min-height: 100%;
}

.comparison-card__list li:nth-child(-n+3) {
    max-width: 433px;
}

.comparison-card__list li:first-child {
    max-width: 393px;
}

.comparison-card--light .comparison-card__list b {
    color: #181818;
}
.comparison-card--dark .comparison-card__list b {
    color: #fff;
}

@media (max-width: 1327px) {
    .comparison-cards__container {
        padding: 0 16px;
    }
    .comparison-card--light,
    .comparison-card--dark {
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .comparison-card--light,
    .comparison-card--dark {
        padding: 32px;
    }
    .comparison-card__title {
        font-size: 1.125rem;
    }
    .comparison-card__list {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
  .header__nav-link {
    font-size: 0.85rem !important;
    padding-left: 7px;
    padding-right: 7px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .header__nav-link {
    font-size: 0.75rem !important;
    padding-left: 4px;
    padding-right: 4px;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .header__nav-link {
    font-size: 0.68rem !important;
    padding-left: 2px;
    padding-right: 2px;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .header__nav-link {
    font-size: 0.6rem !important;
    padding-left: 1px;
    padding-right: 1px;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .mobile-bottom-nav {
    display: block !important;
  }
  .header__nav {
    display: none !important;
  }
}
@media (min-width: 981px) {
  .mobile-bottom-nav {
    display: none !important;
  }
  .header__nav {
    display: flex !important;
  }
}

/* --- Адаптив для seo-intro: ширина <= 908px --- */
@media (max-width: 908px) {
  .seo-intro .section__title {
    font-size: 44px;
  }
  .seo-intro__content {
    max-width: 800px;
    width: 100%;
  }
}

/* --- Адаптив для seo-intro: ширина <= 867px --- */
@media (max-width: 867px) {
  .seo-intro .section__title {
    font-size: 40px;
  }
  .seo-intro__content {
    max-width: 750px;
    width: 100%;
  }
}

/* --- Адаптив для seo-intro: ширина <= 827px --- */
@media (max-width: 827px) {
  .seo-intro .section__title {
    font-size: 32px;
    word-break: break-word;
    white-space: normal;
  }
  .seo-intro__content {
    max-width: 98vw;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
}

/* --- Адаптив для hero__title: ширина <= 522px --- */
@media (max-width: 522px) {
  .hero__title {
    white-space: pre-line;
    /* Если переносы уже есть в HTML, этого достаточно */
    /* Если нет — можно добавить word-break: break-word; */
  }
}

@media (max-width: 1440px) {
  .hero .container {
    margin-top: 3vh;
  }
}

