/* ===== ОСНОВНЫЕ ПЕРЕМЕННЫЕ ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: linear-gradient(135deg, #1a1a1a 0%, rgba(10,10,10,0.7) 100%);
    --bg-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gold-primary: #ffd700;
    --gold-hover: #ffed4a;
    --gold-dark: #b8860b;
    --border-color: #333333;
    --success: #00c851;
    --warning: #ffbb33;
    --danger: #ff4444;
}

/* ===== ОБЩИЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ТИПОГРАФИКА ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gold {
    color: var(--gold-primary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== НАВИГАЦИЯ ===== */
.navbar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-gold {
    color: var(--gold-primary);
}

/* Меню навигации */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

/* Кнопки в навигации */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.btn-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
}

/* Мобильная кнопка */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn .material-icons {
    font-size: 32px;
}

.mobile-only {
    display: none;
}

/* ===== КНОПКИ ===== */
.gold-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.gold-button:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.gold-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.gold-button-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../static/background.jpg') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature .material-icons {
    color: var(--gold-primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== СЕКЦИИ ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

/* ===== КАРТОЧКИ ===== */
.problems-grid,
.prices-grid,
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card,
.price-card,
.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.problem-card:hover,
.price-card:hover,
.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gold-bg {

}

.gold-bg .material-icons {
    color: var(--gold-primary);
}

.problem-card h3,
.price-card h3,
.advantage-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.problem-card p,
.advantage-card p {
    color: var(--text-secondary);
    font-size: 1.08rem;
}

/* ===== ЦЕНЫ ===== */
.price-card {
    position: relative;
}

.price-card.popular {
    border-color: var(--gold-primary);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255,215,0,0.1) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold-primary);
    color: var(--bg-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 10px;
}

.price.gold {
    color: var(--gold-primary);
}

