/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES — Memphis Style
   ═══════════════════════════════════════════════════════ */
:root {
    /* Memphis Theme Colors */
    --memphis-pink: #ff6b9d;
    --memphis-yellow: #ffc947;
    --memphis-teal: #00c9b7;
    --memphis-blue: #4a90d9;
    --memphis-purple: #b56bff;
    --memphis-orange: #ff8a50;

    /* Backgrounds */
    --bg-body: #fef9f0;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    --bg-dark: #2d2d3f;

    /* Text */
    --text-primary: #2d2d3f;
    --text-secondary: #5a5a72;
    --text-muted: #8e8ea0;
    --text-on-dark: #fef9f0;

    /* 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: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Memphis Shadows — bold offset style */
    --shadow-sm: 3px 3px 0 #2d2d3f;
    --shadow-md: 5px 5px 0 #2d2d3f;
    --shadow-lg: 8px 8px 0 #2d2d3f;

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

    /* Fonts */
    --font-heading: 'Bungee', cursive;
    --font-body: 'Cabin', 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: 3px solid var(--text-primary);
    box-shadow: 0 3px 0 var(--memphis-pink);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--memphis-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

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

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

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

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

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

@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(--text-primary);
    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, 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(--bg-card);
    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: 3px solid var(--text-primary);
}

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

.nav-mobile__link {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-bottom: 2px dashed var(--memphis-yellow);
}

.nav-mobile__link:hover {
    background: var(--memphis-yellow);
    color: var(--text-primary);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 45, 63, 0.5);
    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;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: var(--memphis-yellow);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: var(--memphis-pink);
    opacity: 0.3;
    z-index: 0;
    transform: rotate(45deg);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__title {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.hero__title span {
    color: var(--memphis-pink);
}

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

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

/* Memphis decorative shapes */
.hero__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.hero__shape--triangle {
    top: 20%;
    left: 8%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--memphis-teal);
    opacity: 0.5;
}

.hero__shape--zigzag {
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--memphis-purple) 0px,
        var(--memphis-purple) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.5;
}

.hero__shape--dots {
    top: 40%;
    right: 5%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--memphis-orange) 3px, transparent 3px);
    background-size: 15px 15px;
    opacity: 0.5;
}

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

.section--alt {
    background: #fff5e6;
}

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

.section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--memphis-yellow);
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   12. BUTTONS — Memphis Boldness
   ═══════════════════════════════════════════════════════ */
.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);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: var(--memphis-pink);
    color: #fff;
    box-shadow: var(--shadow-md);
}

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

.btn--secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    background: var(--memphis-yellow);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--text-primary);
}

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

/* ═══════════════════════════════════════════════════════
   13. CARDS — Memphis Pattern
   ═══════════════════════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

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

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

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

.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: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
}

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

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

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

.offer-card:nth-child(1) {
    border-top: 6px solid var(--memphis-pink);
}

.offer-card:nth-child(2) {
    border-top: 6px solid var(--memphis-yellow);
}

.offer-card:nth-child(3) {
    border-top: 6px solid var(--memphis-teal);
}

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

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

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

.offer-card__bonus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--memphis-pink);
    padding: var(--space-sm) var(--space-md);
    background: #fff0f5;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--memphis-pink);
}

.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(--memphis-teal);
    font-weight: 700;
}

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

.offer-card__buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   15. STARS
   ═══════════════════════════════════════════════════════ */
.stars {
    color: #ffc107;
}

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

.faq__item {
    border: 3px solid var(--text-primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq__question:hover {
    background: #fff0f5;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--memphis-pink);
    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: 2px dashed var(--memphis-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: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__answer a {
    color: var(--memphis-pink);
    text-decoration: underline;
}

.faq__answer a:hover {
    color: var(--memphis-purple);
}

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

.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(--memphis-yellow);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.footer__section p {
    color: rgba(254, 249, 240, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer__section a {
    color: rgba(254, 249, 240, 0.7);
    font-size: 0.9rem;
}

.footer__section a:hover {
    color: var(--memphis-pink);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 2px dashed rgba(254, 249, 240, 0.2);
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

/* Compliance Logos Grid */
.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;
}

/* ═══════════════════════════════════════════════════════
   18. DISCLAIMER
   ═══════════════════════════════════════════════════════ */
.disclaimer {
    background: #2a2a3a;
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.disclaimer a {
    color: var(--memphis-pink);
}

/* ═══════════════════════════════════════════════════════
   19. MODALS
   ═══════════════════════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(45, 45, 63, 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-radius: var(--radius-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.modal__content h2 {
    margin-bottom: var(--space-md);
    color: var(--memphis-pink);
    font-size: 1.5rem;
}

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

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

/* ═══════════════════════════════════════════════════════
   20. COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: var(--space-lg) 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition-normal);
    border-top: 3px solid var(--text-primary);
    box-shadow: 0 -4px 0 var(--memphis-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-secondary);
    margin-bottom: 0;
}

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

/* ═══════════════════════════════════════════════════════
   21. ARTICLE CARDS (для блога)
   ═══════════════════════════════════════════════════════ */
.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-md);
    position: relative;
}

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

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

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

.article-card:nth-child(2) .article-card__category {
    background: var(--memphis-teal);
}

.article-card:nth-child(3) .article-card__category {
    background: var(--memphis-purple);
}

.article-card__title {
    font-size: 1.05rem;
    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;
}

/* ═══════════════════════════════════════════════════════
   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(--memphis-pink);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--memphis-purple);
}

/* ═══════════════════════════════════════════════════════
   24. MEMPHIS DECORATIVE PATTERNS
   ═══════════════════════════════════════════════════════ */
.memphis-divider {
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--memphis-pink) 0px,
        var(--memphis-pink) 20px,
        var(--memphis-yellow) 20px,
        var(--memphis-yellow) 40px,
        var(--memphis-teal) 40px,
        var(--memphis-teal) 60px
    );
    margin: 0;
}

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

    .hero__shape--triangle,
    .hero__shape--zigzag,
    .hero__shape--dots {
        display: none;
    }

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

@media (max-width: 576px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .modal__buttons {
        flex-direction: column;
    }
}