@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&family=Orbitron:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    --bg-card2: #1c2230;
    --accent: #e8a020;
    --accent2: #f0c040;
    --text-main: #e6edf3;
    --text-muted: #8b949e;
    --text-light: #c9d1d9;
    --border: #30363d;
    --header-bg: #0a0e14;
    --nav-link: #c9d1d9;
    --tag-bg: #21262d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent2); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
    background: var(--header-bg);
    border-bottom: 2px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(232,160,32,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #0d1117;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--accent);
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 28px; }

.main-nav a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--nav-link);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 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;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--header-bg);
    border-left: 2px solid var(--accent);
    z-index: 1050;
    padding: 80px 30px 30px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--nav-link);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
}

.mobile-menu-overlay.open { display: block; }

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s;
}

#page-loader.hidden { opacity: 0; pointer-events: none; }

.loader-ring {
    width: 52px;
    height: 52px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0a0e14 0%, #111827 60%, #1a1f2e 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--accent); }

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #0d1117;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--accent2);
    color: #0d1117;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-badge {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-badge-text strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
}

.hero-badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-card); }

.section-header { margin-bottom: 44px; }

.section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.section-title span { color: var(--accent); }

/* ===== ARTICLE CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(232,160,32,0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.card-tag {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: auto;
}

.card-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-link:hover { color: var(--accent2); }

/* ===== FEATURED ARTICLE ===== */
.featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}

.featured-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.featured-card:hover { border-color: var(--accent); }

.featured-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.featured-body { padding: 28px; }

.featured-body .card-tag { margin-bottom: 14px; }

.featured-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.3;
}

.featured-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.side-articles { display: flex; flex-direction: column; gap: 16px; }

.side-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    gap: 14px;
    padding: 14px;
    transition: border-color 0.2s;
    text-decoration: none;
}

.side-card:hover { border-color: var(--accent); }

.side-card img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.side-card-body { flex: 1; }

.side-card-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
}

.side-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

/* ===== BRANDS SECTION ===== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.brand-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.brand-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.brand-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ===== INFO BOX ===== */
.info-box {
    background: var(--bg-card2);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.info-box p { color: var(--text-light); margin: 0; }

/* ===== ARTICLE PAGE ===== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.article-content { min-width: 0; }

.article-header { margin-bottom: 32px; }

.article-header .card-tag { margin-bottom: 16px; }

.article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-hero-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.article-body h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.article-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin: 24px 0 10px;
}

.article-body p { color: var(--text-light); margin-bottom: 18px; }

.article-body ul, .article-body ol {
    color: var(--text-light);
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-body li { margin-bottom: 8px; }

.article-body a { color: var(--accent); }
.article-body a:hover { color: var(--accent2); }

.article-body strong { color: var(--text-main); }

.article-img {
    width: 100%;
    border-radius: 8px;
    margin: 24px 0;
    border: 1px solid var(--border);
}

.article-img-caption {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: -16px;
    margin-bottom: 24px;
}

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 90px; }

.sidebar-widget {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-links { list-style: none; }

.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
    display: block;
    padding: 10px 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--accent); }

.code-list { list-style: none; }

.code-list li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.code-list li:last-child { border-bottom: none; }

.code-badge {
    background: var(--tag-bg);
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 1px;
}

.code-desc { color: var(--text-muted); }

/* ===== TABLE ===== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.data-table th {
    background: var(--tag-bg);
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--accent);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.data-table tr:hover td { background: rgba(232,160,32,0.04); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-block {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
}

.contact-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--tag-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 3px;
}

.contact-item-text span, .contact-item-text a {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== POLICY PAGE ===== */
.policy-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.policy-content p, .policy-content li {
    color: var(--text-light);
    margin-bottom: 14px;
}

.policy-content ul { padding-left: 22px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--header-bg);
    border-top: 2px solid var(--border);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-name { font-size: 16px; margin-bottom: 12px; display: block; }

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy { font-size: 12px; color: var(--text-muted); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a { font-size: 12px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--accent); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--accent);
    padding: 18px 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
    transform: translateY(0);
    transition: transform 0.3s;
}

#cookie-banner.hidden { transform: translateY(110%); }

.cookie-text { font-size: 13px; color: var(--text-light); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--accent); }

.cookie-btns { display: flex; gap: 12px; }

.btn-cookie-accept {
    background: var(--accent);
    color: #0d1117;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 22px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-accept:hover { background: var(--accent2); }

.btn-cookie-reject {
    background: transparent;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 22px;
    border: 1px solid var(--border);
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-cookie-reject:hover { border-color: var(--text-muted); color: var(--text-main); }

/* ===== PAGE HEADER ===== */
.page-hero {
    background: linear-gradient(135deg, #0a0e14 0%, #111827 100%);
    padding: 50px 0 40px;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-hero p { color: var(--text-muted); font-size: 1rem; }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.about-text p { color: var(--text-light); margin-bottom: 16px; }

.feature-list { list-style: none; margin-top: 20px; }

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .mobile-menu { display: block; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero h1 { font-size: 1.8rem; }

    .cards-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .article-title { font-size: 1.5rem; }
    .section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 1.5rem; }
    .stats-inner { gap: 16px; }
    .stat-num { font-size: 1.3rem; }
    .brands-grid { grid-template-columns: 1fr 1fr; }
    .cookie-btns { width: 100%; }
    .btn-cookie-accept, .btn-cookie-reject { flex: 1; text-align: center; }
}