.price-features {
    list-style: none;
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.price-features .material-icons {
    color: var(--gold-primary);
    font-size: 20px;
}

.price-features .gold-item {
    color: var(--gold-primary);
    font-weight: 500;
}

/* ===== ФОРМА ===== */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-title {
    font-size: 2rem;
    margin: 16px 0 32px;
    line-height: 1.3;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon .material-icons {
    color: var(--gold-primary);
}

.benefit-item h4 {
    margin-bottom: 4px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Поля формы */
.input-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.input-field:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.input-field .material-icons {
    color: var(--text-secondary);
}

.input-field input,
.input-field select,
.input-field textarea {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 0;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.input-field select {
    flex: 1;
    background: var(--bg-primary);  /* Черный фон */
    border: none;
    padding: 14px 0;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    cursor: pointer;
}

.input-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* Чекбокс */
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
}

/* ===== ОТЗЫВЫ ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author .material-icons {
    font-size: 40px;
    color: var(--border-color);
}

.review-author strong {
    display: block;
}

.review-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== ФУТЕР ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.footer h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.contact-list,
.hours-list {
    list-style: none;
}

.contact-list li,
.hours-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.contact-list .material-icons,
.hours-list .material-icons {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== УВЕДОМЛЕНИЯ ===== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    margin: 16px auto;
    max-width: 1200px;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: rgba(0, 200, 81, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* ===== АНИМАЦИИ ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 0.8s ease;
}

.problem-card,
.price-card,
.advantage-card,
.review-card {
    animation: fadeIn 0.6s ease backwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== МОБИЛЬНЫЕ СТИЛИ ===== */
@media screen and (max-width: 1024px) {
    .problems-grid,
    .prices-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badge {
        margin-top: 32px;
    }

    .hero-features {
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    /* Мобильное меню */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px;
        text-align: center;
        border-radius: 8px;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Hero секция */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    /* Сетки */
    .problems-grid,
    .prices-grid,
    .advantages-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Форма */
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    /* Футер */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Секции */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
    }
}

/* Класс для центрирования текста */
.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Центрирование features */
.text-center .hero-features {
    justify-content: center;
}

/* Если нужно центрировать и сам контейнер hero-content */
.hero-content.text-center {
    max-width: 900px; /* Ограничиваем ширину для лучшей читаемости */
}

.hero-stats {
    justify-content: center;
}

.hero-actions {
    justify-content: center;
}

/* ===== АДМИН-ПАНЕЛЬ ===== */
.admin-dashboard {
    padding: 40px 0;
}

/* Шапка админки */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    margin-bottom: 8px;
}

.admin-title .material-icons {
    color: var(--gold-primary);
    font-size: 36px;
}

.admin-subtitle {
    color: var(--text-secondary);
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.stat-card.new {
    border-left: 4px solid var(--warning);
}
.stat-card.in-progress {
    border-left: 4px solid var(--success);
}
.stat-card.completed {
    border-left: 4px solid var(--gold-primary);
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper .material-icons {
    font-size: 32px;
    color: var(--gold-primary);
}

.stat-info {
    flex: 1;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Фильтры */
.filters-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.filters-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--bg-primary);
}

.filter-btn.active .material-icons {
    color: var(--bg-primary);
}

/* Поиск */
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0 20px;
    min-width: 300px;
}

.search-wrapper .material-icons {
    color: var(--text-secondary);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--text-primary);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

/* Карточки заявок */
.requests-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.request-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.request-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.request-card.status-new {
    border-left: 4px solid var(--warning);
}
.request-card.status-in_progress {
    border-left: 4px solid var(--success);
}
.request-card.status-completed {
    border-left: 4px solid var(--gold-primary);
    opacity: 0.9;
}

/* Заголовок карточки */
.request-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 12px;
}

.request-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.request-id .material-icons {
    color: var(--gold-primary);
}

.request-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.request-date .material-icons {
    font-size: 18px;
}

/* Статус бейдж */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.status-new {
    background: rgba(255, 187, 51, 0.1);
    color: var(--warning);
}
.status-badge.status-in_progress {
    background: rgba(0, 200, 81, 0.1);
    color: var(--success);
}
.status-badge.status-completed {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
}

/* Тело карточки */
.request-card-body {
    padding: 24px;
}

.request-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-column-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.info-column-title .material-icons {
    font-size: 20px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
}

.info-value.phone {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.info-value.phone:hover {
    text-decoration: underline;
}

/* Footer карточки */
.request-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.status-form {
    flex: 1;
}

.status-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.select-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 12px;
    min-width: 200px;
}

.select-wrapper .material-icons {
    color: var(--gold-primary);
}

.status-select {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
}

/* Кнопка удаления */
.delete-form {
    margin-left: 16px;
}

.delete-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Пустое состояние */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.empty-state-icon .material-icons {
    font-size: 40px;
    color: var(--gold-primary);
}

.empty-state h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .request-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-wrapper {
        width: 100%;
    }
    
    .request-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .status-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .select-wrapper {
        width: 100%;
    }
    
    .delete-form {
        margin-left: 0;
        margin-top: 12px;
    }
}

/* ===== СЕКЦИЯ С МАРКАМИ АВТОМОБИЛЕЙ ===== */
.car-brands-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.brands-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Левая часть с контентом */
.brands-content {
    padding-right: 20px;
}

/* Заголовок секции слева */
.section-header.left {
    text-align: left;
    margin: 0 0 32px 0;
}

.section-header.left .section-title {
    text-align: left;
}

.section-header.left .section-description {
    margin-left: 0;
}

/* Сетка с марками */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.brand-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.brand-category:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.brand-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.brand-category-title .material-icons {
    font-size: 20px;
}

.brand-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
}

.brand-item:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.05);
}

/* Футер с информацией */
.brands-footer {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.brands-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.brands-stat .material-icons {
    color: var(--gold-primary);
    font-size: 20px;
}

/* Правая часть с изображением */
.brands-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    animation: floatCar 4s ease-in-out infinite;
}

