/* ==========
   БАЗА
   ========== */

:root {
    --color-bg: #020617;
    --color-bg-alt: #030b1f;
    --color-surface: #0b1220;
    --color-surface-soft: #0f172a;
    --color-surface-light: #ffffff;

    --color-primary: #1d4ed8;
    --color-primary-soft: #2563eb;
    --color-accent: #38bdf8;
    --color-accent-soft: #7dd3fc;

    --color-text-main: #0f172a;
    --color-text-muted: #6b7280;
    --color-text-light: #e5e7eb;

    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 999px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

/* Убираем битый отступ внизу при мобильном меню */
body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

/* ==========
   СЕТКА И КОНТЕНТ
   ========== */

.container {
    width: 100%;
    max-width: 1440px;   /* шире холст */
    margin: 0 auto;
    padding: 0 24px;     /* чуть больше отступы по краям */
}

.section {
    padding: 80px 0;
}

.section--light {
    background-color: #f1f5f9;
}

.section--dark {
    background: radial-gradient(circle at top, #1d4ed8 0, #020617 40%, #020617 100%);
    color: var(--color-text-light);
}

.section--hero-ad {
    padding-top: 120px;
    padding-bottom: 64px;
    background: radial-gradient(circle at top, #1d4ed8 0, #020617 45%, #020617 100%);
    color: var(--color-text-light);
}

/* Заголовки секций */

.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__header--left {
    text-align: left;
}

.section__title {
    font-size: 40px;          /* было 32px */
    line-height: 1.15;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--color-text-main);
}

.section__title--light {
    color: #f9fafb;
}

.section__subtitle {
    max-width: 720px;         /* шире строка */
    margin: 0 auto;
    font-size: 20px;          /* было 16px */
    line-height: 1.6;
    color: var(--color-text-muted);
}

.section__subtitle--light {
    color: #cbd5f5;
}

.section__note {
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: left;
}

.section__note-source {
    font-weight: 600;
}

/* CTA внизу секций */

.section__cta {
    margin-top: 40px;
    text-align: center;
}

.section__cta-text {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--color-text-main);
}

/* ==========
   HEADER
   ========== */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e5eeff;
}

.header__logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 0, #38bdf8, #1d4ed8 55%, #0b1120 100%);
    font-weight: 800;
    font-size: 18px;
}

.header__logo-text {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Навигация */

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5f5;
    padding: 8px 10px;
    border-radius: 999px;
    position: relative;
    transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.header__nav-link::after {
    content: "";
    position: absolute;
    inset: auto 12px -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #38bdf8, #60a5fa);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header__nav-link:hover {
    color: #ffffff;
    background-color: rgba(148, 163, 184, 0.16);
    transform: translateY(-1px);
}

.header__nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.header__nav-link--active {
    color: #ffffff;
    background-color: rgba(59, 130, 246, 0.3);
}

/* ========== БУРГЕР-МЕНЮ ========== */

.header__burger {
    display: none; /* показываем только на мобилке в @media */
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    cursor: pointer;
    outline: none;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;    /* ВАЖНО: складываем линии в колонку */
    gap: 4px;                  /* расстояние между полосками */
}

/* на всякий случай убиваем любые старые псевдоэлементы */
.header__burger::before,
.header__burger::after {
    content: none !important;
}

.header__burger-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

/* состояние "крестик" */
.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}


/* ==========
   HERO (ГЛАВНАЯ)
   ========== */

.hero {
    position: relative;
    /* убрали min-height, чтобы секция подстраивалась под контент */
    padding-top: 96px;
    padding-bottom: 8px;  /* можно 0–16, на вкус, главное без огромного хвоста */
    color: #e5e7eb;
    overflow: hidden;
}


.hero__bg {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to bottom, rgba(15, 23, 42, 0.4), #020617 70%),
            url("images/hero-hockey.jpg") center/cover no-repeat;
    filter: saturate(1.2);
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 15% 0, rgba(56, 189, 248, 0.55) 0, transparent 36%),
            radial-gradient(circle at 85% 100%, rgba(37, 99, 235, 0.6) 0, transparent 38%),
            linear-gradient(to bottom, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.96));
    mix-blend-mode: soft-light;
    z-index: -1;
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

/* ==========
   HERO LIVE PHOTOS
   ========== */

.hero-live {
    position: relative;
    margin-top: 32px;
    padding: 24px 0 32px; /* было 72px */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.0), rgba(2, 6, 23, 1));
}
.hero-live__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-live__label {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
}

