/* ================================================
   Mobile-First CSS — НовиниUA
   Base = Android phones (360-480px)
   Progressive enhancement upward
   ================================================ */
:root {
    --color-primary: #c62828;
    --color-primary-dark: #a41e1e;
    --color-primary-light: #ef5350;
    --color-primary-bg: #fce4ec;

    --color-accent: #FFD700;
    --color-accent-dark: #E6C200;
    --color-accent-bg: #FFFDE7;

    --color-blue: #1565c0;
    --color-green: #2E7D32;
    --color-amber: #F9A825;

    --color-text: #1A1A2E;
    --color-text-secondary: #4a5568;
    --color-text-light: #94a3b8;

    --color-bg: #FFFFFF;
    --color-bg-gray: #F5F7FA;
    --color-bg-dark: #111827;
    --color-border: #e2e8f0;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 32px rgba(0,0,0,0.14);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-h: 52px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
    overscroll-behavior: none;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(198,40,40,0.06);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ================================================
   Layout
   ================================================ */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.section { padding: 44px 0; }
.section--gray { background: var(--color-bg-gray); }
.section--dark { background: var(--color-bg-dark); color: #e0e0e0; }
.section--dark .section__title { color: #fff; }
.section--dark .section__subtitle { color: #9ca3af; }

.section__header {
    text-align: center;
    margin: 0 auto 28px;
}

.section__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-primary-bg);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    border-left: 3px solid var(--color-primary);
}

.section__badge--red {
    background: rgba(198,40,40,0.15);
    color: #ef5350;
    border-left-color: #ef5350;
}

.section__title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.section__subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* ================================================
   Buttons — 48px+ touch targets
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.1s, background 0.15s;
    white-space: nowrap;
    min-height: 50px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:active { background: var(--color-primary-dark); transform: scale(0.97); }

.btn--accent { background: var(--color-accent); color: var(--color-text); border-color: var(--color-accent); font-weight: 700; }
.btn--accent:active { background: var(--color-accent-dark); transform: scale(0.97); }

.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--outline:active { background: var(--color-primary-bg); }

.btn--lg {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
    width: 100%;
    min-height: 54px;
}

.btn--sm { padding: 10px 18px; font-size: 14px; min-height: 44px; }

/* ================================================
   Header — compact mobile
   ================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.header--scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.header__logo-icon svg { width: 28px; height: 28px; }
.header__logo-text { letter-spacing: -0.3px; }

.header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 260px;
    height: 100vh; height: 100dvh;
    background: #fff;
    padding: 60px 16px 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.header__nav.open { right: 0; }

.header__nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-primary);
}

.header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header__nav-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    min-height: 50px;
}

.header__nav-link:active,
.header__nav-link--active {
    color: var(--color-primary);
    background: var(--color-primary-bg);
}

.header__cta { display: none; }

.header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.header__burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   Breaking News
   ================================================ */
.breaking {
    margin-top: var(--header-h);
    background: var(--color-primary);
    color: #fff;
    padding: 9px 0;
    font-size: 13px;
}

.breaking .container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.breaking__tag {
    background: #fff;
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
    margin-top: 2px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.breaking__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================================
   Hero — mobile (no image, content first)
   ================================================ */
.hero {
    padding: 18px 0 32px;
    background: linear-gradient(175deg, #fce4ec 0%, #fff 50%, var(--color-bg-gray) 100%);
}

.hero__inner {
    display: flex;
    flex-direction: column;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.hero__date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero__date svg { width: 12px; height: 12px; }

.hero__category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-primary);
    background: var(--color-primary-bg);
    padding: 3px 9px;
    border-radius: 100px;
}

.hero__title {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.hero__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.hero__stats {
    display: flex;
    justify-content: space-between;
    padding: 18px 0 0;
    border-top: 1px solid var(--color-border);
}

.hero__stat { text-align: center; flex: 1; }

.hero__stat-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 3px;
}

.hero__stat-label {
    font-size: 9px;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Hide image on mobile */
.hero__illustration { display: none; }

.hero__satellite {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a0f0a;
    border: 1px solid #374151;
}

.hero__satellite-img {
    width: 100%;
    line-height: 0;
}

.hero__satellite-img svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero__satellite-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #111;
    border-top: 1px solid #2a2a2a;
}

.hero__satellite-caption span {
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
}

.hero__satellite-caption small {
    font-size: 10px;
    color: #666;
}

/* ================================================
   Article Body — stacked, sidebar first
   ================================================ */
.article-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-body__sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: -1;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 52px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline__item {
    position: relative;
    padding-bottom: 24px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 4px;
    width: 10px; height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-primary-bg);
    z-index: 1;
}

.timeline__time {
    position: absolute;
    left: -52px;
    top: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    font-variant-numeric: tabular-nums;
}

.timeline__content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline__content p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* Quote */
.article-quote {
    border-left: 3px solid var(--color-primary);
    background: var(--color-primary-bg);
    padding: 16px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 20px;
}

.article-quote blockquote {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 6px;
}

.article-quote cite {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-style: normal;
    font-weight: 600;
}

/* Sidebar cards */
.sidebar-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.sidebar-card--dark {
    background: var(--color-bg-dark);
    border-color: #374151;
    color: #e0e0e0;
}

.sidebar-card--dark p { color: #9ca3af; }
.sidebar-card--dark h4 { color: #fff; }

.sidebar-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.sidebar-card ul li {
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.45;
}

.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-card ul li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 6px;
}

.sidebar-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ================================================
   Victims
   ================================================ */
.victims {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.victims__card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.victims__card:active { background: rgba(255,255,255,0.1); }

.victims__icon {
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: #9ca3af;
    flex-shrink: 0;
}

.victims__icon svg { width: 16px; height: 16px; }

.victims__name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
}

.victims__info {
    font-size: 11px;
    color: #9ca3af;
}

.victims__note {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 20px;
    font-style: italic;
}

/* ================================================
   Forum
   ================================================ */
.forum__threads {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forum__post {
    display: flex;
    gap: 10px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px;
}

.forum__post:active { background: var(--color-bg-gray); }

.forum__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-primary-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.forum__body { flex: 1; min-width: 0; }

.forum__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.forum__author {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
}

.forum__time {
    font-size: 10px;
    color: var(--color-text-light);
}

.forum__text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: 7px;
}

.forum__reactions { display: flex; gap: 12px; }

.forum__reaction {
    font-size: 12px;
    color: var(--color-text-light);
}

.forum__cta {
    text-align: center;
    margin-top: 24px;
    padding: 22px 14px;
    background: var(--color-bg-gray);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
}

.forum__cta p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.45;
}

/* ================================================
   App download
   ================================================ */
.app__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.app__content { order: 2; }
.app__visual { order: 1; display: flex; justify-content: center; }

.app__title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    margin: 10px 0;
}

.app__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.app__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.app__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.app__features li svg {
    color: var(--color-green);
    flex-shrink: 0;
    width: 18px; height: 18px;
}

.app__gp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-text);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    width: 100%;
    min-height: 58px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: transform 0.1s;
}

