
        :root {
            --bg: #0b1220;
            --bg-2: #111827;
            --panel: rgba(15, 23, 42, 0.75);
            --card: rgba(255, 255, 255, 0.04);
            --card-strong: rgba(255, 255, 255, 0.06);
            --line: rgba(148, 163, 184, 0.18);
            --text: #f8fafc;
            --muted: #94a3b8;
            --accent: #f97316;
            --accent-2: #22c55e;
            --danger: #ef4444;
            --white: #ffffff;
            --shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
            --radius: 22px;
            --container: min(1120px, calc(100% - 32px));
            --safe-bottom: max(16px, env(safe-area-inset-bottom));
            --safe-top: max(0px, env(safe-area-inset-top));
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            
            scroll-behavior: smooth;
        }

        body {
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 28%),
                radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 22%),
                linear-gradient(180deg, #08101d 0%, #0b1220 45%, #0d1525 100%);
            line-height: 1.55;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 28px 28px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.18), transparent 55%);
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        a,
        summary {
            -webkit-tap-highlight-color: transparent;
        }

        a:focus-visible,
        button:focus-visible,
        summary:focus-visible {
            outline: 3px solid rgba(249, 115, 22, 0.55);
            outline-offset: 3px;
            border-radius: 12px;
        }

        .container {
            width: var(--container);
            margin: 0 auto;
        }

        section[id] {
            scroll-margin-top: 110px;
        }

        .topline {
            border-bottom: 1px solid var(--line);
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(12px);
        }

        .topline-inner {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 10px 0;
            color: var(--muted);
            font-size: 14px;
        }

        .topline-inner span {
            position: relative;
        }

        .topline-inner span:not(:last-child)::after {
            content: "•";
            position: absolute;
            right: -12px;
            color: rgba(255,255,255,0.25);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 18, 32, 0.72);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid transparent;
            transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .site-header.is-scrolled {
            border-color: var(--line);
            box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
            background: rgba(11, 18, 32, 0.88);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 78px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .logo-badge {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: linear-gradient(135deg, #f97316, #fb923c);
            color: var(--white);
            font-size: 14px;
            font-weight: 800;
            box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
            flex: 0 0 auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-text strong {
            font-size: 18px;
            font-weight: 800;
            color: var(--white);
        }

        .logo-text small {
            font-size: 12px;
            color: var(--muted);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav a {
            padding: 10px 14px;
            border-radius: 999px;
            color: var(--muted);
            font-size: 14px;
            transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }

        .nav a:hover {
            color: var(--white);
            background: rgba(255,255,255,0.06);
            transform: translateY(-1px);
        }

        .header-phone {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent), #fb923c);
            color: var(--white);
            font-weight: 800;
            white-space: nowrap;
            box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .header-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(249, 115, 22, 0.32);
        }

        .section {
            padding: 88px 0;
        }

        .section-head {
            max-width: 740px;
            margin-bottom: 34px;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-2);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: clamp(30px, 5vw, 48px);
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 14px;
        }

        .section-text {
            color: var(--muted);
            font-size: 16px;
            max-width: 680px;
        }
        
        .section-text2 {
            color: var(--muted);
            font-size: 16px;
        
        }

        .hero {
            padding: 54px 0 74px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
            gap: 26px;
            align-items: stretch;
        }

        .hero-copy,
        .hero-panel {
            border: 1px solid var(--line);
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
            box-shadow: var(--shadow);
        }

        .hero-copy {
            padding: 34px;
            position: relative;
            overflow: hidden;
        }

        .hero-copy::after {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            right: -80px;
            top: -100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 70%);
            pointer-events: none;
        }

        .hero-panel {
            padding: 26px;
            background:
                radial-gradient(circle at top right, rgba(34,197,94,0.12), transparent 28%),
                linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(34,197,94,0.08);
            border: 1px solid rgba(34,197,94,0.22);
            color: #bbf7d0;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .online-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-2);
            box-shadow: 0 0 0 rgba(34,197,94,0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
            70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
            100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
        }

        .hero h1 {
            font-size: clamp(38px, 7vw, 66px);
            line-height: 0.98;
            letter-spacing: -0.05em;
            max-width: 12ch;
            margin-bottom: 18px;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #fff, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-lead {
            font-size: 18px;
            color: #d7e0eb;
            max-width: 58ch;
            margin-bottom: 26px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 20px;
            border-radius: 14px;
            font-weight: 800;
            font-size: 15px;
            border: 1px solid transparent;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            color: var(--white);
            background: linear-gradient(135deg, var(--accent), #fb923c);
            box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
        }

        .btn-primary:hover {
            box-shadow: 0 20px 38px rgba(249, 115, 22, 0.32);
        }

        .btn-outline {
            color: var(--white);
            border-color: var(--line);
            background: rgba(255,255,255,0.04);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.22);
        }

        .btn-block {
            width: 100%;
        }

        .hero-points {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 14px;
            margin-bottom: 22px;
        }

        .hero-points li {
            position: relative;
            padding-left: 24px;
            color: var(--muted);
            font-size: 14px;
        }

        .hero-points li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-2);
            font-weight: 800;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            color: #e2e8f0;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--line);
        }

        .panel-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #bbf7d0;
            margin-bottom: 10px;
        }

        .panel-time {
            font-size: clamp(38px, 6vw, 56px);
            line-height: 1;
            letter-spacing: -0.05em;
            margin-bottom: 18px;
        }

        .panel-desc {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .stats {
            display: grid;
            gap: 12px;
            margin-bottom: 18px;
        }

        .stat {
            padding: 16px;
            border-radius: 18px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,0.04);
        }

        .stat strong {
            display: block;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .stat span {
            color: var(--muted);
            font-size: 14px;
        }

        .panel-note {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 18px;
        }

        .cards {
            display: grid;
            gap: 18px;
        }

        .cards-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .cards-4 {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .card {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: linear-gradient(180deg, var(--card-strong), var(--card));
            padding: 24px;
            box-shadow: var(--shadow);
        }

        .service-card {
            min-height: 100%;
        }

        .service-icon {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            font-size: 24px;
            margin-bottom: 16px;
            background: rgba(249,115,22,0.12);
            border: 1px solid rgba(249,115,22,0.22);
        }

        .card h3 {
            font-size: 20px;
            line-height: 1.15;
            margin-bottom: 10px;
        }

        .card p {
            color: var(--muted);
            font-size: 15px;
        }

        .muted-section {
            background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .advantage-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            margin-bottom: 14px;
            font-size: 18px;
            font-weight: 800;
            color: var(--white);
            background: linear-gradient(135deg, var(--accent), #fb923c);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .step {
            position: relative;
            padding: 22px;
            border-radius: 22px;
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
        }

        .step-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            background: rgba(34,197,94,0.16);
            color: #bbf7d0;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .step h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .step p {
            color: var(--muted);
            font-size: 14px;
        }

        .review-card {
            position: relative;
            overflow: hidden;
        }

        .review-card::before {
            content: "“";
            position: absolute;
            right: 16px;
            top: -8px;
            font-size: 84px;
            line-height: 1;
            color: rgba(249,115,22,0.14);
            font-family: Georgia, serif;
        }

        .stars {
            color: #fbbf24;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .review-text {
            margin-bottom: 16px;
            color: #d8e0ea;
            font-size: 15px;
        }

        .review-author {
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        .faq {
            display: grid;
            gap: 12px;
            max-width: 900px;
        }

        .faq-item {
            border: 1px solid var(--line);
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
            overflow: hidden;
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 54px 20px 20px;
            font-weight: 800;
            position: relative;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            color: var(--accent);
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px 20px;
            color: var(--muted);
            font-size: 15px;
        }

        .cta-box {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 20px;
            padding: 28px;
            border-radius: 28px;
            border: 1px solid rgba(249,115,22,0.26);
            background:
                radial-gradient(circle at right top, rgba(249,115,22,0.16), transparent 30%),
                linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
            box-shadow: var(--shadow);
        }

        .cta-box h2 {
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.05;
            margin-bottom: 10px;
        }

        .cta-box p {
            color: var(--muted);
            max-width: 56ch;
        }

        .phone-big {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 62px;
            padding: 0 24px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--accent), #fb923c);
            color: var(--white);
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 900;
            box-shadow: 0 18px 36px rgba(249,115,22,0.28);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }

        .phone-big:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 44px rgba(249,115,22,0.36);
        }

        .cta-meta {
            margin-top: 10px;
            color: #bbf7d0;
            font-size: 14px;
            font-weight: 700;
        }

        .footer {
            padding: 42px 0 calc(32px + var(--safe-bottom));
            border-top: 1px solid var(--line);
            background: rgba(2, 6, 23, 0.78);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .footer h3 {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .footer p,
        .footer li,
        .footer a {
            color: var(--muted);
            font-size: 14px;
        }

        .footer ul {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .footer-brand {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid var(--line);
            color: var(--muted);
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .floating-call {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 1100;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 58px;
            padding: 0 18px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--accent), #fb923c);
            color: var(--white);
            font-weight: 800;
            box-shadow: 0 18px 40px rgba(249,115,22,0.34);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .floating-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 44px rgba(249,115,22,0.42);
        }

        .mobile-callbar {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1200;
            padding: 12px 16px calc(12px + var(--safe-bottom));
            background: rgba(11, 18, 32, 0.94);
            backdrop-filter: blur(16px);
            border-top: 1px solid var(--line);
            gap: 12px;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-callbar-text {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.3;
        }

        .mobile-callbar-btn {
            flex: 0 0 auto;
            min-height: 48px;
            padding: 0 16px;
            border-radius: 12px;
            font-weight: 800;
            color: var(--white);
            background: linear-gradient(135deg, var(--accent), #fb923c);
        }

        @media (max-width: 1100px) {
            .cards-4,
            .steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 920px) {
            .nav {
                display: none;
            }

            .hero-grid,
            .cta-box {
                grid-template-columns: 1fr;
            }

            .header-inner {
                min-height: 72px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 84px;
            }

            .topline-inner {
                font-size: 12px;
                gap: 8px 14px;
            }

            .header-inner {
                gap: 12px;
            }

            .logo-text small {
                display: none;
            }

            .header-phone {
                display: none;
            }

            .hero {
                padding: 28px 0 58px;
            }

            .hero-copy,
            .hero-panel,
            .card,
            .step,
            .cta-box {
                padding: 20px;
                border-radius: 20px;
            }

            .hero h1 {
                max-width: none;
            }

            .hero-lead {
                font-size: 16px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-points {
                grid-template-columns: 1fr;
            }

            .cards-3,
            .cards-4,
            .footer-grid,
            .steps {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 68px 0;
            }

            .floating-call {
                display: none;
            }

            .mobile-callbar {
                display: flex;
            }

            .footer-bottom {
                flex-direction: column;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
            }
        }
        
        .locations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(249,115,22,0.32);
}

@media (max-width: 1100px) {
    .locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Карта */
.map-wrapper {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    border: 0;
    border-radius: 20px;
    display: block;
}

/* Плашки с адресом и телефоном */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
    margin-top: 30px;
}

.contact-card {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    background: #f8f8f8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-card .icon {
    font-size: 24px;
    color: #de5301;
}

.contact-card a {
    color: #000;
    text-decoration: none;
}

/* Контакты в стиле CTA */
.contact-cta {
    display: grid;
    grid-template-columns: 1fr; /* только одна колонка */
    gap: 20px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(249,115,22,0.26);
    background:
        radial-gradient(circle at right top, rgba(249,115,22,0.16), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow: 0 18px 36px rgba(249,115,22,0.28);
    margin-top: 30px;
}

.contact-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    margin-bottom: 10px;
}

.contact-cta p {
    color: var(--muted);
    max-width: 56ch;
}

.contact-cta .cta-meta {
    margin-top: 10px;
    color: #bbf7d0;
    font-size: 14px;
    font-weight: 700;
}

/* Контактные плашки */

.contact-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    color: #bbf7d0; 
}


.contact-plates {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contact-plate {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(249,115,22,0.24);
}

.contact-plate .icon {
    font-size: 24px;
}

/* Адаптивность */
@media(max-width: 768px) {
    .contact-plates {
        gap: 12px;
    }
    .contact-plate {
        flex-direction: row;
        font-size: 16px;
        padding: 14px 16px;
    }
}


/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
     z-index: 1100;
}

.burger span {
    display: block;
    height: 2px;
    width: 18px;
    background: var(--white);
    margin: 0 auto;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(2,6,23,0.85);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    padding: 24px;
    background: var(--bg);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: 0.3s;
}

.mobile-menu.active .mobile-menu-inner {
    transform: translateX(0);
}

/* NAV */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav a {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    font-weight: 700;
}

/* PHONE */
.mobile-phone {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    font-weight: 800;
}

/* ACTIVE BURGER */
.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 920px) {
    .burger {
        display: flex;
    }
}