.image-overlay-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Анимации */
@keyframes floatCar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .brands-wrapper {
        gap: 40px;
    }
    
    .brands-image {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .brands-wrapper {
        grid-template-columns: 1fr;
    }
    
    .brands-image {
        height: 400px;
        order: -1;
    }
    
    .brands-content {
        padding-right: 0;
    }
    
    .section-header.left {
        text-align: center;
    }
    
    .section-header.left .section-title {
        text-align: center;
    }
}

/* ===== СЕКЦИЯ С МАРКАМИ АВТОМОБИЛЕЙ ===== */
.car-brands-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Фоновое изображение автомобиля */
.brands-background {
    position: absolute;
    top: -70%;
    right: -50%;
    width: 300%;
    height: 300%;
    pointer-events: none; /* Чтобы не мешать кликам */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.background-car {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    opacity: 0.15; /* Полупрозрачность */
    filter: grayscale(100%); /* Черно-белый для элегантности */
    margin-right: -5%; /* Частично выходит за пределы */
}

/* Контент (поверх фона) */
.car-brands-section .container {
    position: relative;
    z-index: 2;
}

.brands-content {
    position: relative;
    z-index: 3;
}

/* Сетка с марками */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.brand-category {
    background: rgba(26, 26, 26, 0.7); /* Полупрозрачный фон */
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.brand-category:hover {
    border-color: var(--gold-primary);
    background: rgba(26, 26, 26, 0.9);
}

.brand-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.brand-category-title .material-icons {
    font-size: 20px;
}

.brand-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-item {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
}

.brand-item:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Футер с информацией */
.brands-footer {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.brands-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.brands-stat .material-icons {
    color: var(--gold-primary);
    font-size: 20px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-background {
        width: 300%;
    }
}

@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-background {
        opacity: 0;
        width: 200%;
        justify-content: center;
    }
    
    .background-car {
        max-width: 70%;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .brands-background {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .brand-item {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

/* Процесс работы */
.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    -webkit-text-stroke: 1px var(--gold-primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon .material-icons {
    font-size: 30px;
    color: var(--gold-primary);
}

.process-step h3 {
    margin-top: 60px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Типы коробок - обновленные стили */
.transmission-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.transmission-card {
    background-color: var(--bg-card);
    background-size: 110% auto; /* Чуть больше, чем карточка */
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0; /* Убираем padding, добавим на контент */
    position: relative;
    overflow: hidden;
    min-height: 280px; /* Фиксированная высота */
    transition: all 0.3s;
}

/* Затемнение фона для читаемости текста */
.transmission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Контент поверх фона */
.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Заголовок */
.transmission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold-primary);
    position: relative;
}

/* Подзаголовок */
.transmission-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Список особенностей */
.transmission-features {
    list-style: none;
    margin-top: auto;
}

.transmission-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.transmission-features li:last-child {
    border-bottom: none;
}

.transmission-features li::before {
    content: "•";
    color: var(--gold-primary);
    font-weight: bold;
    margin-right: 8px;
}

/* Эффект при наведении */
.transmission-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.transmission-card:hover::before {
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.65) 100%);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .transmission-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transmission-types {
        grid-template-columns: 1fr;
    }
    
    .transmission-card {
        min-height: 250px;
    }
}

.transmission-card[data-bg="akpp"] {
    position: relative;
    background-image: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);;
}

.transmission-card[data-bg="akpp"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../static/akpp.png');
    background-size: 180% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Прозрачность 30% */
    z-index: 0;
    pointer-events: none;
}

.transmission-card[data-bg="mkpp"] {
    position: relative;
    background-image: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);;
}

.transmission-card[data-bg="mkpp"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../static/mkpp.png');
    background-size: 180% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Прозрачность 30% */
    z-index: 0;
    pointer-events: none;
}

.transmission-card[data-bg="cvt"] {
    position: relative;
    background-image: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);;
}

.transmission-card[data-bg="cvt"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../static/cvt.png');
    background-size: 180% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Прозрачность 30% */
    z-index: 0;
    pointer-events: none;
}

.transmission-card[data-bg="dsg"] {
    position: relative;
    background-image: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);;
}

