﻿@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Merriweather:ital,wght@0,300;0,700;1,300&family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2D4A8A;
    --primary-dark: #1a2f5e;
    --accent: #F5A623;
    --accent-light: #FDD87C;
    --bg: #F4F6FB;
    --bg-card: #FFFFFF;
    --text: #1C2340;
    --text-muted: #6B7280;
    --border: #E2E8F0;
    --gradient: linear-gradient(135deg, #2D4A8A 0%, #1a6ba6 50%, #0f8fa0 100%);
    --shadow: 0 4px 20px rgba(45, 74, 138, 0.12);
    --shadow-lg: 0 12px 40px rgba(45, 74, 138, 0.18);
    --radius: 14px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    background: var(--gradient);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(45, 74, 138, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    letter-spacing: -0.3px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    display: block;
    line-height: 1;
    margin-top: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.18);
    color: white;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    background: var(--primary-dark);
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.9);
    padding: 11px 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hero {
    background: var(--gradient);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(245,166,35,0.08);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    background: rgba(245,166,35,0.25);
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-outline {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-bar {
    background: white;
    box-shadow: var(--shadow);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.83rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

section {
    padding: 72px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-body {
    padding: 22px 24px;
}

.card-tag {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    background: rgba(45, 74, 138, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.card-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    color: var(--accent);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-card.featured {
    border: 2px solid var(--primary);
}

.platform-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
}

.platform-logo {
    width: 140px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 18px;
}

.platform-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.platform-tagline {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    margin-bottom: 20px;
}

.platform-features li {
    font-size: 0.88rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.platform-features li:last-child {
    border-bottom: none;
}

.feat-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
}

.rating-val {
    font-weight: 700;
    font-size: 0.95rem;
}

.rating-cnt {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.tips-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 52px;
    align-items: start;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tip-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 20px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(45,74,138,0.06);
}

.tip-num {
    width: 38px;
    height: 38px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tip-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.tips-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tips-img-wrap img {
    width: 100%;
    object-fit: cover;
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.article-main-img {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    gap: 14px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(45,74,138,0.05);
    transition: transform 0.2s;
}

.article-mini:hover {
    transform: translateX(4px);
}

.article-mini img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.article-mini-body h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 5px;
    color: var(--text);
}

.article-mini-body span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    align-items: start;
}

.article-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-content img {
    width: 100%;
    border-radius: var(--radius);
    margin: 28px 0;
    box-shadow: var(--shadow);
}

.article-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 36px 0 14px;
}

.article-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 10px;
}

.article-content p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 14px 20px;
    margin: 24px 0;
    background: rgba(45,74,138,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.widget-link-list {
    list-style: none;
}

.widget-link-list li {
    border-bottom: 1px solid var(--border);
}

.widget-link-list li:last-child {
    border-bottom: none;
}

.widget-link-list a {
    display: block;
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--text);
    transition: color 0.2s, padding-left 0.2s;
}

.widget-link-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.page-hero {
    background: var(--gradient);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.contact-info-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-info-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-box p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(45,74,138,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-detail-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.contact-detail-val {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.info-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.info-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.policy-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-content ul {
    padding-left: 22px;
    margin-bottom: 14px;
}

.policy-content li {
    color: var(--text-muted);
    margin-bottom: 7px;
    line-height: 1.7;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 0.92rem;
}

.comparison-table thead {
    background: var(--gradient);
    color: white;
}

.comparison-table th {
    padding: 16px 18px;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: rgba(45,74,138,0.03);
}

.check-yes { color: #16a34a; font-weight: 700; }
.check-no { color: #dc2626; font-weight: 700; }
.check-partial { color: #d97706; font-weight: 700; }

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 18px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    min-width: 240px;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: var(--accent-light);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
    color: rgba(255,255,255,0.6);
}

.footer-col h4 {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom a {
    color: rgba(255,255,255,0.55);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

.highlight-box {
    background: rgba(45,74,138,0.07);
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.highlight-box p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-img-wrap { max-width: 500px; }
    .platform-grid { grid-template-columns: 1fr 1fr; }
    .card-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tips-layout { grid-template-columns: 1fr; }
    .tips-img-wrap { display: none; }
    .article-layout { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .hero { padding: 52px 0 44px; }
    .hero h1 { font-size: 1.9rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
    .stat-item:nth-child(2n) { border-right: none; }
    .card-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .card-grid-2 { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .article-mini { flex-direction: column; }
    .article-mini img { width: 100%; height: 140px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-btns { flex-direction: column; }
    .btn { justify-content: center; }
}
