:root {
    --primary-blue: #2b6cb0;
    --primary-hover: #1e4e8c;
    --text-main: #1a202c;
    --text-muted: #718096;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --shadow-soft: 0 10px 30px rgba(43, 108, 176, 0.06);
    --border-light: #edf2f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Отступ сверху при клике на якорь, чтобы шапка не перекрывала контент */
}

/* Фон с нежным голубым градиентным размытием */
.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Растягивается на все 100% ширины экрана без ограничений */
    height: 900px;
    z-index: -1;
    pointer-events: none;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
}


/* Вспомогательные классы */
.text-center { text-align: center; }
.highlight { color: var(--primary-blue); }
.highlight_r { color: #e51111; }
.section { padding: 50px 5%; max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.section-header p { font-size: 18px; color: var(--text-muted); }
.section-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 700; display: block; margin-bottom: 8px; }

/* Шапка */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.85); /* Полупрозрачный цвет фона */
    backdrop-filter: blur(12px); /* Эффект матового стекла (как на fravai) */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(43, 108, 176, 0.08); /* Мягкая тень снизу */
    width: 100%;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    max-width: 1280px;
    margin: 0 auto;
}
.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--primary-blue); }
.nav a { text-decoration: none; color: var(--text-main); margin: 0 16px; font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav a:hover { color: var(--primary-blue); }

/* Кнопки */
.btn { padding: 12px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.2s ease; display: inline-block; border: none; cursor: pointer; }
.btn-primary { background-color: var(--primary-blue); color: white; box-shadow: 0 4px 14px rgba(43, 108, 176, 0.3); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
.btn-dark { background-color: #1a202c; color: white; }
.btn-dark:hover { background-color: #2d3748; }
.btn-large { padding: 16px 36px; font-size: 16px; }

/* Универсальная белая карточка (Единый стиль) */
.card-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(43, 108, 176, 0.12);
}

/* Единый контейнер 3:4 для всех картинок */
.image-container.ratio-3-4 {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background-color: #ebf8ff; /* Серый/голубой фон на время загрузки картинки */
}

/* Заглушка по умолчанию, если нет реального фото */
.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Сохраняет пропорции JPG без сплющивания */
    display: block;
}

/* Сетки */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ЭКРАН 1: Hero */
.hero { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; padding: 30px 5%; max-width: 1280px; margin: 0 auto; }
.hero-content { flex: 1.5; max-width: 680px; }
.hero-content h1 { font-size: 44px; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.hero-content > p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 48px; }

.stats { display: flex; gap: 16px; }
.stat-card { background: var(--card-bg); padding: 20px; border-radius: 16px; box-shadow: var(--shadow-soft); flex: 1; border: 1px solid var(--border-light); }
.stat-card.stat-image { padding: 0; overflow: hidden; flex: 2;  }
.stat-card.stat-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stat-value { color: var(--primary-blue); font-size: 30px; font-weight: 1000; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.3; }

/* Десктоп: показываем внешнюю копию, копию внутри .hero-content прячем */
.hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.hero-content > .hero-visual { display: none; }
.main-product-card { width: 100%; max-width: 420px; }

.slider-controls { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 6px; }
.slider-btn { background: rgba(255, 255, 255, 0.9); border: none; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text-main); }
.slider-btn.active { background: var(--primary-blue); color: white; }
.slider-btn.large-btn {
    padding: 9px 21px; 
    font-size: 18px; 
}

.card-info { padding: 14px 4px 4px; }
.card-category { font-size: 11px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; }
.card-title { font-size: 16px; font-weight: 700; }
.card-subtitle { font-size: 14px; color: var(--text-muted); }

/* Контейнер для иконок маркетплейсов */
.marketplaces-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

/* Стили для иконок (сделали чуть меньше) */
.marketplaces-icons img {
    width: 44px; /* Уменьшили масштаб */
    height: 44px; /* Уменьшили масштаб */
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF; /* Чуть тоньше рамка для меньшего размера */
    margin-left: -12px; /* Скорректировали нахлест под новый размер */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.2s ease, z-index 0.2s ease;
}

/* Убираем отступ у первой иконки */
.marketplaces-icons img:first-child {
    margin-left: 0;
}

/* Меняем порядок наложения: первая иконка выше всех */
.marketplaces-icons img:nth-child(1) { z-index: 10; }
.marketplaces-icons img:nth-child(2) { z-index: 9; }
.marketplaces-icons img:nth-child(3) { z-index: 8; }
.marketplaces-icons img:nth-child(4) { z-index: 7; } /* На случай, если иконок будет больше */
.marketplaces-icons img:nth-child(5) { z-index: 6; }

/* При наведении иконка все равно выходит на самый передний план */
.marketplaces-icons img:hover {
    transform: translateY(-4px) scale(1.05);
    z-index: 20; 
}

/* ЭКРАН 2: Замечание */
.notice-card { background: #ebf8ff; border-left: 4px solid var(--primary-blue); padding: 20px; border-radius: 12px; margin-top: 32px; font-size: 24px; color: #2c5282; }

/* ЭКРАН 3: Категории */
.category-card { padding: 12px; text-align: center; }
.category-title { font-weight: 700; font-size: 14px; margin-top: 10px; }

/* =========================================
   ЭКРАН 3: Карусель До/После (На всю ширину)
========================================= */
/* Обратный градиент для секции задач */

/* 1. Сама секция растягивается на весь экран и держит градиент */
#tasks {
    max-width: 100% !important; /* Снимаем ограничение 1280px */
    width: 100%;
    background: linear-gradient(to bottom, #e7f2ff 0%, #f8fafc 100%);
    padding: 60px 5%; /* Отступы по бокам и сверху/снизу */
    margin: 0;
}

/* 2. Контент внутри секции центрируем и ограничиваем шириной */
#tasks .two-columns {
    max-width: 1280px;
    margin: 0 auto;
}

#categories {
    max-width: 100%; /* Убираем ограничение в 1280px */
    padding-left: 0;
    padding-right: 0;
    overflow: hidden; /* Чтобы не появился горизонтальный скролл страницы */
    /* Верх — цвет низа 2-го экрана (#f8fafc), низ — голубой для контраста карточек */
    background: linear-gradient(180deg, #f8fafc 0%, #e7f2ff 100%);
}

#categories .section-header {
    padding: 0 5%; /* Возвращаем отступы только заголовку */
    margin-bottom: 0; /* Убираем нижний margin у заголовка "Наши примеры роста CTR" */
}

