/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES — Bauhaus Theme
   ═══════════════════════════════════════════════════════ */
:root {
    /* Bauhaus Palette */
    --bauhaus-red: #e53935;
    --bauhaus-blue: #1565c0;
    --bauhaus-yellow: #fdd835;
    --bauhaus-black: #1a1a1a;
    --bauhaus-white: #f5f5f0;
    --bauhaus-gray: #e0ddd5;

    /* Backgrounds */
    --bg-body: #f5f5f0;
    --bg-card: #ffffff;
    --bg-header: #1a1a1a;
    --bg-footer: #1a1a1a;
    --bg-hero: #1a1a1a;

    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-on-dark: #f5f5f0;
    --text-on-dark-muted: #b0b0a8;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;

    /* Shadows — Flat Design */
    --shadow-sm: none;
    --shadow-md: 4px 4px 0 var(--bauhaus-black);
    --shadow-lg: 6px 6px 0 var(--bauhaus-black);
    --shadow-red: 4px 4px 0 var(--bauhaus-red);
    --shadow-blue: 4px 4px 0 var(--bauhaus-blue);
    --shadow-yellow: 4px 4px 0 var(--bauhaus-yellow);

    /* Header */
    --header-height: 70px;

    /* Fonts */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Archivo', sans-serif;

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

    /* Borders */
    --border-thick: 3px solid var(--bauhaus-black);
    --border-thin: 2px solid var(--bauhaus-black);
}

/* ═══════════════════════════════════════════════════════
   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);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

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

/* ═══════════════════════════════════════════════════════
   5. HEADER — site-header
   ═══════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-header);
    z-index: 1000;
    border-bottom: 4px solid var(--bauhaus-red);
}

.site-header__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.site-logo:hover {
    color: var(--bauhaus-yellow);
}

/* ═══════════════════════════════════════════════════════
   6. NAVIGATION — site-nav
   ═══════════════════════════════════════════════════════ */
.site-nav {
    display: flex;
    gap: var(--space-lg);
}

.site-nav__item {
    font-weight: 600;
    font-size: 0.9375rem;
    padding: var(--space-sm) 0;
    color: var(--text-on-dark);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-nav__item:hover,
.site-nav__item.is-active {
    color: var(--bauhaus-yellow);
}

.site-nav__item.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bauhaus-yellow);
}

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

/* ═══════════════════════════════════════════════════════
   7. BURGER MENU — burger-toggle
   ═══════════════════════════════════════════════════════ */
.burger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-on-dark);
    transition: var(--transition-normal);
}

@media (max-width: 992px) {
    .burger-toggle {
        display: flex;
    }
}

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

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

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

/* ═══════════════════════════════════════════════════════
   8. MOBILE NAVIGATION — mobile-nav
   ═══════════════════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: var(--bauhaus-black);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 999;
    transition: right var(--transition-normal);
    overflow-y: auto;
    border-left: 4px solid var(--bauhaus-blue);
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav__item {
    padding: var(--space-md);
    color: var(--text-on-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.mobile-nav__item:hover {
    color: var(--bauhaus-yellow);
    border-bottom-color: var(--bauhaus-yellow);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition-normal);
}

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

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

/* ═══════════════════════════════════════════════════════
   10. HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--bg-hero);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--bauhaus-red);
    border-radius: 50%;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: var(--bauhaus-blue);
    opacity: 0.1;
}

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

.hero__title-accent {
    color: var(--bauhaus-yellow);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-xl);
    max-width: 620px;
    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;
}

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

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

.section__title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--bauhaus-red);
    margin: var(--space-sm) auto 0;
}

/* ═══════════════════════════════════════════════════════
   12. BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px var(--space-xl);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: var(--border-thick);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: var(--bauhaus-yellow);
    color: var(--bauhaus-black);
    border-color: var(--bauhaus-black);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--bauhaus-black);
}

.btn--secondary {
    background: transparent;
    color: var(--bauhaus-black);
    border-color: var(--bauhaus-black);
}

.btn--secondary:hover {
    background: var(--bauhaus-black);
    color: var(--text-on-dark);
}

.btn--on-dark {
    border-color: var(--text-on-dark);
    color: var(--text-on-dark);
}

.btn--on-dark:hover {
    background: var(--text-on-dark);
    color: var(--bauhaus-black);
}

.btn--red {
    background: var(--bauhaus-red);
    color: #fff;
    border-color: var(--bauhaus-black);
    box-shadow: var(--shadow-md);
}

.btn--red:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--bauhaus-black);
}

/* ═══════════════════════════════════════════════════════
   13. CARDS
   ═══════════════════════════════════════════════════════ */
.card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border: var(--border-thick);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-fast);
}

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

.card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.card--red-accent {
    border-top: 6px solid var(--bauhaus-red);
}

.card--blue-accent {
    border-top: 6px solid var(--bauhaus-blue);
}

.card--yellow-accent {
    border-top: 6px solid var(--bauhaus-yellow);
}

.card h3 {
    margin-bottom: var(--space-sm);
}

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

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

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    background: var(--bg-card);
    border: var(--border-thick);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

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

