/*-- ==============================================
Мои стили 2026 DeepSeek
==================================== --*/

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

        body {
            background: #0A0A0F;
            color: #F0F0F5;
            font-family: 'Inter', sans-serif;
            line-height: 1.4;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        :root {
            --bg-dark: #0A0A0F;
            --bg-elevated: #111118;
            --accent-gold: #C6A43F;
            --accent-glow: rgba(198, 164, 63, 0.3);
            --text-light: #F5F5FA;
            --text-muted: #A0A0B0;
            --border-dim: rgba(255,255,255,0.08);
            --gradient-primary: linear-gradient(135deg, #C6A43F 0%, #E5C66C 100%);
            --shadow-xl: 0 25px 40px -12px rgba(0,0,0,0.6);
        }

        h1, h2, h3, .logo, .nav-links a {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(3rem, 9vw, 5.8rem);
            font-weight: 700;
            line-height: 1.1;
            background: linear-gradient(to right, #FFFFFF, #E5C66C);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        h2 {
            font-size: clamp(2.2rem, 7vw, 3.8rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

 h3 a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.2s ease;
}
 h3 a:hover {
    color: #F2D97A;
    text-underline-offset: 8px;
}

/* Все ссылки в тексте */
a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 0.2s;
}
a:hover {
    color: #F2D97A;
    text-underline-offset: 6px;
}

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 700px;
            margin-top: -0.5rem;
            margin-bottom: 2.5rem;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            background: transparent;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: #0A0A0F;
            box-shadow: 0 4px 14px rgba(198, 164, 63, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(198, 164, 63, 0.35);
            background: linear-gradient(135deg, #D4B153, #F2D97A);
        }

        .btn-outline {
            border: 1.5px solid rgba(198, 164, 63, 0.6);
            color: var(--text-light);
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            border-color: var(--accent-gold);
            background: rgba(198, 164, 63, 0.1);
            transform: translateY(-2px);
        }

        /* navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 2rem;
            backdrop-filter: blur(12px);
            background: rgba(10, 10, 15, 0.7);
            border-bottom: 1px solid var(--border-dim);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #FFF, #D4AF37);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .burger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }

        /* hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 20% 30%, rgba(198,164,63,0.08) 0%, #0A0A0F 80%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-image img {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
            border-radius: 32px;
            box-shadow: 0 30px 40px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(198,164,63,0.2);
            transition: transform 0.4s ease;
        }

        .hero-image img:hover {
            transform: scale(1.02);
        }

        .hero-tag {
            display: inline-block;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-gold);
            background: rgba(198, 164, 63, 0.12);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.5rem;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 550px;
            margin: 1.2rem 0 2rem;
            line-height: 1.5;
        }

        .btn-group {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .hero-bg-shape {
            position: absolute;
            right: -5%;
            bottom: -10%;
            width: 80%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(198,164,63,0.2), transparent 70%);
            filter: blur(60px);
            z-index: 0;
        }

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

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .stat-item p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-card {
            background: var(--bg-elevated);
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid var(--border-dim);
            box-shadow: var(--shadow-xl);
        }

        /* services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .service-card {
            background: var(--bg-elevated);
            border-radius: 28px;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(198,164,63,0.4);
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.4);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* work */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .work-item {
            background: var(--bg-elevated);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s;
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
        }

        .work-item:hover {
            transform: scale(1.02);
            border-color: rgba(198,164,63,0.5);
        }

        .work-img {
            height: 180px;
            overflow: hidden;
        }
        .work-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .work-item:hover .work-img img {
            transform: scale(1.03);
        }

        .work-info {
            padding: 1.6rem;
            flex: 1;
        }

        .work-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }

        .work-category {
            color: var(--accent-gold);
            font-size: 0.8rem;
            letter-spacing: 1px;
            margin-bottom: 0.7rem;
            display: inline-block;
        }

        .work-description {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 1rem;
        }

        .audio-player {
            margin: 0.8rem 0 1rem;
        }
        audio {
            width: 100%;
            height: 42px;
            border-radius: 40px;
            background: #1a1a24;
        }

        /* video showcase */
        .video-showcase {
            background: radial-gradient(circle at 10% 30%, rgba(20,20,35,0.4), #0A0A0F);
        }
        .video-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 2rem;
            align-items: start;
        }
        .video-menu {
            background: var(--bg-elevated);
            border-radius: 28px;
            border: 1px solid var(--border-dim);
            overflow-y: auto;
            max-height: 500px;
            padding: 0.5rem;
            scrollbar-width: thin;
        }
        .video-menu::-webkit-scrollbar {
            width: 5px;
        }
        .video-menu::-webkit-scrollbar-track {
            background: #1e1e2a;
        }
        .video-menu::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        }
        .video-item {
            display: flex;
            gap: 1rem;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s;
            background: rgba(255,255,255,0.02);
            border: 1px solid transparent;
        }
        .video-item.active {
            background: rgba(198, 164, 63, 0.15);
            border-color: rgba(198, 164, 63, 0.5);
        }
        .video-item:hover:not(.active) {
            background: rgba(255,255,255,0.05);
            transform: translateX(4px);
        }
        .video-thumb {
            width: 90px;
            height: 60px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-info h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .video-info p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .video-player-container {
            background: #08080C;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid var(--border-dim);
            aspect-ratio: 16 / 9;
        }
        .video-player-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

/* списки в две колонки */
    .license-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .license-list div {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }
    .license-list i {
        flex-shrink: 0;
    }
    @media (max-width: 640px) {
        .license-list {
            grid-template-columns: 1fr;
        }
    }


        /* преимущества */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }
        .advantage-card {
            background: var(--bg-elevated);
            border-radius: 28px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .advantage-card:hover {
            transform: translateY(-8px);
            border-color: rgba(198,164,63,0.4);
        }
        .advantage-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        .advantage-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        .advantage-card p {
            color: var(--text-muted);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* лицензирование */
        .license-section {
            background: linear-gradient(145deg, #0F0F17 0%, #08080D 100%);
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid var(--border-dim);
        }
        .license-table {
            width: 100%;
            margin: 1.5rem 0;
            border-collapse: collapse;
            background: rgba(0,0,0,0.3);
            border-radius: 20px;
            overflow: hidden;
        }
        .license-table th, .license-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-dim);
        }
        .license-table th {
            color: var(--accent-gold);
            font-weight: 600;
            background: rgba(198,164,63,0.1);
        }
        .license-table td {
            color: var(--text-muted);
        }
        .license-table tr:last-child td {
            border-bottom: none;
        }
        .max-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(198,164,63,0.15);
            padding: 0.8rem 1.5rem;
            border-radius: 40px;
            margin-top: 1rem;
            text-decoration: none;
            color: var(--accent-gold);
            font-weight: 600;
            transition: 0.2s;
        }
        .max-link:hover {
            background: var(--accent-gold);
            color: #0A0A0F;
        }

        /* Контактная форма — красивые стили для любых полей внутри .contact-form */
        .contact-flex {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        .contact-info {
            background: var(--bg-elevated);
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid var(--border-dim);
        }
        .contact-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        .contact-detail i {
            font-size: 1.6rem;
            color: var(--accent-gold);
            width: 2rem;
        }
        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 2rem;
        }
        .social-links a {
            background: rgba(255,255,255,0.05);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.4rem;
            transition: 0.2s;
        }
        .social-links a:hover {
            background: var(--accent-gold);
            color: #0A0A0F;
        }

        /* УНИВЕРСАЛЬНЫЕ СТИЛИ ДЛЯ ФОРМЫ — возвращаем красоту */
        .contact-form {
            background: var(--bg-elevated);
            border-radius: 28px;
            padding: 1.8rem;
            border: 1px solid var(--border-dim);
            transition: all 0.2s;
        }
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            background: #111118;
            border: 1px solid var(--border-dim);
            padding: 1rem 1.2rem;
            border-radius: 28px;
            color: white;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1.2rem;
            transition: 0.2s;
            outline: none;
        }
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(198,164,63,0.2);
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .contact-form button,
        .contact-form input[type="submit"],
        .contact-form input[type="button"] {
            background: var(--gradient-primary);
            border: none;
            font-weight: 700;
            padding: 1rem;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            color: #0A0A0F;
            width: 100%;
            transition: all 0.3s ease;
            font-family: inherit;
            margin-top: 0.5rem;
        }
        .contact-form button:hover,
        .contact-form input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(198, 164, 63, 0.35);
            background: linear-gradient(135deg, #D4B153, #F2D97A);
        }
        /* стили для меток, если они появятся */
        .contact-form label {
            display: block;
            margin-bottom: 0.4rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }
        /* убираем лишние отступы у последнего элемента */
        .contact-form :last-child {
            margin-bottom: 0;
        }
        /* placeholder стиль */
        .contact-form ::placeholder {
            color: rgba(160,160,176,0.6);
        }

        footer {
            border-top: 1px solid var(--border-dim);
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            .container {
                padding: 0 1.5rem;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .hero-image {
                order: 1;
                display: flex;
                justify-content: center;
            }
            .hero-content {
                order: 2;
                text-align: center;
                align-items: center;
            }
            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }
            .about-grid, .contact-flex, .video-grid {
                grid-template-columns: 1fr;
            }
            .video-menu {
                max-height: 280px;
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                gap: 1rem;
            }
            .video-item {
                flex-direction: column;
                min-width: 180px;
            }
            .video-thumb {
                width: 100%;
                height: 100px;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 2rem;
                transition: left 0.3s ease;
                border-right: 1px solid var(--border-dim);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .burger {
                display: block;
            }
        }
        @media (max-width: 560px) {
            section {
                padding: 3rem 0;
            }
            .btn-group {
                flex-direction: column;
                align-items: stretch;
            }
            .contact-form {
                padding: 1.2rem;
            }
        }

/* подвал */
/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0 1rem 0;
    text-align: left;
}
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}
.footer-col p, .footer-col ul {
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
}
.footer-col a:hover {
    color: var(--accent-gold);
}
.footer-bottom {
    border-top: 1px solid var(--border-dim);
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul {
        padding: 0;
    }
}

