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

    /* Backgrounds */
    --bg-body: #f5f2eb;
    --bg-card: #ffffff;
    --bg-header: #1a1a1a;
    --bg-hero: #1a1a1a;
    --bg-section-alt: #eae6dc;

    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-on-dark: #f5f2eb;
    --text-on-accent: #1a1a1a;

    /* 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 — Bauhaus Flat/Brutalist */
    --shadow-sm: 3px 3px 0 var(--bauhaus-black);
    --shadow-md: 5px 5px 0 var(--bauhaus-black);
    --shadow-lg: 8px 8px 0 var(--bauhaus-black);

    /* 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;
}

/* ═══════════════════════════════════════════════════════
   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;
    color: var(--text-primary);
}

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; }

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

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

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

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

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--bauhaus-white);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-decoration: none;
}

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

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--space-sm) 0;
    position: relative;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

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

.burger-menu span {
    width: 24px;
    height: 3px;
    background: var(--bauhaus-white);
    transition: var(--transition-normal);
}

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

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

/* ═══════════════════════════════════════════════════════
   8. MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav-mobile {
    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-red);
}

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

.nav-mobile__link {
    padding: var(--space-md);
    font-weight: 600;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--bauhaus-gray);
}

.nav-mobile__link:hover {
    color: var(--bauhaus-yellow);
    background: rgba(255,255,255,0.05);
}

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

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

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

/* ═══════════════════════════════════════════════════════
   10. HERO SECTION — Bauhaus Geometric
   ═══════════════════════════════════════════════════════ */
.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: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--bauhaus-red);
    border-radius: 50%;
    opacity: 0.15;
}

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

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

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

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(245,242,235,0.8);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

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

/* Bauhaus decorative bar */
.hero__bar {
    width: 80px;
    height: 6px;
    background: var(--bauhaus-yellow);
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 2;
}

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

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

.section__title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-md);
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--bauhaus-red);
}

/* ═══════════════════════════════════════════════════════
   12. BUTTONS — Bauhaus Flat/Bold
   ═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: 0;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 3px solid var(--bauhaus-black);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

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

.btn--secondary {
    background: transparent;
    border: 3px solid var(--bauhaus-blue);
    color: var(--bauhaus-blue);
    box-shadow: none;
}

.btn--secondary:hover {
    background: var(--bauhaus-blue);
    color: var(--bauhaus-white);
    box-shadow: var(--shadow-sm);
    transform: translate(-2px, -2px);
}

.btn--red {
    background: var(--bauhaus-red);
    color: var(--bauhaus-white);
    border-color: var(--bauhaus-black);
    box-shadow: var(--shadow-sm);
}

.btn--red:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════
   13. CARDS
   ═══════════════════════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border-radius: 0;
    padding: var(--space-xl);
    border: 3px solid var(--bauhaus-black);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-fast);
}

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

.card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.card__icon--red {
    background: var(--bauhaus-red);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bauhaus-white);
    border: 2px solid var(--bauhaus-black);
}

.card__icon--blue {
    background: var(--bauhaus-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bauhaus-white);
    border: 2px solid var(--bauhaus-black);
}

.card__icon--yellow {
    background: var(--bauhaus-yellow);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bauhaus-black);
    border: 2px solid var(--bauhaus-black);
}

.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 (operators)
   ═══════════════════════════════════════════════════════ */
.offers-grid {
    display: grid;
    gap: var(--space-xl);
}

.offer-card {
    background: var(--bg-card);
    border: 3px solid var(--bauhaus-black);
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-fast);
}

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

.offer-card__rank {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--bauhaus-red);
    border-right: 3px solid var(--bauhaus-black);
    padding-right: var(--space-lg);
    min-width: 60px;
    text-align: center;
}

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

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

.offer-card__info {
    flex: 1;
}

.offer-card__rating {
    color: var(--bauhaus-yellow);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.offer-card__bonus {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bauhaus-red);
    margin: var(--space-sm) 0;
    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.9rem;
    color: var(--text-secondary);
}

.offer-card__feature::before {
    content: '■';
    color: var(--bauhaus-blue);
    font-size: 0.6rem;
}

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

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

@media (max-width: 768px) {
    .offer-card {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
}

    .offer-card__rank {
        border-right: none;
        border-bottom: 3px solid var(--bauhaus-black);
        padding-right: 0;
        padding-bottom: var(--space-sm);
    }

    .offer-card__header {
        justify-content: center;
        flex-direction: column;
    }

    .offer-card__buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .offer-card__bonus {
        text-align: center;
    }
}

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

.faq__item {
    border: 3px solid var(--bauhaus-black);
    margin-bottom: -3px;
    background: var(--bg-card);
}

.faq__question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    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;
    color: var(--bauhaus-red);
    font-weight: 700;
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq__item.is-open .faq__question {
    background: var(--bauhaus-blue);
    color: var(--bauhaus-white);
}

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

.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: 0 var(--space-lg) 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
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--bauhaus-black);
    padding: var(--space-3xl) 0 var(--space-xl);
    color: var(--text-on-dark);
    border-top: 6px solid var(--bauhaus-yellow);
}

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

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

.footer__section h4 {
    margin-bottom: var(--space-md);
    color: var(--bauhaus-yellow);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer__section p {
    color: rgba(245,242,235,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer__section a {
    color: rgba(245,242,235,0.7);
    font-size: 0.9rem;
}

.footer__section a:hover {
    color: var(--bauhaus-yellow);
}

/* Compliance Logos */
.footer__compliance {
    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) {
    .footer__compliance {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        max-width: 100%;
    }
}

.footer__compliance-logo {
    height: 50px;
    width: auto;
    max-width: 90px;
    opacity: 0.85;
    transition: 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: 6px 10px;
    border-radius: 6px;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 2px solid var(--bauhaus-gray);
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

/* ═══════════════════════════════════════════════════════
   17. DISCLAIMER
   ═══════════════════════════════════════════════════════ */
.disclaimer {
    background: var(--bauhaus-red);
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--bauhaus-white);
}

.disclaimer strong {
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   18. MODALS
   ═══════════════════════════════════════════════════════ */
.modal {
    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.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border: 4px solid var(--bauhaus-black);
    box-shadow: 10px 10px 0 var(--bauhaus-red);
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.modal__content h2 {
    margin-bottom: var(--space-md);
    color: var(--bauhaus-black);
}

.modal__content p {
    color: var(--text-secondary);
}

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

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

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

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

.cookie-banner p {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-on-dark);
    margin-bottom: 0;
}

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

.cookie-banner a:hover {
    color: var(--bauhaus-white);
}

/* ═══════════════════════════════════════════════════════
   20. ARTICLE CARDS (blog previews)
   ═══════════════════════════════════════════════════════ */
.article-card {
    background: var(--bg-card);
    border: 3px solid var(--bauhaus-black);
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

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

.article-card__category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bauhaus-white);
    background: var(--bauhaus-blue);
    padding: 3px 10px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

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

.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. STARS
   ═══════════════════════════════════════════════════════ */
.stars {
    color: #ffc107;
}

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

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

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

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

/* ═══════════════════════════════════════════════════════
   24. BAUHAUS DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════ */
.bauhaus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-xl) auto;
    max-width: 200px;
}

.bauhaus-divider__circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--bauhaus-black);
}

.bauhaus-divider__circle--red {
    background: var(--bauhaus-red);
}

.bauhaus-divider__circle--blue {
    background: var(--bauhaus-blue);
}

.bauhaus-divider__circle--yellow {
    background: var(--bauhaus-yellow);
}

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

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

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

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

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }

    .modal__buttons {
        flex-direction: column;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}