:root {
    --bg-primary: #141a1f;
    --bg-secondary: #1c2530;
    --bg-tertiary: #243040;
    --bg-card: #1e2a38;
    --text-primary: #e8edf2;
    --text-secondary: #9aacbc;
    --text-muted: #5a7080;
    --accent: #e07b39;
    --accent-hover: #f08c4a;
    --accent-muted: rgba(224, 123, 57, 0.12);
    --accent-border: rgba(224, 123, 57, 0.3);
    --border: #2a3a4a;
    --border-light: #1e2e3e;
    --success: #4a9a6a;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 28px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-ring {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 26, 31, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 8px;
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-muted);
    color: var(--accent);
    padding-left: 26px;
}
.hero {
    padding: 80px 0 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-muted) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-label {
    display: inline-block;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Source Code Pro', monospace;
}
.intro-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.intro-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.intro-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.intro-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1rem;
}
.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.stat-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.articles-section {
    padding: 80px 0;
}
.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 40px;
}
.articles-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}
.articles-secondary {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.article-card {
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.article-image {
    position: relative;
    overflow: hidden;
}
.article-featured .article-image {
    height: 260px;
}
.articles-secondary .article-image {
    height: 150px;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-image img {
    transform: scale(1.04);
}
.article-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Source Code Pro', monospace;
}
.article-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}
.article-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 14px;
    flex-grow: 1;
}
.article-content .article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Source Code Pro', monospace;
}
.article-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    margin-top: auto;
}
.article-link:hover {
    color: var(--accent-hover);
}
.tips-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tip-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    transition: border-color 0.2s ease;
}
.tip-card:hover {
    border-color: var(--accent-border);
}
.tip-icon {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 14px;
    line-height: 1;
}
.tip-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.tip-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}
.about-preview {
    padding: 80px 0;
}
.about-preview-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-preview-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}
.about-preview-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}
.about-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--accent-border);
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-top: 8px;
}
.about-link:hover {
    background: var(--accent-muted);
    border-color: var(--accent);
}
.about-preview-links h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}
.about-preview-links ul {
    list-style: none;
}
.about-preview-links li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.about-preview-links li:last-child {
    border-bottom: none;
}
.about-preview-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.about-preview-links a:hover {
    color: var(--accent);
}
.article-page {
    padding-bottom: 80px;
}
.article-header {
    padding: 56px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}
.back-link:hover {
    color: var(--accent);
}
.article-category {
    display: inline-block;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.article-header h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}
.article-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.article-meta {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'Source Code Pro', monospace;
    flex-wrap: wrap;
}
.article-hero {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
}
.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-top: -36px;
    box-shadow: var(--shadow);
    display: block;
}
.image-credit-full {
    display: block;
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: 'Source Code Pro', monospace;
    margin-top: 6px;
}
.article-body {
    padding: 48px 0;
}
.article-body h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 44px;
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}
.article-body h2:first-of-type {
    margin-top: 0;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1rem;
}
.article-body ul,
.article-body ol {
    margin: 18px 0 18px 24px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 8px;
    font-size: 1rem;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.article-body a:hover {
    text-decoration: underline;
}
.article-body strong {
    color: var(--text-primary);
    font-weight: 700;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}
.tool-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}
.tool-item h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}
.tool-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.article-footer-nav {
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.article-footer-nav p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.article-footer-nav a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.article-footer-nav a:hover {
    text-decoration: underline;
}
.about-page,
.contact-page,
.policy-page {
    padding: 64px 0 80px;
}
.page-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: 'Source Code Pro', monospace;
}
.about-text h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 14px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 1rem;
}
.about-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.about-text ul {
    margin: 14px 0 14px 24px;
    color: var(--text-secondary);
}
.about-text li {
    margin-bottom: 8px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-block h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.contact-info-block h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 10px;
}
.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.97rem;
}
.contact-info-block ul {
    margin: 10px 0 10px 20px;
    color: var(--text-secondary);
}
.contact-info-block li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.contact-details-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0 28px;
}
.contact-detail-row {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.contact-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 110px;
    padding-top: 2px;
}
.contact-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}
.contact-value a {
    color: var(--accent);
    text-decoration: none;
}
.contact-value a:hover {
    text-decoration: underline;
}
.contact-resources h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.contact-resources p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.resources-list {
    list-style: none;
}
.resources-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.resources-list li:last-child {
    border-bottom: none;
}
.resources-list a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.resources-list a:hover {
    color: var(--accent-hover);
}
.resources-list span {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.policy-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 14px;
}
.policy-content h2:first-child {
    margin-top: 0;
}
.policy-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 22px;
    margin-bottom: 10px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 0.97rem;
}
.policy-content ul {
    margin: 14px 0 14px 24px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.policy-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.policy-content a:hover {
    text-decoration: underline;
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent);
    padding: 18px 24px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-primary);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject,
.cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 14px;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow);
}
.modal-inner h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-primary);
}
.cookie-option {
    margin-bottom: 18px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.83rem;
    margin-top: 6px;
    margin-left: 28px;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image {
        max-width: 600px;
    }
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-stats {
        flex-direction: row;
    }
    .stat-item {
        flex: 1;
    }
    .about-preview-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 67px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px 28px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
        box-shadow: none;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .intro-stats {
        flex-direction: column;
    }
    .hero {
        min-height: auto;
    }
}
@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 18px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .article-meta {
        flex-direction: column;
        gap: 4px;
    }
}