.app__gp-btn:active {
    transform: scale(0.97);
    background: #000;
    border-color: var(--color-accent);
}

.app__gp-btn small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 2px;
}

.app__gp-btn strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

/* Phone mockup */
.app__phone {
    width: 200px;
    background: var(--color-text);
    border-radius: 26px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.app__phone-screen {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 16px;
}

.app__phone-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 8px 14px 10px;
}

.app__phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 600;
}

.app__phone-icons { display: flex; gap: 3px; }
.app__phone-icons svg { opacity: 0.9; width: 12px; height: 12px; }

.app__phone-content { padding: 12px 10px; }

.app__phone-logo {
    width: 30px; height: 30px;
    background: var(--color-primary);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.app__phone-logo svg { width: 14px; height: 14px; }

.app__phone-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.app__phone-card-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    margin-bottom: 5px;
}

.app__phone-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app__phone-dot--red { background: var(--color-primary); }
.app__phone-dot--blue { background: var(--color-blue); }
.app__phone-dot--amber { background: var(--color-amber); }

.app__phone-label { font-size: 11px; font-weight: 600; color: var(--color-text); line-height: 1.2; }
.app__phone-sublabel { font-size: 9px; color: var(--color-text-light); }

/* ================================================
   Security Notice
   ================================================ */
.security-notice {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2a3d 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.security-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    opacity: 0.7;
}

.security-notice__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #00ff88;
}

.security-notice__header svg {
    flex-shrink: 0;
}

.security-notice__header span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.security-notice__text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.security-notice__text strong {
    color: #fff;
    font-weight: 600;
}