/* Кнопки внутри карточек работ */
.work-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.btn-work {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}
.btn-work-primary {
    background: var(--gradient-primary);
    color: #0A0A0F;
    border: none;
}
.btn-work-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(198, 164, 63, 0.3);
}
.btn-work-outline {
    background: transparent;
    border: 1.5px solid rgba(198, 164, 63, 0.6);
    color: var(--text-light);
}
.btn-work-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(198, 164, 63, 0.1);
    transform: translateY(-2px);
}
/* для мобильных */
@media (max-width: 560px) {
    .work-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-work {
        justify-content: center;
    }
}

/* Кнопка "Лицензия" – единый стиль */
.license-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #C6A43F 0%, #E5C66C 100%);
    color: #000000;
    width: 300px;
    padding: 12px 0;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Эффекты при наведении */
.license-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(198, 164, 63, 0.4);
    color: #FFFFFF !important;
}

/* Блок "Классическая база" */
.bio-education {
    display: flex;
    gap: 1.2rem;
    background: rgba(17, 17, 24, 0.6);
    border-radius: 28px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-dim);
    backdrop-filter: blur(4px);
    transition: transform 0.2s, border-color 0.2s;
}
.bio-education:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}
.bio-education-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--accent-gold);
}
.bio-education-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}
.bio-education-content p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}
@media (max-width: 560px) {
    .bio-education {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ===== DROPDOWN МЕНЮ ===== */
.dropdown {
    position: relative;
    cursor: pointer;
}
.dropdown-toggle {
    color: var(--text-light);
    font-weight: 500;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 17, 24, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 0.5rem 0;
    min-width: 200px;
    border: 1px solid var(--border-dim);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}
.dropdown-menu a:hover {
    background: rgba(198,164,63,0.15);
    color: var(--accent-gold);
}
/* Адаптация для мобильных (бургер-меню) */
@media (max-width: 900px) {
    .dropdown {
        width: 100%;
    }
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        background: rgba(30,30,40,0.95);
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: hidden;
        transform: none;
        display: none;
        padding-left: 1rem;
    }
    .dropdown.open .dropdown-menu {
        display: block;
        visibility: visible;
    }
    .dropdown-menu a {
        padding: 0.5rem 0 0.5rem 1rem;
    }
}

/* Сетка для 4 карточек в блоке "Направления" */
.services-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
/* Фон для блока услуг (как было на сайте) */
.services-wrapper {
    background: radial-gradient(circle at 80% 20%, rgba(20,20,35,0.5), #0A0A0F);
    padding: 1rem 0 4rem 0;
    margin-top: 1rem;
}
/* Адаптив: на планшетах — 2 колонки */
@media (max-width: 1100px) {
    .services-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
/* На телефонах — 1 колонка */
@media (max-width: 640px) {
    .services-grid-4col {
        grid-template-columns: 1fr;
    }
}
/* Дополнительно: чтобы карточки не растягивались слишком сильно на очень широких экранах */
@media (min-width: 1600px) {
    .services-grid-4col {
        grid-template-columns: repeat(4, 1fr);
    }
}