/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES — "Dark Knight" Gothic Theme
   Palette: Onyx Black, Ash Grey, Gold, Crimson
   Architecture: Utility-First
   Effect: Neon Glow (subtle gold glow)
   Fonts: Cinzel (headings) + Roboto Condensed (body)
   ═══════════════════════════════════════════════════════ */
:root {
    /* Theme Colors */
    --onyx-black: #0a0a0a;
    --obsidian: #121212;
    --ash-grey: #1e1e1e;
    --steel-grey: #2a2a2a;
    --silver-mist: #8a8a8a;
    --pale-silver: #b0b0b0;
    --ivory-bone: #e0d8c8;
    --knight-gold: #d4af37;
    --dark-gold: #b8960c;
    --royal-gold: #f0c95c;
    --crimson-blood: #8b0000;
    --ember-red: #c0392b;

    /* Backgrounds */
    --bg-body: #0a0a0a;
    --bg-card: #161616;
    --bg-header: rgba(10, 10, 10, 0.92);
    --bg-card-hover: #1c1c1c;

    /* Text */
    --text-primary: #e0d8c8;
    --text-secondary: #b0b0b0;
    --text-muted: #6a6a6a;

    /* 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: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows — Neon Glow Effect */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.7), 0 0 8px rgba(212, 175, 55, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.12);
    --shadow-glow: 0 0 12px rgba(212, 175, 55, 0.25), 0 0 40px rgba(212, 175, 55, 0.08);
    --shadow-glow-strong: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15);

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

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Roboto Condensed', 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);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
}

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: 700;
    line-height: 1.2;
    color: var(--ivory-bone);
}

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);
    line-height: 1.7;
}

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;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition-normal);
}

.header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.06);
}

.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(--knight-gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    color: var(--royal-gold);
}

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

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-sm) 0;
    position: relative;
    color: var(--pale-silver);
}

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

.nav-link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--knight-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

@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);
    z-index: 1001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--knight-gold);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

/* ═══════════════════════════════════════════════════════
   8. MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav-mobile {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: var(--obsidian);
    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: 1px solid rgba(212, 175, 55, 0.1);
}

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

.nav-mobile__link {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pale-silver);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.nav-mobile__link:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--knight-gold);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    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
   ═══════════════════════════════════════════════════════ */
.hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
        var(--bg-body);
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(212, 175, 55, 0.01) 40px,
        rgba(212, 175, 55, 0.01) 80px
    );
    pointer-events: none;
}

.hero__title {
    margin-bottom: var(--space-md);
    color: var(--knight-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    position: relative;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    position: relative;
}

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

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

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

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

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--knight-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    border-radius: 2px;
}

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

.btn--primary {
    background: linear-gradient(135deg, var(--knight-gold), var(--dark-gold));
    color: var(--onyx-black);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--royal-gold), var(--knight-gold));
}

.btn--secondary {
    background: transparent;
    border: 2px solid var(--knight-gold);
    color: var(--knight-gold);
}

.btn--secondary:hover {
    background: var(--knight-gold);
    color: var(--onyx-black);
    box-shadow: var(--shadow-glow);
}

.btn--small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════
   13. CARDS
   ═══════════════════════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-normal);
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.card h3 {
    margin-bottom: var(--space-sm);
    color: var(--knight-gold);
    font-size: 1.2rem;
}

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

.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: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.offer-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-normal);
}

.offer-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-glow);
}

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

.offer-card__logo {
    width: 90px;
    height: 65px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.offer-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--ivory-bone);
    margin-bottom: var(--space-xs);
}

.offer-card__rating {
    color: var(--knight-gold);
    font-size: 0.95rem;
}

.offer-card__bonus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--knight-gold);
    padding: var(--space-md);
    background: rgba(212, 175, 55, 0.06);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--knight-gold);
}

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

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

.offer-card__feature::before {
    content: '✓';
    color: var(--knight-gold);
    font-weight: 700;
    min-width: 18px;
}

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

@media (max-width: 576px) {
    .offer-card__header {
        flex-direction: column;
        text-align: center;
    }
    .offer-card__buttons {
        flex-direction: column;
    }
    .offer-card__buttons .btn {
        width: 100%;
    }
}

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

.faq__item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.faq__question:hover {
    color: var(--knight-gold);
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--knight-gold);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

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

.faq__item.is-open .faq__question {
    color: var(--knight-gold);
}

.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(--knight-gold);
    text-decoration: underline;
}

.faq__answer a:hover {
    color: var(--royal-gold);
}

/* ═══════════════════════════════════════════════════════
   16. FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--obsidian);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.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(--knight-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer__section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer__section a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer__section a:hover {
    color: var(--knight-gold);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* 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%;
        margin-left: auto;
        margin-right: auto;
    }
}

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

/* Light background for dark logos */
.footer__compliance-logo--light-bg {
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════════════
   17. DISCLAIMER
   ═══════════════════════════════════════════════════════ */
.disclaimer {
    background: var(--onyx-black);
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.06);
}

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

/* ═══════════════════════════════════════════════════════
   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(--ash-grey);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-glow);
}

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

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

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

/* ═══════════════════════════════════════════════════════
   19. COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ash-grey);
    padding: var(--space-lg) 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition-normal);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.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-secondary);
    margin-bottom: 0;
}

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

/* ═══════════════════════════════════════════════════════
   20. ARTICLE CARDS (blog)
   ═══════════════════════════════════════════════════════ */
.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

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

.article-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--knight-gold);
    margin-bottom: var(--space-sm);
    display: block;
    font-weight: 700;
}

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

.article-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    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(--onyx-black);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--knight-gold);
}

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

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}