/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES — Современный минимализм
   Архитектура: Utility-First
   Палитра: Urban Night
   Эффект: Flat Design
   Типографика: DM Sans (заголовки) + Work Sans (текст)
   ═══════════════════════════════════════════════════════ */
:root {
    /* Urban Night Palette */
    --urban-slate: #1f2937;
    --urban-steel: #374151;
    --urban-fog: #6b7280;
    --urban-mist: #9ca3af;
    --urban-cloud: #e5e7eb;
    --urban-snow: #f5f5f7;
    --urban-white: #ffffff;
    --accent-blue: #2563eb;
    --accent-blue-deep: #1d4ed8;
    --accent-blue-light: #3b82f6;
    --accent-blue-glow: rgba(37, 99, 235, 0.12);
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;

    /* Backgrounds */
    --bg-body: #f5f5f7;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    --bg-footer: #1f2937;
    --bg-hero: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --bg-section-alt: #ffffff;

    /* Text */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-inverse: #ffffff;

    /* Borders */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;

    /* Shadows — Flat Design (subtle) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 4px 14px rgba(37, 99, 235, 0.25);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;

    /* Typography */
    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   4. CONTAINER
   ═══════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   5. UTILITY CLASSES
   ═══════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.is-active {
    color: var(--accent-blue) !important;
    font-weight: 600;
}

.stars {
    color: #ffc107;
    font-size: 1.1em;
}

/* ═══════════════════════════════════════════════════════
   6. BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    line-height: 1.2;
    min-height: 44px;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent-blue);
    color: var(--urban-white);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background: var(--accent-blue-deep);
    border-color: var(--accent-blue-deep);
    color: var(--urban-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.btn--secondary {
    background: var(--urban-white);
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.btn--secondary:hover {
    background: var(--bg-body);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn--outline {
    background: transparent;
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn--outline:hover {
    background: var(--accent-blue);
    color: var(--urban-white);
}

.btn--hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--urban-white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn--hero-secondary:hover {
    background: var(--urban-white);
    color: var(--accent-blue);
    border-color: var(--urban-white);
}

/* ═══════════════════════════════════════════════════════
   7. HEADER
   ═══════════════════════════════════════════════════════ */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--accent-blue-deep);
}

/* ═══════════════════════════════════════════════════════
   8. NAVIGATION — Desktop
   ═══════════════════════════════════════════════════════ */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   9. BURGER MENU
   ═══════════════════════════════════════════════════════ */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    display: block;
}

.burger-menu.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.is-open span:nth-child(2) {
    opacity: 0;
}

.burger-menu.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════
   10. MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--urban-white);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    z-index: 999;
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-lg);
}

.nav-mobile.is-open {
    transform: translateY(0);
}

.nav-mobile__link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.nav-mobile__link:hover {
    background: var(--bg-body);
    color: var(--accent-blue);
    border-left-color: var(--accent-blue);
}

.nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════════════
   11. MAIN CONTENT
   ═══════════════════════════════════════════════════════ */
.main {
    min-height: calc(100vh - var(--header-height));
}

/* ═══════════════════════════════════════════════════════
   12. HERO SECTION
   ═══════════════════════════════════════════════════════ */
.section--hero {
    background: var(--bg-hero);
    color: var(--urban-white);
    text-align: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.section--hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.section--hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.hero__title {
    color: var(--urban-white);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   13. SECTIONS
   ═══════════════════════════════════════════════════════ */
.section {
    padding: var(--space-3xl) 0;
}

.section--alt {
    background: var(--bg-section-alt);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.section--hero .section__title {
    color: var(--urban-white);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section--hero .section__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════════
   14. CARDS — Base
   ═══════════════════════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    padding: var(--space-xl);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* ═══════════════════════════════════════════════════════
   15. OFFER CARDS
   ═══════════════════════════════════════════════════════ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.offer-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    border: 1px solid var(--border-light);
}

.offer-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
    border-color: var(--accent-blue-glow);
}

.offer-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.offer-card__logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

.offer-card__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}

.offer-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.offer-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.offer-card__bonus {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
    padding: var(--space-sm) var(--space-md);
    background: var(--accent-blue-glow);
    border-radius: var(--radius-md);
    display: inline-block;
}

.offer-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    list-style: none;
}

.offer-card__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.offer-card__feature::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.offer-card__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════
   16. ARTICLE CARDS
   ═══════════════════════════════════════════════════════ */
.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.article-card__content {
    padding: var(--space-xl);
}

.article-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    background: var(--accent-blue-glow);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.article-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   17. FAQ SECTION
   ═══════════════════════════════════════════════════════ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq__question {
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--accent-blue);
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-blue);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-blue-glow);
}

.faq__item.is-open .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__answer a {
    color: var(--accent-blue);
    font-weight: 500;
}

.faq__answer a:hover {
    color: var(--accent-blue-deep);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   18. FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-footer);
    color: var(--urban-white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__section h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--urban-white);
}

.footer__section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__section ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer__section ul li a:hover {
    color: var(--urban-white);
}

.footer__compliance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm) var(--space-md);
    margin-top: var(--space-lg);
    align-items: center;
    justify-items: start;
    max-width: 320px;
}

.footer__compliance-logo {
    height: 40px;
    width: auto;
    max-width: 90px;
    opacity: 0.8;
    transition: all var(--transition-fast);
    object-fit: contain;
}

.footer__compliance-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer__compliance-logo--light-bg {
    background-color: #fff;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

/* ═══════════════════════════════════════════════════════
   19. DISCLAIMER
   ═══════════════════════════════════════════════════════ */
.disclaimer {
    background: var(--accent-orange);
    color: var(--urban-white);
    padding: var(--space-md) 0;
    text-align: center;
}

.disclaimer p {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   20. MODALS
   ═══════════════════════════════════════════════════════ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background: var(--urban-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

.modal.is-open .modal__content {
    transform: scale(1);
}

.modal__content h2 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.modal__content p {
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
}

.modal__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   21. COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--urban-slate);
    color: var(--urban-white);
    padding: var(--space-md) 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner.is-open {
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-banner p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    margin: 0;
}

.cookie-banner a {
    color: var(--accent-blue-light);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   22. GRIDS (Legacy support from existing files)
   ═══════════════════════════════════════════════════════ */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ═══════════════════════════════════════════════════════
   23. SCROLLBAR
   ═══════════════════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* ═══════════════════════════════════════════════════════
   24. RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card__buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .section--hero {
        padding: var(--space-2xl) 0;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer__compliance {
        justify-items: center;
        max-width: 100%;
    }

    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .offer-card__buttons {
        flex-direction: column;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .modal__buttons {
        flex-direction: column;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1.05rem;
    }

    .article-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }

    .btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   25. PRINT STYLES
   ═══════════════════════════════════════════════════════ */
@media print {
    .header,
    .footer,
    .disclaimer,
    .modal,
    .cookie-banner,
    .nav-mobile,
    .nav-overlay,
    .burger-menu {
        display: none !important;
    }

    .main {
        padding: 0;
    }

    * {
        color: black !important;
        background: white !important;
        box-shadow: none !important;
    }
}