/* Variable Fonts и базовые стили */
:root {
    --primary-blue: #0066FF;
    --dark-blue: #003D99;
    --light-blue: #3B82F6;
    --blue-bg: #1E40AF;
    --blue-bg-dark: #2563EB;
    --blue-bg-light: #3B82F6;
    --blue-bg-lighter: #60A5FA;
    --white: #FFFFFF;
    --dark-orange: #FF6B35;
    --orange-hover: #E55A2B;
    --text-dark: #1E293B;
    --text-light: #475569;
    --text-white: #FFFFFF;
    --green: #10B981;
    --green-light: #D1FAE5;
    --light-green: #34D399;
    --light-green-hover: #10B981;
    
    /* Neomorphism shadows для светлого синего фона */
    --neo-shadow-light: 8px 8px 16px rgba(0, 51, 153, 0.2), -8px -8px 16px rgba(96, 165, 250, 0.3);
    --neo-shadow-inset: inset 4px 4px 8px rgba(0, 51, 153, 0.15), inset -4px -4px 8px rgba(96, 165, 250, 0.4);
    --neo-shadow-pressed: inset 4px 4px 8px rgba(0, 51, 153, 0.25), inset -4px -4px 8px rgba(96, 165, 250, 0.3);
    --neo-shadow-hover: 12px 12px 24px rgba(0, 51, 153, 0.25), -12px -12px 24px rgba(96, 165, 250, 0.4);
    --neo-shadow-orange: 8px 8px 16px rgba(0, 51, 153, 0.2), -4px -4px 8px rgba(255, 107, 53, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-variation-settings: 'wght' 400;
    background: linear-gradient(to right, var(--blue-bg) 0%, var(--blue-bg-dark) 50%, var(--dark-orange) 100%);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Header */
.header {
    background: rgba(30, 64, 175, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 51, 153, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-variation-settings: 'wght' 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.header-register-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-green);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    border-radius: 12px;
    box-shadow: 8px 8px 16px rgba(16, 185, 129, 0.2), -8px -8px 16px rgba(52, 211, 153, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.header-register-btn:hover {
    background: var(--light-green-hover);
    box-shadow: 12px 12px 24px rgba(16, 185, 129, 0.3), -12px -12px 24px rgba(52, 211, 153, 0.4);
    transform: translateY(-2px);
}

.header-register-btn:active {
    box-shadow: var(--neo-shadow-pressed);
    transform: translateY(0);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    font-variation-settings: 'wght' 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-variation-settings: 'wght' 700;
    text-decoration: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--orange-hover) 100%);
    color: var(--white);
    box-shadow: var(--neo-shadow-orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px rgba(255, 107, 53, 0.4), -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.hero-cta-button:active {
    transform: translateY(-1px);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

.download-apk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-variation-settings: 'wght' 700;
    text-decoration: none;
    border-radius: 16px;
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 8px 8px 16px rgba(0, 61, 153, 0.3), -8px -8px 16px rgba(30, 58, 138, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.download-apk-button:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px rgba(0, 61, 153, 0.4), -4px -4px 8px rgba(30, 58, 138, 0.3);
}

.download-apk-button:active {
    transform: translateY(-1px);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.download-icon {
    transition: transform 0.3s ease;
}

.download-apk-button:hover .download-icon {
    transform: translateY(2px);
}

.link-status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--neo-shadow-light);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.status-light {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    animation: slow-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes slow-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.9);
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    }
}

.status-text {
    font-size: 0.9375rem;
    font-weight: 500;
    font-variation-settings: 'wght' 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

/* Image Section */
.image-section {
    margin-bottom: 3rem;
    width: 100%;
}

.image-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--neo-shadow-light);
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .content-image {
    transform: scale(1.02);
}

.image-container:hover {
    box-shadow: var(--neo-shadow-hover);
    border-color: rgba(96, 165, 250, 0.4);
}

.content-block {
    background: rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--neo-shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.content-block:hover {
    box-shadow: var(--neo-shadow-hover);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    font-variation-settings: 'wght' 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.subsection-title {
    font-size: 1.375rem;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    color: var(--text-white);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-block p {
    margin-bottom: 1.25rem;
    color: var(--text-white);
    line-height: 1.8;
}

.intro-text {
    color: var(--text-white);
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Убираем визуальное выделение strong - делаем в едином стиле */
strong {
    font-weight: 500;
    font-variation-settings: 'wght' 500;
    color: var(--text-white);
}

.content-block strong {
    font-weight: 500;
    font-variation-settings: 'wght' 500;
    color: var(--text-white);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--neo-shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.2));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Info Lists */
.info-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.info-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--neo-shadow-inset);
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.7;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.info-list li:last-child {
    margin-bottom: 0;
}

/* Info Box */
.info-box {
    background: rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--neo-shadow-inset);
    margin: 1.5rem 0;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-white);
    line-height: 1.7;
}

.info-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Warning Box */
.warning-box {
    background: var(--blue-bg-dark);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--neo-shadow-inset);
    margin: 1.5rem 0;
    border-left: 4px solid var(--dark-orange);
}

.warning-box strong {
    color: var(--text-white);
    font-weight: 500;
    font-variation-settings: 'wght' 500;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: var(--neo-shadow-light);
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    min-width: 600px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.app-table thead {
    background: rgba(37, 99, 235, 0.5);
}

.app-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    color: var(--text-dark);
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.app-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.05);
    color: var(--text-dark);
}

.app-table tbody tr:hover {
    background: var(--blue-bg-dark);
}

.app-table th {
    color: var(--text-white);
}

.app-table td {
    color: var(--text-white);
}

.app-table td strong {
    color: var(--text-white);
    font-weight: 500;
    font-variation-settings: 'wght' 500;
}

.table-link {
    color: var(--light-green);
    text-decoration: none;
    font-weight: 500;
    font-variation-settings: 'wght' 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.table-link:hover {
    color: var(--green);
    border-bottom-color: var(--light-green);
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.app-table tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Sources Grid */
.sources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.source-card {
    background: rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--neo-shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

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

.source-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-icon {
    width: 48px;
    height: 48px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.source-card:hover .telegram-icon {
    transform: scale(1.1) rotate(-10deg);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.5));
    color: var(--text-white);
}

.source-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.source-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

/* FAQ */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--neo-shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.faq-item:hover {
    background: rgba(59, 130, 246, 0.6);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: var(--neo-shadow-hover);
}

.faq-item.active {
    box-shadow: var(--neo-shadow-hover);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.3), transparent);
    transition: width 0.3s ease;
}

.faq-question:hover::before {
    width: 4px;
}

.faq-icon {
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.faq-question:hover .faq-icon {
    color: var(--text-white);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Tablet стили */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }

    .main-content {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-cta-button {
        min-width: 320px;
    }

    .content-block {
        padding: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .header-container {
        padding: 0 2rem;
    }

    .image-container {
        padding: 0.75rem;
        max-width: 800px;
    }

    .content-image {
        max-height: 500px;
        object-fit: cover;
    }
}

/* Desktop стили */
@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

    .main-content {
        padding: 4rem 3rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta-button {
        padding: 1.5rem 4rem;
        font-size: 1.375rem;
        min-width: 360px;
    }

    .content-block {
        padding: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .sources-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .header-container {
        padding: 0 3rem;
    }

    .image-container {
        padding: 1rem;
        max-width: 1000px;
    }

    .content-image {
        max-height: 600px;
        object-fit: cover;
    }
}

/* Анимации появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out both;
}

.content-section:nth-child(2) { animation-delay: 0.1s; }
.content-section:nth-child(3) { animation-delay: 0.2s; }
.content-section:nth-child(4) { animation-delay: 0.3s; }
.content-section:nth-child(5) { animation-delay: 0.4s; }
.content-section:nth-child(6) { animation-delay: 0.5s; }
.content-section:nth-child(7) { animation-delay: 0.6s; }
.content-section:nth-child(8) { animation-delay: 0.7s; }
.content-section:nth-child(9) { animation-delay: 0.8s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Footer */
.footer {
    background: rgba(30, 64, 175, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 20px rgba(0, 51, 153, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-variation-settings: 'wght' 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.footer-disclaimer {
    padding: 1rem;
    background: rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    max-width: 800px;
}

.footer-disclaimer p {
    margin: 0;
    color: var(--text-white);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--text-white);
    font-weight: 600;
    font-variation-settings: 'wght' 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    font-variation-settings: 'wght' 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--light-green);
    border-bottom-color: var(--light-green);
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.play-responsible {
    font-weight: 600;
    font-variation-settings: 'wght' 600;
}

/* Tablet стили для footer */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 0 2rem;
    }

    .footer-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        width: auto;
    }

    .footer-disclaimer {
        max-width: 500px;
    }
}

/* Desktop стили для footer */
@media (min-width: 1024px) {
    .footer {
        padding: 2.5rem 0;
    }

    .footer-container {
        padding: 0 3rem;
    }

    .footer-content {
        gap: 3rem;
    }
}

/* Фокус для доступности */
.hero-cta-button:focus-visible,
.header-register-btn:focus-visible,
.faq-question:focus-visible,
.footer-link:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}
