/* --- ОБЩИЕ СТИЛИ ДЛЯ ТИЛЬДЫ --- */
.aura-header-wrapper, .aura-footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 999;
}

/* --- ХЕДЕР --- */
.aura-header {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.06);
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aura-logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -1px;
    color: #1e1b4b;
    text-decoration: none;
}
.aura-logo span {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aura-nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.aura-nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.aura-nav-menu a:hover { color: #1e1b4b; }

.aura-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    transition: all 0.3s;
}
.aura-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
}
.aura-btn-small { padding: 12px 28px; font-size: 14px; }

.aura-burger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.aura-burger span { display: block; width: 25px; height: 2px; background: #1e1b4b; }

.aura-mobile-menu {
    display: none;
    position: fixed;
    top: 80px; left: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.aura-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 20px; text-align: center; padding: 0; }
.aura-mobile-menu ul a { text-decoration: none; font-family: 'Unbounded', sans-serif; color: #1e1b4b; font-weight: 500; font-size: 18px; }

/* --- ФУТЕР --- */
.aura-footer-wrapper {
    padding: 60px 20px 30px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.aura-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.aura-footer-col h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1e1b4b;
}
.aura-footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 300px;
    margin: 15px 0 25px 0;
}
.aura-footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.aura-footer-col ul a {
    text-decoration: none;
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}
.aura-footer-col ul a:hover { color: #7c3aed; }

.aura-social-links { display: flex; gap: 12px; }
.aura-social-links a {
    display: flex; justify-content: center; align-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #1e1b4b;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}
.aura-social-links a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.aura-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4b5563;
}

/* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */
@media (max-width: 992px) {
    .aura-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .aura-header { padding: 16px 20px; margin-top: 15px; }
    .aura-nav-menu, .aura-header-actions { display: none; }
    .aura-burger { display: flex; }
    .aura-mobile-menu.open { display: block; }
    .aura-footer-grid { grid-template-columns: 1fr; }
    .aura-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