.security-notice__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.security-notice__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.security-notice__badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Phone PIN mockup */
.app__phone-pin {
    margin-top: 8px;
    background: linear-gradient(135deg, #0d1b2a, #1b2a3d);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 7px;
    padding: 10px 8px;
    text-align: center;
}

.app__phone-pin-icon {
    margin-bottom: 4px;
}

.app__phone-pin-label {
    font-size: 9px;
    font-weight: 600;
    color: #00ff88;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.app__phone-pin-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.app__phone-pin-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 255, 136, 0.5);
    background: transparent;
}

.app__phone-pin-dots span:first-child,
.app__phone-pin-dots span:nth-child(2) {
    background: #00ff88;
    border-color: #00ff88;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--color-text);
    color: rgba(255,255,255,0.65);
    padding: 32px 0 0;
    border-top: 3px solid var(--color-primary);
}

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .header__logo-text { color: #fff; }

.footer__brand-text {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
}

.footer__links { display: flex; gap: 32px; }

.footer__col-title {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer__col ul li { margin-bottom: 6px; }

.footer__col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: block;
    padding: 4px 0;
    min-height: 28px;
    line-height: 28px;
}

.footer__col ul li a:active { color: #fff; }

.footer__bottom {
    padding: 14px 0;
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

/* ================================================
   Overlays & animations
   ================================================ */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active { display: block; opacity: 1; }

.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Android touch */
@supports (padding-top: env(safe-area-inset-top)) {
    .header { padding-top: env(safe-area-inset-top); }
    .footer__bottom { padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
}

/* =========================================
   TABLET (600px+)
   ========================================= */
@media (min-width: 600px) {
    .container { padding: 0 24px; }
    .section { padding: 56px 0; }
    .section__title { font-size: 26px; }
    .section__header { margin-bottom: 36px; }

    .hero__title { font-size: 28px; }
    .hero__stats { justify-content: flex-start; gap: 32px; }
    .hero__stat-value { font-size: 30px; }
    .hero__stat-label { font-size: 10px; }

    .hero__actions { flex-direction: row; }
    .btn--lg { width: auto; padding: 14px 32px; }
    .hero__actions .btn--lg { width: auto; }

    .victims {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .forum__threads { max-width: 640px; margin: 0 auto; }
    .forum__post { padding: 16px; gap: 12px; }
    .forum__avatar { width: 40px; height: 40px; font-size: 13px; }
    .forum__author { font-size: 14px; }
    .forum__text { font-size: 14px; }

    .article-body__sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .app__phone { width: 230px; }
    .app__title { font-size: 24px; }
}

/* =========================================
   DESKTOP (1024px+) — secondary priority
   ========================================= */
@media (min-width: 1024px) {
    :root { --header-h: 64px; }

    .container { max-width: 1200px; padding: 0 32px; }
    .section { padding: 72px 0; }
    .section__header { max-width: 640px; margin-bottom: 48px; }
    .section__title { font-size: 30px; }
    .section__subtitle { font-size: 16px; }

    .header__logo { font-size: 18px; }
    .header__logo-icon svg { width: 32px; height: 32px; }

    .header__nav {
        position: static;
        width: auto; height: auto;
        background: transparent;
        padding: 0; box-shadow: none;
        overflow: visible;
    }
    .header__nav::before { display: none; }
    .header__nav-list { flex-direction: row; gap: 4px; }
    .header__nav-link { font-size: 14px; padding: 8px 14px; min-height: auto; }
    .header__cta { display: inline-flex; font-size: 14px; padding: 8px 20px; min-height: auto; }
    .header__burger { display: none; }
    .mobile-overlay { display: none !important; }

    .breaking__text {
        font-size: 14px;
        white-space: nowrap;
        display: block;
        -webkit-line-clamp: unset;
    }
    .breaking__tag { font-size: 11px; margin-top: 0; }

    .hero { padding: 28px 0 56px; }
    .hero__inner {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
        align-items: start;
    }
    .hero__title { font-size: 36px; }
    .hero__text { font-size: 16px; }
    .hero__illustration {
        display: block;
        position: sticky;
        top: calc(var(--header-h) + 24px);
    }

    .article-body {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 36px;
    }
    .article-body__sidebar {
        position: sticky;
        top: calc(var(--header-h) + 24px);
        display: flex;
        flex-direction: column;
        gap: 14px;
        order: 0;
    }

    .timeline { padding-left: 80px; }
    .timeline::before { left: 56px; }
    .timeline__time { left: -80px; font-size: 14px; }
    .timeline__content h3 { font-size: 17px; }
    .timeline__content p { font-size: 15px; }

    .victims { max-width: 800px; margin: 0 auto; }

    .forum__threads { max-width: 760px; }
    .forum__post { padding: 20px 24px; gap: 16px; }
    .forum__avatar { width: 44px; height: 44px; font-size: 14px; }
    .forum__text { font-size: 15px; }

    .app__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
    .app__content { order: 1; }
    .app__visual { order: 2; }
    .app__title { font-size: 30px; }
    .app__text { font-size: 15px; }
    .app__gp-btn { width: auto; display: inline-flex; }
    .app__phone { width: 260px; }

    .footer__top { flex-direction: row; justify-content: space-between; gap: 48px; }
    .footer__brand { max-width: 320px; }
    .footer__links { gap: 64px; }

    /* Desktop hover */
    .btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn--accent:hover { background: var(--color-accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn--outline:hover { border-color: var(--color-primary); background: var(--color-primary-bg); }
    .forum__post:hover { box-shadow: var(--shadow-sm); }
    .victims__card:hover { background: rgba(255,255,255,0.08); }
    .app__gp-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); background: #000; }
    .header__nav-link:hover { color: var(--color-primary); background: var(--color-primary-bg); }
    .footer__col ul li a:hover { color: #fff; }
}