#categories .section-header h2 {
    margin-bottom: 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 32px;
    overflow: visible; /* Движение только через transform, тень не обрезается */
    padding: 20px 0 40px 0;
    width: 100%;
    box-sizing: border-box;
    will-change: transform;
}

/* Настраиваем ширину карточек для мобильных и ПК */
.carousel-slide {
    flex: 0 0 calc(100% - 4vw); /* На мобильных почти во весь экран */
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 580px; /* Фиксируем размер карточки на ПК */
    }
}

/* Сильнее отделяем карточки от фона */
#categories .carousel-slide.card-box {
    box-shadow: 0 8px 24px rgba(43, 108, 176, 0.15); /* Более чистая, голубоватая тень */
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: #ffffff;
}

/* Текст под картинками (как на втором референсе) */
.slide-product-info {
    text-align: left;
    margin-top: 16px;
    padding: 0 8px;
}

.slide-product-info .card-category {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.slide-product-info .card-title {
    font-size: 20px; /* Крупный и жирный текст, как на референсе */
    font-weight: 800;
    color: var(--text-main);
}

/* =========================================
   Внутренняя сетка карточек (До / После)
========================================= */
.comparison-images {
    display: flex;
    gap: 12px;
    width: 100%;
}

.comparison-images .image-container {
    flex: 1; /* Картинки занимают ровно по 50% ширины */
}

/* Плашки с показателями CTR поверх картинок */
.img-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.img-label.success {
    background: #f0fff4; /* Нежно-зеленый фон для успешного результата */
    border: 1px solid #9ae6b4;
}

.label-title {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.label-ctr {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
}

.img-label.success .label-ctr {
    color: #276749; /* Темно-зеленый акцент для цифр */
}

/* =========================================
   Элементы управления каруселью (Кнопки и точки)
========================================= */
.carousel-controls-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    background: white;
    border: 1px solid var(--border-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    color: var(--primary-blue);
    font-size: 16px;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

    @media (max-width: 768px) {
    /* На мобильных прячем боковые кнопки, оставляем только свайп пальцем */
    .carousel-btn { display: none; } 
}

.post-carousel-cta { margin-top: 40px; }

/* ЭКРАН 4: Как это происходит */
#how-it-works {
    /* Верх — цвет низа 3-го экрана (#e7f2ff), к низу светлеет до основного фона */
    background: linear-gradient(180deg, #e7f2ff 0%, #f8fafc 100%);
    max-width: none; /* Фон во всю ширину, контент остаётся по центру */
    padding-left: 0;
    padding-right: 0;
}

#how-it-works .section-header,
#how-it-works .steps-grid,
#how-it-works .steps-subtext {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
}

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step-header { display: flex; align-items: flex-start; gap: 12px; text-align: left; margin-bottom: 16px; min-height: 64px; }
.step-badge { background: #1a202c; color: white; font-weight: 800; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-text h3 { font-size: 16px; font-weight: 700; }
.step-text p { font-size: 13px; color: var(--text-muted); min-height: 39px; }
.step-visual { padding: 12px; }
.steps-subtext { color: var(--text-muted); margin-top: 30px; font-size: 15px; }

/* ЭКРАН 5: Задачи */
.two-columns { display: flex; gap: 60px; }
.column-left { flex: 1; max-width: 400px; }
.column-left h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.column-left p { color: var(--text-muted); font-size: 16px; }
.column-right { flex: 1.3; }

.task-list { display: flex; flex-direction: column; gap: 16px; }
.task-item { display: flex; gap: 20px; padding: 20px; align-items: flex-start; }
.task-number { color: var(--primary-blue); font-weight: 800; font-size: 18px; background: #ebf8ff; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
/* Увеличили размер шрифта для всех карточек задач */
.task-content h3 { 
    font-size: 21px; 
    font-weight: 700; 
    margin-bottom: 6px; 
}

.task-content p { 
    font-size: 16px; 
    color: var(--text-muted); 
    margin-bottom: 12px; 
}
.pill { background: #ebf8ff; color: var(--primary-blue); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; display: inline-block; }

/* Сетка на 5 колонок для логотипов и статистики */
.grid-5 { 
    grid-template-columns: repeat(5, 1fr); 
}

/* Контейнер для логотипа */
.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px; /* Фиксируем высоту, чтобы все карточки были ровными */
    padding: 8px;
}

/* Умное масштабирование картинки */
.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Вписывает логотип без обрезки и сплющивания */
    /* Опционально: можно добавить filter: grayscale(100%); чтобы все лого были ч/б */
}


@media (max-width: 1100px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

/* ЭКРАН 6.2: CTA Баннер */
.cta-banner {
    background: linear-gradient(135deg, #ebf8ff 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 50px 20px; /* Ваш обновленный паддинг (воздух сверху и снизу) */
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.cta-banner h2 { 
    font-size: 28px; 
    font-weight: 800; 
    max-width: 750px; 
    /* Увеличили нижний отступ с 16px до 32px, чтобы отодвинуть кнопку */
    margin: 0 auto 32px auto; 
    line-height: 1.3; 
}
.cta-banner p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }

/* =========================================
   Модальное окно выбора мессенджера
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 52px 28px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: var(--text-main);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.messenger-btn .btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}


/* Кнопка Telegram */
.tg-btn {
    background: #24A1DE;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(36, 161, 222, 0.3);
}

.tg-btn:hover {
    background: #1d8ec6;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(36, 161, 222, 0.4);
}

/* Кнопка MAX */
.max-btn {
    background: #ffffff;
    color: #1f1f1f;
    box-shadow: 0 4px 14px rgba(0, 91, 255, 0.3);
}

.max-btn:hover {
    background: #004edb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 91, 255, 0.4);
}

@media (max-width: 600px) {
    .modal-card {
        padding: 28px 20px;
    }
    .modal-header h3 {
        font-size: 20px;
    }
    
}

/* Адаптируемость (Мобильные экраны) */
@media (max-width: 992px) {
    .hero, .two-columns { flex-direction: column; }
    .hero > .hero-visual { display: flex; width: 100%; flex-direction: column; align-items: center; }
    .hero-content > .hero-visual { display: none; }
    .grid-3, .grid-4, .grid-6, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .column-left { max-width: 100%; }
}

@media (max-width: 600px) {
    .grid-3, .grid-4, .grid-6, .steps-grid { grid-template-columns: 1fr; }
    /* Логотипы клиентов: квадраты по 3 в ряд (2 ряда по 3), крупные, отступы мелкие */
    #trust .grid-6 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    #trust .logo-box { height: auto; aspect-ratio: 1 / 1; padding: 4px; }
    .hero-content h1 { font-size: 32px; }

    /* 4) Мобильный порядок: заголовок → текст → кнопки → картинка → статистика */
    .hero-content { display: block; }
    /* Прячем десктопную внешнюю копию, показываем мобильную копию внутри .hero-content */
    .hero > .hero-visual { display: none !important; }
    .hero-content > .hero-visual { display: block !important; margin: 0 0 28px; }
    .main-product-card { max-width: 100%; }

    .notice-card {
    font-size: 15px;
    }

    /* 1) Шапка: все ссылки в одну строку, CTA компактнее (высота ~вдвое меньше) */
    .header-container { padding: 12px 4%; }
    .nav a { margin: 0 8px; font-size: 13px; }
    .header .btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 6px 14px;
        border-radius: 20px;
    }

    /* 2) Кнопки в hero: расстягиваем на всю ширину, правый край вровень с карточкой */
    .hero-actions { gap: 10px; margin-bottom: 28px; }
    .hero-actions .btn {
        flex: 1;
        white-space: nowrap;
        text-align: center;
        font-size: 13px;
        padding: 16px 14px;
        border-radius: 20px;
    }

    /* 3) Статистика: не 4 горизонтальные полосы, а сетка 2x2 из квадратов */
    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-card { flex: none; padding: 8px 12px; }
    .stat-card.stat-image { margin-left: 0; }
    .stat-value { font-size: 24px; }
    #trust .grid-3 { gap: 8px; }

    /* 5) Секции: компактнее по вертикали */
    .section { padding: 15px 5%; }
    #tasks { padding: 30px 5%; }
    /* #tasks: заголовок и текст по центру, отступ между колонками в 2 раза меньше */
    #tasks .two-columns { gap: 30px; }
    #tasks .column-left { text-align: center; }

    /* Карточки задач: компактнее, текст ближе к границам */
    .task-item { padding: 16px 16px 6px; }
    .task-content h3 { font-size: 20px; }
    .task-content p { font-size: 14px; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 32px; line-height: 1.2; }

    /* 6) Иконки маркетплейсов: влево, уменьшенные */
    .marketplaces-icons {
        display: flex;
        justify-content: left;
        align-items: center;
        margin-bottom: 8px;
    }
    .marketplaces-icons img {
        width: 30px;
        height: 30px;
    }

    /* 7) Карусель: меньше отступ до точек, стрелки вернуть */
    .carousel-controls-bottom {
        margin-top: 12px;
        gap: 16px;
    }
    .carousel-btn { display: flex; width: 36px; height: 36px; }
    .carousel-track { padding-bottom: 20px; }
    .post-carousel-cta { margin-top: 30px; }

    /* 8) Батт-экран */
    .cta-banner h2 { font-size: 25px; }
}

/* Сверхкомпактная шапка для маленьких экранов */
@media (max-width: 430px) {
    .header-container {
        padding: 10px 3%;
    }

    .nav a {
        margin: 0 5px;
        font-size: 12px;
    }

    .header .btn {
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 16px;
    }
}