.hero-live__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
    padding: 14px 0;
}

/* затемняем края, как «маска» */
.hero-live__viewport::before,
.hero-live__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-live__viewport::before {
    left: 0;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.96), transparent);
}

.hero-live__viewport::after {
    right: 0;
    background: linear-gradient(to left, rgba(2, 6, 23, 0.96), transparent);
}

.hero-live__track {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: heroLiveScroll 35s linear infinite;
}

/* при наведении — пауза */
.hero-live__viewport:hover .hero-live__track {
    animation-play-state: paused;
}

.hero-live__item {
    flex: 0 0 auto;
    width: 320px;           /* было 240px */
    aspect-ratio: 16 / 9;   /* было 4 / 3 → лента стала выше и длиннее */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    transform: translateZ(0);
}

.hero-live__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-live__item:hover img {
    transform: scale(1.05);
}

@keyframes heroLiveScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* адаптив: на мобиле делаем поменьше и помедленнее */
@media (max-width: 768px) {
    .hero-live {
        margin-top: 24px;
        padding-bottom: 40px;
    }

    .hero-live__item {
        width: 200px;
        border-radius: 14px;
    }

    .hero-live__label {
        font-size: 12px;
    }

    .hero-live__track {
        animation-duration: 40s;
    }
}



.hero__text {
    max-width: 620px;
}

.hero__eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #a5b4fc;
    margin-bottom: 12px;
}

.hero__title {
    margin: 0 0 14px;
    font-size: 56px;          /* было 40px */
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero__subtitle {
    margin: 0 0 28px;
    font-size: 20px;          /* было 16px */
    line-height: 1.7;
    color: #cbd5f5;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;   /* чуть крупнее */
    color: #9ca3af;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.55);
}

/* Hero side cards */

.hero__side {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.hero-card {
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-soft);
}

.hero-card--primary {
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.32), rgba(15, 23, 42, 0.98));
}

.hero-card--secondary {
    background: radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.98));
}

.hero-card--outline {
    background: rgba(15, 23, 42, 0.85);
    border-style: dashed;
}

.hero-card__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #93c5fd;
    margin-bottom: 4px;
}