.transmission-card[data-bg="dsg"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../static/dsg.png');
    background-size: 200% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Прозрачность 30% */
    z-index: 0;
    pointer-events: none;
}

/* Мастера */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.master-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.master-image .material-icons {
    font-size: 80px;
    color: var(--gold-primary);
}

.master-position {
    color: var(--text-secondary);
    margin: 10px 0;
}

.master-specialization {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,215,0,0.1);
    color: var(--gold-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.18rem;
}

.faq-question .material-icons {
    transition: transform 0.3s;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 28px;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 260px;
    padding: 0 28px 24px;
}

/* Сертификаты */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.certificate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.certificate-card .material-icons {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

/* Статьи */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.article-image {
    height: 160px;
    background: rgba(255,215,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image .material-icons {
    font-size: 60px;
    color: var(--gold-primary);
}

.article-content {
    padding: 20px;
}

.article-date {
    color: var(--gold-primary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.article-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.article-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .transmission-types {
        grid-template-columns: repeat(2, 1fr);
    }
    .masters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .transmission-types,
    .masters-grid,
    .certificates-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== СТРАНИЦА АВТОРИЗАЦИИ ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Фоновые декоративные элементы */
.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.auth-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    top: -100px;
    right: -100px;
}

.auth-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-dark);
    bottom: -50px;
    left: -50px;
}

.auth-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gold-primary);
    bottom: 50px;
    right: 200px;
}

/* Основной контейнер */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

/* Левая информационная часть */
.auth-info {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.auth-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,215,0,0.1), transparent 70%);
    pointer-events: none;
}

.auth-info-content {
    position: relative;
    z-index: 1;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.auth-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.auth-info-text {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.auth-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.auth-feature:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.auth-feature .material-icons {
    color: var(--gold-primary);
    font-size: 20px;
}

.auth-feature span:last-child {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.auth-info-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gold-primary);
    filter: blur(80px);
    opacity: 0.1;
    border-radius: 50%;
}

/* Правая карточка с формой */
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.6s ease;
}

.auth-card-inner {
    padding: 48px 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--text-secondary);
}

/* Форма */
.auth-form {
    margin-bottom: 24px;
}

.auth-form .input-field {
    margin-bottom: 20px;
}

/* Поле с паролем и кнопкой показать */
.password-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--gold-primary);
}

/* Опции */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 30px;
}

.forgot-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--gold-primary);
}

/* Кнопка входа */
.auth-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.auth-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.auth-button:hover::before {
    width: 300px;
    height: 300px;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.auth-button .material-icons {
    font-size: 20px;
    transition: transform 0.3s;
}

.auth-button:hover .material-icons {
    transform: translateX(5px);
}

/* Демо-доступ */
.auth-demo {
    background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(255,215,0,0.02) 100%);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.demo-badge {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: var(--gold-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.demo-credentials {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.credential-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.credential-value {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255,215,0,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Футер */
.auth-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 24px;
}

/* Анимации */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .auth-info {
        display: none;
    }
    
    .auth-card {
        animation: fadeIn 0.6s ease;
    }
}

@media (max-width: 768px) {
    .auth-card-inner {
        padding: 32px 24px;
    }
    
    .auth-options {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .demo-credentials {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .auth-card {
        border-radius: 16px;
    }
    
    .auth-card-inner {
        padding: 24px 16px;
    }
    
    .auth-title {
        font-size: 1.8rem;
    }
    
    .auth-logo {
        font-size: 1.5rem;
    }
}

/* Зачёркнутая старая цена — мелкий и приглушённый шрифт */
    .price del {
        font-size: 0.8rem;
        color: #888;
        margin-right: 8px;
    }
    .price-current {
        font-weight: 700;
    }
    .price-note {
        font-size: 0.9rem;
        color: #666;
        margin: 8px 0;
    }