        :root {
            --bg-page: #121212;
            /* Темный фоновый цвет страницы */
            --text-main: #ebebeb;
            /* Основной белый цвет для текста (чуть темнее) */
            --text-secondary: #c2c2c2;
            /* Вспомогательный серый цвет для описаний (чуть светлее) */
            --accent-color: #f7941d;
            /* Главный оранжевый цвет для акцентов (логотип, кнопки) */
            --accent-hover: #e08316;
            /* Цвет кнопки при наведении на нее курсора */
            --color-black: #000000;
            /* Истинный черный цвет */

            /* Настройки шрифтов */
            --font-headings: 'Arial Black', 'Helvetica Bold', sans-serif;
            --font-base: 'Arial', sans-serif;
            --btn-radius: 4px;
            /* Радиус скругления углов у кнопки */
            --drop-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            /* Объемная тень под элементами */
        }

        /* Сброс стандартных отступов браузеров */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Базовые параметры экрана: фиксируем высоту и отключаем прокрутку */
        body,
        html {
            height: 100%;
            font-family: var(--font-base);
            background-color: var(--bg-page);
            color: var(--text-main);
            overflow: hidden;
            /* Запрещает появление полос прокрутки (держит один экран) */
            -webkit-font-smoothing: antialiased;
            /* Делает шрифты гладкими на экранах Apple */
        }

        /* Главный контейнер-обертка всей страницы */
        .page-wrapper {
            display: flex;
            flex-direction: column;
            /* Элементы внутри выстраиваются вертикально */
            justify-content: space-between;
            /* Расталкивает шапку наверх, а контент вниз */
            height: 100vh;
            padding: 40px 80px;
            max-width: 1440px;
            margin: 0 auto;
            /* Центрирует сайт по центру монитора */
            position: relative;

            /* Фоновое изображение */
            background-image: url('bg.jpg');
            background-size: cover;
            /* Растягивает картинку без искажений */
            background-position: 65% center;
            /* Смещает картинку, чтобы люди оставались справа */
            background-repeat: no-repeat;
        }

        /* Затемнение поверх фонового рисунка на компьютерах (плавный градиент слева направо) */
        .page-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.5) 50%, rgba(18, 18, 18, 0.2) 100%);
            z-index: 1;
            /* Помещает слой над картинкой, но под текстом */
        }

        /* Шапка сайта (логотипы и телефоны) */
        header {
            display: flex;
            justify-content: space-between;
            /* Название слева, телефоны справа */
            align-items: center;
            width: 100%;
            height: 60px;
            position: relative;
            z-index: 2;
            /* Поднимает элементы над затемняющим фоном */
        }

        /* Группа логотипов */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            font-family: var(--font-headings);
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--accent-color);
        }

        /* Разделительная вертикальная линия между брендами */
        .logo-separator {
            width: 1px;
            height: 24px;
            background-color: #404040;
        }

        .logo.ozempic {
            color: #ffffff;
            opacity: 0.9;
        }

        /* Блок с номерами телефонов */
        .contacts {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
        }

        .phone-link {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            text-decoration: none;
            transition: color 0.2s ease;
            /* Плавная смена цвета при наведении */
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .phone-link:hover {
            color: var(--accent-color);
        }

        /* Центральная область страницы */
        main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-grow: 1;
            /* Занимает всё свободное место по высоте */
            gap: 60px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* Левая колонка с текстом */
        .info-column {
            flex: 1 1 auto;
            /* Занимает всё доступное место */
        }

        h1 {
            font-family: var(--font-headings);
            font-size: 72px;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            color: var(--text-main);
            letter-spacing: -1px;
            white-space: nowrap;
        }

        .subtitle {
            font-size: 42px;
            font-weight: 400;
            line-height: 1.5;
            color: var(--text-secondary);
        }

        .subtitle strong {
            font-weight: 700;
            color: var(--text-main);
        }

        /* Правая колонка с кнопкой и соцсетями */
        .action-column {
            flex: 0 0 320px;
            /* Фиксированная ширина под размер кнопки */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Главная кнопка */
        .btn-main {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            width: 320px;
            height: 56px;
            background-color: var(--accent-color);
            color: var(--text-main);
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: var(--btn-radius);
            box-shadow: var(--drop-shadow);
            transition: background-color 0.15s ease;
            margin-bottom: 32px;
        }

        .btn-main:hover {
            background-color: var(--accent-hover);
        }

        /* Блок мессенджеров */
        .messenger-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            width: 320px;
        }

        .messenger-label {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            text-align: center;
        }

        /* Контейнер для круглых кнопок соцсетей */
        .social-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* Круглая кнопка под иконку */
        .icon-link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .icon-link img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .icon-link:hover {
            transform: scale(1.05);
        }

        /* ==========================================================================
           СТИЛИ ДЛЯ ПЛАНШЕТОВ И СРЕДНИХ ЭКРАНОВ (ОТ 481px ДО 1024px)
           ========================================================================== */
        @media (max-width: 1024px) {
            .page-wrapper {
                padding: 40px 32px;
                background-position: 68% center;
                /* Смещаем фон левее, чтобы центр был между персонажами */
            }

            /* Легкое прозрачное затемнение 35% */
            .page-wrapper::before {
                background: rgba(14, 14, 14, 0.35);
            }

            h1 {
                font-size: 34px;
            }

            .subtitle {
                font-size: 18px;
            }
        }

        /* ==========================================================================
           СТИЛИ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ И ПЛАНШЕТОВ (ЭКРАНЫ ДО 768 ПИКСЕЛЕЙ)
           ========================================================================== */
        @media (max-width: 768px) {

            body,
            html {
                overflow-y: auto;
                height: auto;
            }

            .page-wrapper {
                height: auto;
                min-height: 100vh;
                padding: 24px 16px;
                background-position: 68% center;
            }

            /* Легкое мобильное затемнение */
            .page-wrapper::before {
                background: rgba(14, 14, 14, 0.35);
            }

            /* Перестроение шапки на смартфонах */
            header {
                height: auto;
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .logo-container {
                gap: 12px;
            }

            .logo {
                font-size: 20px;
            }

            .logo-separator {
                height: 16px;
            }

            .contacts {
                flex-direction: column;
                align-items: center;
                gap: 8px;
                width: 100%;
            }

            .contacts .logo-separator {
                display: none;
            }

            .phone-link {
                font-size: 13px;
                font-weight: 600;
                white-space: nowrap;
            }

            /* Контент выстраивается вертикально */
            main {
                flex-direction: column;
                justify-content: center;
                padding-top: 180px;
                gap: 24px;
                text-align: left;
            }

            .info-column,
            .action-column {
                flex: none;
                width: 100%;
            }

            .action-column {
                margin-top: 40px;
                margin-bottom: 20px;
            }

            h1 {
                font-size: 34px;
                line-height: 1.2;
                margin-bottom: 12px;
                white-space: normal;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            }

            .subtitle {
                font-size: 20px;
                padding: 0;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            }

            .btn-main {
                width: 100%;
                /* Кнопка во всю ширину экрана смартфона */
                max-width: 320px;
                height: 54px;
                font-size: 16px;
                margin-bottom: 22px;
            }

            .messenger-block {
                width: 100%;
            }

            .messenger-label {
                font-size: 12px;
            }

            .icon-link {
                width: 40px;
                height: 40px;
            }
        }