.offer-card:nth-child(1) { border-left: 6px solid var(--bauhaus-red); }
.offer-card:nth-child(2) { border-left: 6px solid var(--bauhaus-blue); }
.offer-card:nth-child(3) { border-left: 6px solid var(--bauhaus-yellow); }
.offer-card:nth-child(4) { border-left: 6px solid var(--bauhaus-red); }

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

.offer-card__logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border: var(--border-thin);
    padding: var(--space-xs);
    background: #fff;
}

.offer-card__rating {
    font-weight: 600;
    font-size: 0.9375rem;
}

.stars {
    color: #ffc107;
}

.offer-card__bonus {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bauhaus-red);
    padding: var(--space-sm) var(--space-md);
    background: rgba(229, 57, 53, 0.08);
    border-left: 4px solid var(--bauhaus-red);
}

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

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

.offer-card__feature::before {
    content: '✓';
    color: var(--bauhaus-blue);
    font-weight: 700;
}

.offer-card__buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: auto;
    flex-wrap: wrap;
}

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

.faq__item {
    border: var(--border-thin);
    margin-bottom: var(--space-sm);
    background: var(--bg-card);
}

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

.faq__question:hover {
    background: rgba(21, 101, 192, 0.05);
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bauhaus-red);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

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

.faq__item.is-open .faq__question {
    border-bottom: var(--border-thin);
    background: rgba(21, 101, 192, 0.05);
}

.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: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.faq__answer a:hover {
    color: var(--bauhaus-red);
}

/* ═══════════════════════════════════════════════════════
   16. FOOTER — site-footer
   ═══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-footer);
    color: var(--text-on-dark);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.site-footer__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

@media (max-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.site-footer__title {
    margin-bottom: var(--space-md);
    color: var(--bauhaus-yellow);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.site-footer__text {
    color: var(--text-on-dark-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

.site-footer__link {
    color: var(--text-on-dark-muted);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.site-footer__link:hover {
    color: var(--bauhaus-yellow);
}

.site-footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(255,255,255,0.1);
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
}

.site-footer__bottom p {
    margin-bottom: var(--space-xs);
}

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

@media (max-width: 768px) {
    .compliance-logos {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        max-width: 100%;
    }
}

.compliance-logo {
    height: 50px;
    width: auto;
    max-width: 90px;
    opacity: 0.85;
    transition: var(--transition-fast);
    object-fit: contain;
}

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

.compliance-logo--light-bg {
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════════════
   17. DISCLAIMER
   ═══════════════════════════════════════════════════════ */
.disclaimer {
    background: var(--bauhaus-black);
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    border-top: 3px solid var(--bauhaus-red);
}

.disclaimer__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.disclaimer strong {
    color: var(--bauhaus-red);
}

/* ═══════════════════════════════════════════════════════
   18. MODALS — modal-overlay
   ═══════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.modal-content {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border: var(--border-thick);
    box-shadow: 8px 8px 0 var(--bauhaus-red);
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.modal-title {
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

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

.modal-btn {
    padding: 12px var(--space-xl);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: var(--border-thick);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.modal-btn--primary {
    background: var(--bauhaus-yellow);
    color: var(--bauhaus-black);
    box-shadow: var(--shadow-md);
}

.modal-btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.modal-btn--secondary {
    background: transparent;
    color: var(--bauhaus-black);
}

.modal-btn--secondary:hover {
    background: var(--bauhaus-red);
    color: #fff;
    border-color: var(--bauhaus-black);
}

/* ═══════════════════════════════════════════════════════
   19. COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bauhaus-black);
    border-top: 4px solid var(--bauhaus-yellow);
    padding: var(--space-lg) 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

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

.cookie-banner__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
}

.cookie-banner__link {
    color: var(--bauhaus-yellow);
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: #fff;
}

.cookie-banner__btn {
    padding: 10px var(--space-xl);
    background: var(--bauhaus-yellow);
    color: var(--bauhaus-black);
    border: var(--border-thick);
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.cookie-banner__btn:hover {
    background: #fff;
}

/* ═══════════════════════════════════════════════════════
   20. ARTICLE CARDS
   ═══════════════════════════════════════════════════════ */
.article-card {
    background: var(--bg-card);
    border: var(--border-thick);
    overflow: hidden;
    transition: var(--transition-fast);
    position: relative;
    box-shadow: var(--shadow-md);
}

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

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

.article-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--bauhaus-blue);
    padding: 2px 10px;
    margin-bottom: var(--space-sm);
}

.article-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

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

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

/* ═══════════════════════════════════════════════════════
   21. 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);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--bauhaus-red);
}

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

/* ═══════════════════════════════════════════════════════
   23. BAUHAUS DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════ */
.bauhaus-divider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
    margin: var(--space-xl) 0;
}

.bauhaus-divider__block {
    width: 20px;
    height: 20px;
}

.bauhaus-divider__block--red { background: var(--bauhaus-red); }
.bauhaus-divider__block--blue { background: var(--bauhaus-blue); }
.bauhaus-divider__block--yellow { background: var(--bauhaus-yellow); }

.bauhaus-divider__line {
    flex: 1;
    max-width: 100px;
    height: 3px;
    background: var(--bauhaus-black);
}

/* ═══════════════════════════════════════════════════════
   24. RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .offer-card__buttons .btn {
        width: 100%;
        max-width: none;
    }

    .modal-buttons {
        flex-direction: column;
    }
}