.hero-card__value {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-card__desc {
    font-size: 13px;
    color: #cbd5f5;
}

.hero-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(22, 163, 74, 0.9);
    color: #bbf7d0;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

/* ==========
   КНОПКИ
   ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px; 
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
    color: #f9fafb;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
}

.btn--outline {
    background: transparent;
    color: #0f172a;
    border-color: rgba(148, 163, 184, 0.8);
}

.btn--outline-light {
    color: #e5e7eb;
    border-color: rgba(229, 231, 235, 0.8);
    background: transparent;
}

.btn--outline-light:hover {
    background: rgba(249, 250, 251, 0.06);
    border-color: #e5e7eb;
}


.btn--outline:hover {
    background: rgba(148, 163, 184, 0.14);
}

.btn--ghost {
    background: rgba(15, 23, 42, 0.5);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.4);
}

.btn--ghost:hover {
    background: rgba(15, 23, 42, 0.75);
}

/* ==========
   О НАС / СТАТИСТИКА
   ========== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.stats-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    background: var(--color-surface-light);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.stat-card__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.stat-card__value {
    font-size: 28px;          /* было 22px */
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.stat-card__caption {
    font-size: 14px;
    color: var(--color-text-muted);
}

.stat-card__note {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* бейдж Топ-1 */

.about-extra {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    border: 1px solid rgba(37, 99, 235, 0.45);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
    margin-top: 8px;
}

.about-extra__badge {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.16);
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.about-extra__text {
    font-size: 13px;
    color: #e5e7eb;
}

/* ==========
   ЯДРО АУДИТОРИИ
   ========== */

.audience {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.audience__text {
    max-width: 640px;
}

.audience-highlights {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-highlights--on-dark .audience-highlights__label {
    color: #e5e7eb;
}

.audience-highlights__item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.audience-highlights__value {
    font-size: 28px;          /* было 24px */
    font-weight: 800;
    color: var(--color-accent-soft);
}

.audience-highlights__label {
    font-size: 14px;
    color: #cbd5f5;
}

/* Диаграмма */

.audience__chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.audience__chart-circle {
    width: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: conic-gradient(
            var(--color-accent) 0deg 216deg,
            rgba(148, 163, 184, 0.4) 216deg 360deg
    );
    position: relative;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.advertisers-audience__chart-circle {
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.7);
}

.audience__chart-center {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(circle at 15% 0, rgba(148, 163, 184, 0.4), rgba(15, 23, 42, 0.96));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
}

.audience__chart-main {
    font-size: 18px;
    font-weight: 700;
    color: #e5e7eb;
}

.audience__chart-label {
    font-size: 12px;
    color: #cbd5f5;
}

/* Легенда */

.audience__chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audience__chart-legend--on-dark .audience__legend-text {
    color: #e5e7eb;
}

.audience__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #e5e7eb;
}

.audience__legend-color {
    width: 14px;
    height: 14px;
    border-radius: 999px;
}

.audience__legend-color--male {
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.audience__legend-color--female {
    background: linear-gradient(135deg, #f97316, #fb7185);
}

.audience__legend-text {
    font-size: 13px;
}

/* ==========
   ФОРМАТЫ
   ========== */

.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.formats-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.section--dark .format-card {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
}

.format-card__title {
    margin: 0 0 10px;
    font-size: 20px;      /* было 17px */
    font-weight: 700;
}

.format-card__text {
    margin: 0 0 12px;
    font-size: 16px;      /* было 14px */
    color: var(--color-text-muted);
}

.section--dark .format-card__text {
    color: #cbd5f5;
}

.format-card__list {
    margin: 0;
    padding-left: 18px;
    font-size: 16px;      /* было 14px */
    color: var(--color-text-muted);
}

.section--dark .format-card__list {
    color: #cbd5f5;
}

.format-card__list li + li {
    margin-top: 4px;
}

/* ==========
   HERO ДЛЯ РЕКЛАМОДАТЕЛЕЙ
   ========== */

.advertisers-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.advertisers-hero__title {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 800;
}

.advertisers-hero__subtitle {
    margin: 0 0 20px;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5f5;
}

.advertisers-hero__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ==========
   АУДИТОРИЯ (СТР. РЕКЛАМЫ)
   ========== */

.advertisers-audience {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.advertisers-audience__infographic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ==========
   СОЦСЕТИ
   ========== */

.socials {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: center;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.social-card {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.55);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.65);
    border-color: rgba(56, 189, 248, 0.8);
}

.social-card__icon {
    flex-shrink: 0;              /* не даём иконке сжиматься в строке */
    width: 40px;
    height: 40px;
    border-radius: 50%;          /* идеальный круг */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    background: #e5e7eb;
}

.social-card__icon--tg {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.social-card__icon--vk {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.social-card__icon--yt {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.social-card__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.social-card__handle {
    font-size: 13px;
    color: #bfdbfe;
}

.social-card__desc {
    font-size: 12px;
    color: #9ca3af;
}

/* ==========
   КОНТАКТЫ + ФОРМЫ
   ========== */

.contacts {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
    gap: 32px;
    align-items: flex-start;
}

.contacts__grid {
    display: contents;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contacts__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
}

.contacts__label--light {
    color: #9ca3af;
}

.contacts__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.contacts__link--accent {
    color: #e5e7eb;
}

.contacts__link:hover {
    text-decoration: underline;
}

.contacts__note {
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.contacts__note--light {
    color: #cbd5f5;
}

/* ФОРМА */

.form {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.65);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.form--on-dark {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(148, 163, 184, 0.7);
}

.form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.form__label {
    font-size: 13px;
    color: var(--color-text-muted);
}

.form--on-dark .form__label {
    color: #e5e7eb;
}

.form__input {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: #f9fafb;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form--on-dark .form__input {
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
}

.form__input::placeholder {
    color: #9ca3af;
}

.form__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7);
    background-color: #ffffff;
}

.form--on-dark .form__input:focus {
    background: rgba(15, 23, 42, 0.9);
}

.form__input--textarea {
    resize: vertical;
    min-height: 96px;
}

.form__submit {
    margin-top: 6px;
    width: 100%;
}

.form__hint {
    margin-top: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.form__hint--light {
    color: #cbd5f5;
}

/* Ошибки форм */

.form__input.input--error {
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.7);
}

/* ==========
   ДОКУМЕНТЫ
   ========== */

.docs {
    max-width: 900px;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.doc-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

.doc-card--placeholder {
    opacity: 0.82;
    border-style: dashed;
}

.doc-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.doc-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.doc-card__tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
}

.doc-card__description {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--color-text-muted);
}

.doc-card__button {
    font-size: 13px;
}

.docs__hint {
    margin-top: 18px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.docs__link {
    color: var(--color-primary);
}

.docs__link:hover {
    text-decoration: underline;
}

/* ==========
   FOOTER
   ========== */

.footer {
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    background: #020617;
    color: #9ca3af;
    padding: 16px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
}

.footer__brand {
    font-weight: 600;
    color: #e5e7eb;
}

.footer__note {
    font-size: 12px;
    color: #9ca3af;
}

.footer__link {
    color: #bfdbfe;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__social {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #e5e7eb;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.footer__social:hover {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.9);
    transform: translateY(-1px);
}

/* ==========
   АДАПТИВ
   ========== */

@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }

    .advertisers-hero,
    .advertisers-audience {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .socials {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero__side {
        max-width: 380px;
    }

    .advertisers-hero,
    .advertisers-audience {
        grid-template-columns: minmax(0, 1fr);
    }

    .audience {
        grid-template-columns: minmax(0, 1fr);
    }

    .socials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid,
    .stats-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .formats-grid,
    .formats-grid--wide {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .header__burger {
        display: inline-flex;
    }

    .header__nav {
        position: fixed;
        inset: 72px 16px auto 16px;
        border-radius: 20px;
        background: rgba(15, 23, 42, 0.98);
        padding: 12px;
        box-shadow: 0 22px 45px rgba(15, 23, 42, 0.95);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-normal), transform var(--transition-normal);
    }

    .header__nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .header__nav-item {
        width: 100%;
    }

    .header__nav-link {
        display: block;
        width: 100%;
        padding: 10px 12px;
    }

    .header__nav.header__nav--open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        padding-top: 88px;
    }

    .section {
        padding: 64px 0;
    }

    .section__title {
        font-size: 26px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .socials-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form__row {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-card {
        border-radius: 18px;
    }

    .audience__chart-circle {
        width: 180px;
    }

    .stats-grid,
    .stats-grid--compact {
        grid-template-columns: minmax(0, 1fr);
    }

    .docs {
        padding-top: 8px;
    }
}
/* Более крупный масштаб на больших экранах */
@media (min-width: 1100px) {
    body {
        font-size: 17px; /* общий базовый размер текста */
    }

    .section__title {
        font-size: 36px; /* было 32px */
    }

    .hero__title {
        font-size: 46px; /* было 40px */
    }

    .hero__subtitle,
    .section__subtitle {
        font-size: 18px; /* было 16px */
    }

    .stat-card__value {
        font-size: 26px; /* было 22px */
    }

    .audience-highlights__value {
        font-size: 26px; /* было 24px */
    }

    .format-card__title {
        font-size: 18px; /* чуть крупнее */
    }

    .format-card__text,
    .format-card__list,
    .doc-card__description {
        font-size: 15px;
    }

    .hero__meta {
        font-size: 14px;
    }
}

/* Увеличенный масштаб для больших экранов (эффект ~150% зума) */
@media (min-width: 1280px) {
    /* ширина контента */
    .container {
        max-width: 1440px;       /* шире, как на 150% */
    }

    body {
        font-size: 18px;         /* базовый текст крупнее */
    }

    /* Заголовки */
    .hero__title {
        font-size: 56px;         /* было ~40–46 */
    }

    .section__title {
        font-size: 40px;
    }

    .hero__subtitle,
    .section__subtitle {
        font-size: 20px;
        max-width: 720px;
    }

    /* Статистика и цифры */
    .hero-card__value {
        font-size: 30px;
    }

    .stat-card__value {
        font-size: 28px;
    }

    .audience-highlights__value {
        font-size: 28px;
    }

    /* Кнопки в hero и по сайту */
    .btn {
        font-size: 15px;
        padding: 12px 22px;
    }

    .hero__meta {
        font-size: 14px;
    }

    /* Карточки форматов и соцсетей */
    .format-card__title {
        font-size: 20px;
    }

    .format-card__text,
    .format-card__list,
    .doc-card__description {
        font-size: 16px;
    }

    .social-card__name {
        font-size: 15px;
    }

    .social-card__desc {
        font-size: 13px;
    }

    /* Live-лента — тоже чуть крупнее */
    .hero-live__item {
        width: 360px;
    }
}

/* ФОРСИРУЕМ ОТОБРАЖЕНИЕ КОНТЕНТА НА МОБИЛЕ */
@media (max-width: 768px) {
    body,
    .page,
    .hero,
    .section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* на всякий случай убираем возможные высоты/переполнения */
    .hero {
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
}
