/* Основные стили лендинга согласен.ру - Обновленный дизайн */

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    background: #fafafa;
}

/* Контейнер */
.landing-page {
    min-height: 100vh;
    background: #fafafa;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.landing-header {
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    flex-shrink: 0;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

/* Базовые стили для кнопки в nav-menu - всегда видна на мобильных */
/* Переопределяем даже inline стили от JavaScript */
@media (max-width: 767px) {
    .nav-menu {
        display: flex !important;
    }
    
    /* Переопределяем inline стили от JavaScript - используем максимальную специфичность */
    nav.nav-menu[style],
    .nav-menu[style] {
        display: flex !important;
    }
    
    .nav-menu > .nav-link {
        display: none !important;
    }
    
    .nav-menu > a.btn-primary,
    .nav-menu > a[href*="login"],
    .nav-menu > a.btn.btn-primary {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
}

.nav-link {
    color: #221e1f;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff9d00;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ff9d00;
    color: white;
}

.btn-primary:hover {
    background: #ff900f;
}

.btn-outline {
    background: white;
    border: 2px solid #e5e7eb;
    color: #221e1f;
}

.btn-outline:hover {
    border-color: #ff9d00;
}

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
}

.btn-gradient {
    background: linear-gradient(to right, #f7921d, #ff9d00);
    color: white;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: #221e1f;
}

.btn-white:hover {
    background: #f9fafb;
}

.btn-full {
    width: 100%;
    padding: 1rem 1.5rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #fafafa;
    padding: 4rem 0;
}

.hero-container-main {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title-main {
    color: #221e1f;
}

.hero-title-accent {
    color: #ff9d00;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Cards */
.hero-cards {
    position: relative;
    display: none;
}

.hero-gradient-shapes {
    position: absolute;
    inset: 0;
    right: -8rem;
}

.gradient-shape {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
}

.gradient-shape-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(255, 195, 98, 0.3), rgba(255, 157, 0, 0.2));
}

.gradient-shape-2 {
    bottom: 0;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to bottom right, rgba(255, 157, 0, 0.2), rgba(255, 144, 15, 0.1));
}

.floating-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.floating-card:hover {
    transform: scale(1.05);
}

.floating-card-1 {
    margin-left: auto;
    max-width: 20rem;
}

.floating-card-2 {
    background: linear-gradient(to bottom right, rgba(255, 195, 98, 0.4), rgba(255, 157, 0, 0.3));
    padding: 2rem;
    max-width: 24rem;
}

.floating-card-3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    max-width: 18rem;
}

.card-title {
    font-weight: 600;
    color: #221e1f;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #9ca3af;
    font-family: monospace;
}

.card-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #221e1f;
}

.card-accent {
    color: #ff9d00;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 157, 0, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9d00;
}

.card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: #221e1f;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem 6rem;
    position: relative;
    z-index: 10;
    background: #fcf8f4;
}

