:root {
            --accent: #ffb400;
            --accent-dark: #e29d00;
            --bg: #0e1013;
            --bg-light: #181b20;
            --text: #f5f5f5;
            --muted: #b0b3c0;
            --card: #1f232b;
            --danger: #ff4c4c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top, #1f232b 0, #05060a 55%, #020308 100%);
            color: var(--text);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(1120px, 100% - 32px);
            margin-inline: auto;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(14px);
            background: linear-gradient(to bottom, rgba(5, 6, 10, 0.92), rgba(5, 6, 10, 0.75), transparent);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 14px;
            background: radial-gradient(circle at 20% 20%, #fff8dc 0, var(--accent) 40%, var(--accent-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            color: #181818;
            box-shadow: 0 0 30px rgba(255, 180, 0, 0.5);
        }

        .logo-text-main {
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            font-size: 14px;
        }

        .logo-text-sub {
            font-size: 11px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .09em;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
        }

        nav a {
            position: relative;
            color: var(--muted);
            padding-bottom: 2px;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 999px;
            transition: width .2s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .header-phone {
            display: flex;
            flex-direction: column;
            text-align: right;
            gap: 2px;
        }

        .header-phone a {
            font-weight: 600;
            font-size: 15px;
        }

        .header-phone span {
            font-size: 11px;
            color: var(--muted);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: #151515;
            box-shadow: 0 8px 20px rgba(255, 180, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(255, 180, 0, 0.55);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, .12);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, .04);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* HERO */

        .hero {
            padding: 40px 0 64px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 32px;
            align-items: center;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px 4px 4px;
            border-radius: 999px;
            background: rgba(31, 35, 43, .85);
            border: 1px solid rgba(255, 255, 255, .06);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: var(--muted);
            margin-bottom: 16px;
        }

        .hero-label-dot {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: radial-gradient(circle, #7CFC00 0, #1f8b1f 55%, #0b3d0b 100%);
            box-shadow: 0 0 16px rgba(123, 252, 0, .55);
        }

        .hero-title {
            font-size: clamp(28px, 4.2vw, 40px);
            font-weight: 750;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .hero-title span {
            color: var(--accent);
        }

        .hero-subtitle {
            color: var(--muted);
            max-width: 460px;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .hero-badge {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .16);
            color: var(--muted);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .hero-note {
            font-size: 12px;
            color: var(--muted);
        }

        .hero-note strong {
            color: var(--accent);
        }

        .hero-right {
            position: relative;
        }

        .hero-card {
            background: radial-gradient(circle at top, #2a2f3b, #151922);
            border-radius: 26px;
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            box-shadow:
                    0 20px 60px rgba(0, 0, 0, 0.65),
                    0 0 80px rgba(255, 180, 0, 0.12);
        }

        .hero-room {
			position: relative;
			border-radius: 18px;
			overflow: hidden;
			aspect-ratio: 4/3;
			background:
        linear-gradient(135deg, rgba(48, 51, 59, 0.6), rgba(24, 27, 34, 0.6)),
        url("img/room1.jpg") center/cover no-repeat;
}

        .hero-room-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(0,0,0,.15), transparent 55%);
			
        }

        .hero-room-label {
            position: absolute;
            left: 14px;
            top: 14px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(0, 0, 0, .55);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .14em;
            color: var(--muted);
            border: 1px solid rgba(255, 255, 255, .16);
        }

        .hero-room-stats {
            position: absolute;
            left: 14px;
            bottom: 14px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .hero-room-stat {
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(0,0,0,.7);
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-room-stat span:first-child {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: var(--muted);
        }

        .hero-room-stat span:last-child {
            font-weight: 600;
        }

        .hero-floating {
            position: absolute;
            right: 4px;
            bottom: -10px;
            background: #0e1013;
            border-radius: 999px;
            padding: 8px 13px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 14px 50px rgba(0, 0, 0, .7);
            font-size: 11px;
        }

        .hero-floating-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: #7CFC00;
            box-shadow: 0 0 10px rgba(124, 252, 0, .8);
        }

        /* SECTION BASE */

        section {
            padding: 32px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 12px;
            margin-bottom: 22px;
        }

        .section-title {
            font-size: 22px;
            font-weight: 650;
        }

        .section-subtitle {
            font-size: 13px;
            color: var(--muted);
            max-width: 380px;
        }

        /* SERVICES */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .service-card {
            background: var(--card);
            border-radius: 18px;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, .05);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-icon {
            width: 32px;
            height: 32px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .04);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .service-title {
            font-size: 14px;
            font-weight: 600;
        }

        .service-desc {
            font-size: 12px;
            color: var(--muted);
        }

        .service-meta {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--muted);
        }

        /* STEPS */

        .steps-grid {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 24px;
            align-items: flex-start;
        }

        .step-list {
            display: grid;
            gap: 12px;
        }

        .step-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 10px;
            align-items: flex-start;
        }

        .step-number {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            background: rgba(0, 0, 0, .35);
        }

        .step-body-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .step-body-text {
            font-size: 13px;
            color: var(--muted);
        }

        .steps-aside {
            background: var(--card);
            border-radius: 18px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, .08);
            font-size: 13px;
        }

        .steps-aside-row {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
        }

        /* PRICES */

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .price-card {
            background: var(--card);
            border-radius: 18px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .price-name {
            font-size: 14px;
            font-weight: 600;
        }

        .price-value {
            font-size: 18px;
            font-weight: 700;
        }

        .price-unit {
            font-size: 12px;
            color: var(--muted);
        }

        .price-list {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
        }

        .price-list li {
            margin-left: 16px;
        }

        .price-tag {
            align-self: flex-start;
            padding: 4px 8px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
            border: 1px solid rgba(255, 255, 255, .14);
            color: var(--muted);
        }

        .price-card.highlight {
            border-color: var(--accent);
            box-shadow: 0 0 28px rgba(255, 180, 0, .18);
        }

        .price-card.highlight .price-tag {
            border-color: transparent;
            background: rgba(255, 180, 0, .2);
            color: #151515;
        }

        /* FORM */

        .form-wrapper {
            background: var(--card);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, .09);
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 20px;
            margin-top: 10px;
        }

        .form-title {
            font-size: 18px;
            font-weight: 650;
            margin-bottom: 6px;
        }

        .form-text {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 12px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 10px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 12px;
        }

        .form-group label {
            color: var(--muted);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(0, 0, 0, .3);
            padding: 8px 12px;
            font-size: 13px;
            color: var(--text);
            outline: none;
        }

        .form-group textarea {
            border-radius: 14px;
            resize: vertical;
            min-height: 70px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(176, 179, 192, .7);
        }

        .form-footer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-top: 6px;
        }

        .form-policy {
            font-size: 11px;
            color: var(--muted);
        }

        .form-policy a {
            text-decoration: underline;
            text-decoration-thickness: 1px;
        }

        .form-side {
            font-size: 13px;
            color: var(--muted);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-side-highlight {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(0,0,0,.3);
            border: 1px solid rgba(255,255,255,.09);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
        }

        .form-side-highlight span {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--accent);
        }

        /* FOOTER */

        footer {
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding: 16px 0 24px;
            font-size: 12px;
            color: var(--muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 12px;
        }

        .footer-links a {
            text-decoration: underline;
            text-decoration-thickness: 1px;
        }

        /* RESPONSIVE */

        @media (max-width: 960px) {
            nav {
                display: none;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-right {
                order: -1;
            }

            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .form-wrapper {
                grid-template-columns: 1fr;
            }

            .prices-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .header-inner {
                flex-wrap: wrap;
                justify-content: center;
            }

            .header-cta {
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding-top: 24px;
            }

            .services-grid,
            .prices-grid {
                grid-template-columns: 1fr;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }


/* FLOATING CALL BUTTON */

.floating-call {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #151515;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 180, 0, 0.45);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.floating-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 180, 0, 0.7);
    opacity: 0.95;
}

.floating-call-icon {
    font-size: 18px;
    line-height: 1;
}

.floating-call-text {
    line-height: 1;
}

/* На очень маленьких экранах оставляем только значок */
@media (max-width: 480px) {
    .floating-call {
        padding: 12px;
        right: 12px;
        bottom: 12px;
    }

    .floating-call-text {
        display: none;
    }
}