.features-container {
    max-width: 88rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    color: #f7921d;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: 9999px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(34, 30, 31, 0.6);
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
    min-height: 15rem;
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card-accent {
    background: #ffa134;
    position: relative;
    overflow: hidden;
}

.feature-decoration {
    display: flex;
    gap: 0.375rem;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.deco-square {
    background: #f7921d;
    border-radius: 0.25rem;
}

.deco-square-large {
    width: 1.5rem;
    height: 1.5rem;
}

.deco-square-medium {
    width: 1.25rem;
    height: 1.25rem;
}

.deco-square-small {
    width: 1rem;
    height: 1rem;
    background: #ffb662;
    align-self: flex-end;
}

.deco-square-tiny {
    width: 1rem;
    height: 1rem;
    background: #ffcf97;
    align-self: center;
}

.feature-decoration-accent {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.deco-square-accent {
    width: 2rem;
    height: 2rem;
    background: #ff900f;
    border-radius: 0.25rem;
    transform: rotate(12deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #221e1f;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 1rem;
    color: rgba(34, 30, 31, 0.6);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: #fcf8f4;
    padding: 4rem 1rem 6rem;
    position: relative;
    z-index: 10;
}

.benefits-container {
    max-width: 88rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: #ff900f;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 1rem 6rem;
    background: #f9fafb;
    position: relative;
    z-index: 10;
}

.pricing-container {
    max-width: 88rem;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card-featured {
    background: linear-gradient(to bottom right, #f7921d, #ff900f, #ffa134);
    color: white;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #f7921d;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-decoration {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.pricing-deco-square {
    background: #f7921d;
    border-radius: 0.25rem;
}

.pricing-deco-large {
    width: 1rem;
    height: 1rem;
}

.pricing-deco-small {
    width: 0.75rem;
    height: 0.75rem;
    background: #ffa134;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-name {
    color: white;
    margin-top: 1rem;
}

.pricing-description {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.pricing-card-featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.pricing-card-featured .price-amount {
    color: white;
}

.price-amount-custom {
    font-size: 2.5rem;
}

.price-period {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.pricing-card-featured .price-period {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.feature-bullet {
    color: #f7921d;
    font-size: 1.25rem;
    line-height: 1;
}

.pricing-card-featured .feature-bullet {
    color: white;
}

.pricing-card-featured .pricing-features span {
    color: white;
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    margin-top: 3rem;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1rem 6rem;
    background: #FF9933;
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #221e1f;
    color: #9ca3af;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 88rem;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #ff9d00;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-inner {
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid white;
    border-radius: 0.125rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 24rem;
}

.footer-column-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #9ca3af;
}

/* Адаптивность */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

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

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

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

/* Мобильные стили - ДО десктопных */
@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap !important;
        gap: 0.75rem;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Логотип - ограничиваем ширину, оставляем место для компактной кнопки профиля */
    .header-container > a:first-child {
        flex-shrink: 1 !important;
        min-width: 0 !important;
        max-width: calc(100% - 90px) !important;
        overflow: hidden !important;
    }
    
    /* Навигация - показываем только кнопку "Войти" */
    .header-container > .nav-menu,
    .header-container > nav.nav-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Скрываем все ссылки навигации */
    .header-container > .nav-menu > .nav-link,
    .header-container > nav.nav-menu > .nav-link {
        display: none !important;
    }
    
    /* Кнопка "Войти" ВНУТРИ nav-menu - показываем */
    .header-container > .nav-menu > a.btn-primary,
    .header-container > nav.nav-menu > a.btn-primary,
    .header-container > .nav-menu > a[href*="login"],
    .header-container > nav.nav-menu > a[href*="login"] {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Мобильное меню - скрываем */
    .header-container > .mobile-menu-btn {
        display: none !important;
    }
    
    /* Контейнер профиля пользователя - компактный на мобильных */
    .header-container > div:last-child,
    .header-container > div[style*="position: relative"],
    .header-container > div[style*="display: flex"]:not(:first-child) {
        flex-shrink: 0 !important;
        max-width: 70px !important;
        min-width: 0 !important;
        overflow: visible !important;
        position: relative !important;
        width: auto !important;
    }
    
    /* Кнопка профиля пользователя - только аватар и стрелка на мобильных */
    #profile-menu-btn,
    #profile-menu-btn[style] {
        flex-shrink: 0 !important;
        max-width: 70px !important;
        min-width: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        padding: 6px 8px !important;
        gap: 8px !important;
    }
    
    /* Email текст в кнопке профиля - скрываем на мобильных */
    #profile-menu-btn > span,
    #profile-menu-btn > span[style] {
        display: none !important;
    }
    
    /* Аватар в кнопке профиля - переопределяем inline стили */
    #profile-menu-btn > div:first-child,
    #profile-menu-btn > div[style]:first-child {
        flex-shrink: 0 !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
    }
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .logo-img {
        height: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-cards {
        display: block;
    }

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

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

    .cta-title {
        font-size: 3rem;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-legal {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

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

    .cta-title {
        font-size: 3.5rem;
    }

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

    .feature-card-accent {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

    .pricing-card-featured {
        margin-top: -1rem;
        margin-bottom: -1rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* Анимация появления при прокрутке */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Анимация floating карточек */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card-1 {
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-card-3 {
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Стили для маленьких экранов (480px) */
@media (max-width: 480px) {
    /* Логотип - еще меньше места (компактная кнопка профиля) */
    .header-container > a:first-child {
        max-width: calc(100% - 80px) !important;
    }
    
    /* Контейнер профиля - только аватар и стрелка */
    .header-container > div:last-child,
    .header-container > div[style*="position: relative"] {
        max-width: 70px !important;
    }
    
    /* Кнопка профиля - еще компактнее (только аватар и стрелка) */
    #profile-menu-btn {
        max-width: 70px !important;
        padding: 6px 8px !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    
    /* Email текст - скрываем */
    #profile-menu-btn > span {
        display: none !important;
    }
    
    /* Аватар - меньше */
    #profile-menu-btn > div:first-child {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }
    
    /* Иконка стрелки - меньше */
    #profile-menu-btn > svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* КРИТИЧЕСКИЕ СТИЛИ ДЛЯ КНОПКИ ВОЙТИ НА МОБИЛЬНЫХ - МАКСИМАЛЬНАЯ СПЕЦИФИЧНОСТЬ */
@media (max-width: 767px) {
    /* Простой и надежный селектор для nav-menu */
    nav.nav-menu,
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    /* Скрываем все nav-link */
    nav.nav-menu > .nav-link,
    .nav-menu > .nav-link {
        display: none !important;
    }
    
    /* Показываем кнопку "Войти" */
    nav.nav-menu > a.btn-primary,
    .nav-menu > a.btn-primary,
    nav.nav-menu > a[href*="login"],
    .nav-menu > a[href*="login"],
    nav.nav-menu > a.btn.btn-primary,
    .nav-menu > a.btn.btn-primary {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 999 !important;
    }
    
    /* Дополнительные селекторы с максимальной специфичностью */
    .header.header .header-container.header-container > nav.nav-menu > a.btn.btn-primary,
    .header.header .header-container.header-container > .nav-menu > a[href*="login"].btn.btn-primary,
    .header .header-container > nav.nav-menu > a.btn-primary,
    .header .header-container > .nav-menu > a[href*="login"] {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
        margin-left: auto !important;
        z-index: 999 !important;
    }
}
/* Проверка: файл обновлен Mon Nov 17 03:54:44 PM MSK 2025 */
