:root {
                --yellow: #ffc719;
                --dark: #020914;
                --card: #071834;
                --red: #ef3b3b;
                --green: #168dff;
                --header-height: 80px;
            }
            * {
                box-sizing: border-box;
            }
            html,
            body {
                margin: 0;
                padding: 0;
                font-family: "Inter", sans-serif;
                background: var(--dark);
                color: #fff;
                scroll-behavior: smooth;
            }
            body {
                padding-top: var(--header-height);
            }
            button,
            input {
                font-family: "Inter", sans-serif;
            }
            svg {
                display: block;
            }
            a {
                color: inherit;
            }
            .site-header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: var(--header-height);
                background: rgba(20, 20, 20, 0.94);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                z-index: 1000;
            }
            .header-container {
                max-width: 1280px;
                height: 100%;
                margin: 0 auto;
                display: grid;
                grid-template-columns: auto 1fr auto;
                align-items: center;
                padding: 0 24px;
                column-gap: 28px;
            }
            .logo {
                font-size: 1.5rem;
                font-weight: 900;
                line-height: 1;
                white-space: nowrap;
                text-decoration: none;
            }
            .logo span {
                color: var(--yellow);
            }
            .logo small {
                display: block;
                margin-top: 6px;
                font-size: 0.78rem;
                font-weight: 400;
                color: #fff;
                opacity: 0.9;
            }
            .nav-desktop {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 40px;
            }
            .nav-desktop > a,
            .nav-dropdown-toggle {
                color: #fff;
                text-decoration: none;
                font-weight: 700;
                font-size: 0.95rem;
                letter-spacing: 0.4px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0;
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .nav-desktop a:hover,
            .nav-dropdown-toggle:hover {
                color: var(--yellow);
            }
            .nav-dropdown {
                position: relative;
            }
            .nav-dropdown svg {
                width: 16px;
                height: 16px;
                transition: transform 0.2s ease;
            }
            .nav-dropdown.active svg {
                transform: rotate(180deg);
            }
            .nav-dropdown-menu {
                position: absolute;
                top: calc(100% + 14px);
                left: 50%;
                transform: translateX(-50%);
                min-width: 220px;
                padding: 10px;
                background: #1a1a1a;
                border: 1px solid rgba(255, 204, 0, 0.2);
                border-radius: 14px;
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
                display: none;
                flex-direction: column;
                gap: 4px;
            }
            .nav-dropdown.active .nav-dropdown-menu {
                display: flex;
            }
            .nav-dropdown-menu a {
                padding: 10px 12px;
                border-radius: 10px;
                font-size: 0.92rem;
                text-decoration: none;
            }
            .nav-dropdown-menu a:hover {
                background: rgba(255, 204, 0, 0.08);
                color: var(--yellow);
            }
            .header-right {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 18px;
                white-space: nowrap;
            }
            .phone-desktop {
                text-decoration: none;
                font-weight: 700;
                font-size: 1rem;
                opacity: 0.95;
            }
            .btn-header-max {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 11px 18px;
                background: linear-gradient(180deg, #53d96d, #32b550);
                color: #fff;
                text-decoration: none;
                border-radius: 10px;
                font-weight: 700;
                box-shadow: 0 8px 18px rgba(37, 211, 102, 0.18);
                white-space: nowrap;
                min-width: 78px;
            }
            .mobile-logo,
            .phone-mobile,
            .burger-icon {
                display: none;
            }
            .mobile-menu {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.56);
                z-index: 1500;
                display: none;
            }
            .mobile-menu.active {
                display: block;
            }
            .mobile-menu-panel {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: min(86vw, 360px);
                background: #171717;
                border-right: 1px solid rgba(255, 204, 0, 0.16);
                padding: 18px 16px 24px;
                box-shadow: 20px 0 40px rgba(0, 0, 0, 0.25);
            }
            .mobile-menu-head {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 22px;
            }
            .mobile-menu-title {
                font-size: 1.2rem;
                font-weight: 800;
            }
            .mobile-menu-close {
                background: none;
                border: none;
                color: #fff;
                font-size: 32px;
                line-height: 1;
                cursor: pointer;
            }
            .mobile-nav {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            .mobile-nav > a,
            .mobile-submenu-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 12px 14px;
                border-radius: 12px;
                text-decoration: none;
                font-weight: 700;
                background: #212121;
                border: 1px solid rgba(255, 255, 255, 0.04);
                color: #fff;
            }
            .mobile-submenu-toggle {
                cursor: pointer;
            }
            .mobile-submenu-toggle svg {
                width: 16px;
                height: 16px;
                transition: transform 0.2s ease;
            }
            .mobile-submenu-toggle[aria-expanded="true"] svg {
                transform: rotate(180deg);
            }
            .mobile-submenu-menu {
                display: none;
                padding-top: 8px;
                gap: 6px;
                flex-direction: column;
            }
            .mobile-submenu-menu.active {
                display: flex;
            }
            .mobile-submenu-menu a {
                padding: 10px 12px 10px 18px;
                border-radius: 10px;
                text-decoration: none;
                background: #1c1c1c;
                color: rgba(255, 255, 255, 0.9);
            }
            .mobile-menu-phone {
                display: block;
                margin-top: 18px;
                text-align: center;
                padding: 14px 16px;
                background: linear-gradient(180deg, #44e368 0%, #2aa843 100%);
                border-radius: 12px;
                text-decoration: none;
                font-weight: 800;
            }
            .section-title {
                margin: 10px 0 50px !important;
                text-align: center;
                font-size: 3rem;
                line-height: 1.06;
                font-weight: 800;
                letter-spacing: -1px;
            }
            .section-title span {
                color: var(--yellow);
            }
            .hero {
                min-height: calc(100vh - var(--header-height));
                min-height: calc(100svh - var(--header-height));
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 22px 20px 22px;
                overflow: hidden;
                background-image: linear-gradient(
                        90deg,
                        rgba(0, 0, 0, 0.92) 0%,
                        rgba(0, 0, 0, 0.82) 22%,
                        rgba(0, 0, 0, 0.62) 42%,
                        rgba(0, 0, 0, 0.28) 62%,
                        rgba(0, 0, 0, 0) 80%
                    ),
                    radial-gradient(circle at 18% 28%, rgba(255, 204, 0, 0.04), transparent 24%),
                    /* Измененный путь к картинке */
                    url("/assets/images/fon.webp");
                background-size: auto, auto, cover;
                background-position:
                    center,
                    center,
                    right center;
                background-repeat: no-repeat;
            }
            .hero-inner {
                align-items: flex-start;
                justify-content: center;
                flex: 1;
                min-height: 0;
            }
            .container {
                max-width: 1180px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .left {
                max-width: 640px;
                margin: 0;
                text-align: left;
            }
            .hero-eyebrow {
                display: inline-block;
                margin: 0 0 14px;
                padding: 8px 12px;
                font-size: 0.78rem;
                font-weight: 700;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.92);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 999px;
                background: rgba(255, 255, 255, 0.04);
                backdrop-filter: blur(6px);
            }
            .hero-title-styled {
                margin: 0 0 16px;
                font-size: 2.2rem;
                line-height: 1.1;
                font-weight: 800;
                letter-spacing: -1px;
                text-align: left;
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
                max-width: 900px;
            }
            .hero-title-styled span {
                color: var(--yellow);
            }
            .desc {
                max-width: 620px;
                margin: 0 0 22px;
                font-size: 1rem;
                line-height: 1.48;
                color: rgba(255, 255, 255, 0.9);
                font-weight: 500;
                text-align: left;
            }
            .buttons {
                display: flex;
                justify-content: flex-start;
                align-items: stretch;
                gap: 12px;
                flex-wrap: wrap;
                margin-bottom: 18px;
            }
            .btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                min-width: 285px;
                padding: 15px 18px;
                border-radius: 14px;
                text-decoration: none;
                font-size: 1.05rem;
                font-weight: 800;
                transition:
                    transform 0.2s ease,
                    box-shadow 0.2s ease,
                    background-color 0.2s ease,
                    border-color 0.2s ease;
                cursor: pointer;
            }
            .btn:hover {
                transform: translateY(-2px);
            }
            .btn-main {
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(57, 200, 90, 0.5);
                background: linear-gradient(180deg, #44e368 0%, #2aa843 100%);
                color: #fff;
                box-shadow: 0 12px 24px rgba(47, 183, 76, 0.3);
                text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            }
            .btn-main::after {
                content: "";
                position: absolute;
                top: 0;
                left: -100%;
                width: 50%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transform: skewX(-20deg);
                animation: btn-glare 4s infinite;
            }
            @keyframes btn-glare {
                0% { left: -100%; }
                15% { left: 200%; }
                100% { left: 200%; }
            }
            .btn-secondary {
                border: 1px solid rgba(255, 204, 0, 0.24);
                background: rgba(17, 17, 17, 0.4);
                color: #fff;
                backdrop-filter: blur(8px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
            }
            .btn-content {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                line-height: 1.04;
            }
            .btn-content small {
                margin-top: 5px;
                font-size: 0.85rem;
                font-weight: 600;
                opacity: 0.95;
                text-shadow: none;
            }
            .btn .icon-main {
                width: 20px;
                height: 20px;
                flex-shrink: 0;
                color: currentColor;
            }
            .features {
                max-width: 1240px;
                width: 100%;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 14px;
            }
            .feature {
                background: linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(40, 40, 40, 0.88) 0%, rgba(24, 24, 24, 0.95) 100%);
                background-size:
                    28px 28px,
                    28px 28px,
                    auto;
                border: 1px solid rgba(255, 204, 0, 0.18);
                border-radius: 16px;
                padding: 16px 14px 14px;
                text-align: center;
                min-height: 108px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .feature strong {
                display: block;
                color: var(--yellow);
                text-transform: uppercase;
                font-size: 0.84rem;
                font-weight: 800;
                margin-bottom: 8px;
            }
            .feature p {
                margin: 0;
                font-size: 0.92rem;
                line-height: 1.26;
                color: rgba(255, 255, 255, 0.9);
                font-weight: 500;
            }
            .services-section {
                position: relative;
                padding: 30px 20px 86px;
                overflow: hidden;
                background: radial-gradient(circle at 78% 18%, rgba(255, 204, 0, 0.14), transparent 24%),
                    radial-gradient(circle at 18% 82%, rgba(255, 204, 0, 0.08), transparent 26%),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(180deg, #101010 0%, #151515 100%);
                background-size:
                    auto,
                    auto,
                    48px 48px,
                    48px 48px,
                    auto;
            }
            .services-container {
                max-width: 1240px;
                margin: 0 auto;
            }
            .services-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }
            .service-card {
                position: relative;
                display: flex;
                flex-direction: column;
                min-height: 100%;
                padding: 24px 18px 20px !important;
                border-radius: 16px;
                background: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(54, 54, 54, 0.92) 0%, rgba(38, 38, 38, 0.96) 100%);
                background-size:
                    32px 32px,
                    32px 32px,
                    auto;
                border: 1px solid rgba(255, 204, 0, 0.24);
            }
            .service-card::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 16px;
                pointer-events: none;
                box-shadow: inset 3px 0 0 rgba(255, 204, 0, 0.9);
            }
            .service-icon {
                width: 42px;
                height: 42px;
                color: var(--yellow);
                margin: 0 0 16px !important;
                flex-shrink: 0;
            }
            .service-card h3 {
                margin: 0 0 10px !important;
                font-size: 1.1rem;
                line-height: 1.35;
                font-weight: 700;
                color: #fff;
            }
            .service-card p {
                margin: 0 0 20px !important;
                font-size: 0.85rem;
                line-height: 1.45;
                color: rgba(255, 255, 255, 0.78);
                flex-grow: 1;
            }
            .service-price {
                margin: 0 0 12px !important;
                font-size: 1.6rem;
                line-height: 1;
                font-weight: 800;
                color: var(--yellow);
            }
            .service-btn {
                width: 100%;
                height: 42px;
                border: none;
                border-radius: 10px;
                background: linear-gradient(180deg, #f7d94f 0%, #e2bb30 100%);
                color: #1b1b1b;
                font-weight: 800;
                font-size: 0.95rem;
                cursor: pointer;
            }
            @media (max-width: 1200px) {
                .features {
                    grid-template-columns: repeat(2, 1fr);
                    max-width: 900px;
                    gap: 14px;
                }
                .services-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .hero-title-styled {
                    font-size: 2rem;
                }
                .left {
                    max-width: 580px;
                }
            }
            @media (max-width: 992px) {
                :root {
                    --header-height: 72px;
                }
                .header-container {
                    display: flex;
                    justify-content: space-between;
                }
                .nav-desktop,
                .phone-desktop {
                    display: none;
                }
                .burger-icon {
                    display: block;
                    font-size: 1.35rem;
                    color: #fff;
                    background: none;
                    border: none;
                    padding: 0;
                    cursor: pointer;
                }
            }
            @media (max-width: 768px) {
                :root {
                    --header-height: 58px;
                }
                body {
                    padding-top: 58px;
                }
                .site-header {
                    height: 58px;
                }
                .header-container {
                    display: grid;
                    grid-template-columns: 24px 42px 1fr auto;
                    align-items: center;
                    padding: 0 10px;
                    column-gap: 8px;
                }
                .logo,
                .phone-desktop {
                    display: none;
                }
                .mobile-logo {
                    display: block;
                    font-size: 1.75rem;
                    font-weight: 900;
                    color: var(--yellow);
                    line-height: 1;
                    text-align: center;
                    text-decoration: none;
                }
                .header-right {
                    display: contents;
                }
                .phone-mobile {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    color: #fff;
                    text-decoration: none;
                    font-size: 1.05rem;
                    font-weight: 800;
                    white-space: nowrap;
                    min-width: 0;
                }
                .btn-header-max {
                    padding: 7px 10px;
                    font-size: 0.84rem;
                    border-radius: 10px;
                    min-width: 58px;
                    justify-content: center;
                }
                .burger-icon {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    gap: 4px;
                    background: none;
                    border: none;
                    padding: 0;
                    cursor: pointer;
                }
                .burger-icon span {
                    display: block;
                    width: 18px;
                    height: 2px;
                    background: #fff;
                    border-radius: 2px;
                }
                .hero-title-styled {
                    font-size: 1.45rem;
                    line-height: 1.15;
                    letter-spacing: -0.4px;
                    margin-bottom: 14px;
                    font-weight: 800;
                }
                .desc {
                    font-size: 0.84rem;
                    line-height: 1.4;
                    margin-bottom: 18px;
                    max-width: 100%;
                }
                .buttons {
                    gap: 10px;
                    margin-bottom: 14px;
                }
                .btn {
                    width: 100%;
                    min-width: 0;
                    padding: 14px 12px;
                    font-size: 1rem;
                    border-radius: 14px;
                }
                .btn .icon-main {
                    width: 18px;
                    height: 18px;
                }
                .btn-content small {
                    margin-top: 2px;
                    font-size: 0.8rem;
                    line-height: 1.08;
                }
                .features {
                    grid-template-columns: 1fr 1fr;
                    gap: 8px;
                    padding: 0 10px 0;
                }
                .feature {
                    min-height: 86px;
                    padding: 12px 8px 10px;
                    border-radius: 12px;
                }
                .feature strong {
                    font-size: 0.68rem;
                    margin-bottom: 6px;
                }
                .feature p {
                    font-size: 0.76rem;
                    line-height: 1.14;
                }
            }
            .section-subtitle {
                max-width: 760px;
                margin: -20px auto 50px !important;
                text-align: center;
                font-size: 1.05rem;
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.68);
            }
            .breadcrumbs {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 30px 20px;
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.75);
            }
            .breadcrumbs a {
                text-decoration: none;
                color: #fff;
                transition: color 0.2s ease;
            }
            .breadcrumbs a:hover {
                color: var(--yellow);
            }
            .breadcrumbs .current {
                color: rgba(255, 255, 255, 0.5);
            }
            .breadcrumbs .separator {
                color: rgba(255, 255, 255, 0.4);
            }
            .steps-section,
            .masters-section,
            .reviews-section,
            .faq-section,
            .contacts-section {
                padding: 70px 20px;
                background: var(--dark);
            }
            .steps-grid {
                max-width: 1240px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
            .step-card {
                background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                padding: 34px 20px 20px !important;
                position: relative;
            }
            .step-num {
                position: absolute;
                top: -16px;
                left: 20px;
                width: 40px;
                height: 40px;
                background: var(--yellow);
                color: #111;
                font-weight: 900;
                font-size: 1.2rem;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 10px;
            }
            .step-card h4 {
                margin: 0 0 12px !important;
                font-size: 1.1rem;
                color: #fff;
                font-weight: 700;
                line-height: 1.4;
            }
            .step-card p {
                margin: 0;
                font-size: 0.85rem;
                color: rgba(255, 255, 255, 0.7);
                line-height: 1.5;
            }
            .cases-section {
                padding: 80px 20px;
                background: #111;
            }
            .cases-grid {
                max-width: 1240px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            .case-card {
                background: #1a1a1a;
                border-radius: 20px;
                overflow: hidden;
                border: 1px solid rgba(255, 204, 0, 0.15);
            }
            .case-images {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2px;
                background: var(--yellow);
            }
            .case-img-item {
                position: relative;
                aspect-ratio: 1/1;
                background: #222;
            }
            .case-img-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .case-label {
                position: absolute;
                bottom: 10px;
                left: 10px;
                background: rgba(0, 0, 0, 0.7);
                padding: 4px 10px;
                border-radius: 6px;
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
            }
            .case-label.after {
                color: var(--yellow);
                border: 1px solid var(--yellow);
            }
            .case-info h4 {
                margin: 0 0 12px !important;
                font-size: 1.15rem;
                color: #fff;
                line-height: 1.4;
            }
            .case-info p {
                margin: 0;
                font-size: 0.88rem;
                color: rgba(255, 255, 255, 0.6);
                line-height: 1.6;
            }
            .masters-grid {
                max-width: 1240px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .master-card {
                background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%);
                border: 1px solid rgba(255, 204, 0, 0.16);
                border-radius: 16px;
                overflow: hidden;
            }
            .master-img-wrap {
                width: 100%;
                aspect-ratio: 4/3;
                background: #1a1a1a;
            }
            .master-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top;
            }
            .master-info h4 {
                margin: 0 0 12px !important;
                font-size: 1.1rem;
                color: var(--yellow);
                font-weight: 800;
            }
            .master-info p {
                margin: 0;
                font-size: 0.88rem;
                color: rgba(255, 255, 255, 0.8);
                line-height: 1.55;
            }
            .trust-section {
                position: relative;
                padding: 82px 20px 92px;
                overflow: hidden;
                background: radial-gradient(circle at 18% 18%, rgba(255, 204, 0, 0.1), transparent 20%),
                    radial-gradient(circle at 82% 82%, rgba(255, 204, 0, 0.08), transparent 22%),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(180deg, #121212 0%, #161616 100%);
                background-size:
                    auto,
                    auto,
                    48px 48px,
                    48px 48px,
                    auto;
            }
            .trust-container {
                max-width: 1240px;
                margin: 0 auto;
            }
            .brands-wrapper {
                margin-bottom: 48px;
            }
            .brands-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 14px;
            }
            .brand-item {
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 58px;
                padding: 12px 14px;
                border-radius: 14px;
                background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(48, 48, 48, 0.85) 0%, rgba(32, 32, 32, 0.95) 100%);
                background-size:
                    32px 32px,
                    32px 32px,
                    auto;
                border: 1px solid rgba(255, 204, 0, 0.14);
                color: rgba(255, 255, 255, 0.78);
                font-size: 1rem;
                font-weight: 800;
                letter-spacing: 1.2px;
                text-transform: uppercase;
            }
            .benefits-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }
            .benefit-card {
                position: relative;
                padding: 24px 20px 20px !important;
                border-radius: 16px;
                background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(54, 54, 54, 0.88) 0%, rgba(36, 36, 36, 0.96) 100%);
                background-size:
                    32px 32px,
                    32px 32px,
                    auto;
                border: 1px solid rgba(255, 204, 0, 0.16);
            }
            .benefit-card::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 16px;
                pointer-events: none;
                box-shadow: inset 3px 0 0 rgba(255, 204, 0, 0.85);
            }
            .benefit-icon {
                width: 42px;
                height: 42px;
                color: var(--yellow);
                margin: 0 0 16px !important;
            }
            .benefit-card h4 {
                margin: 0 0 12px !important;
                font-size: 1.1rem;
                line-height: 1.4;
                font-weight: 700;
                color: #fff;
            }
            .benefit-card p {
                margin: 0;
                font-size: 0.85rem;
                line-height: 1.5;
                color: rgba(255, 255, 255, 0.7);
            }
            .reviews-grid {
                max-width: 1240px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .review-card {
                background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                padding: 24px 20px;
            }
            .review-head {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 16px;
            }
            .review-author {
                font-weight: 700;
                font-size: 1.05rem;
                color: #fff;
            }
            .review-stars {
                color: var(--yellow);
                font-size: 1.2rem;
            }
            .review-text {
                margin: 0;
                font-size: 0.88rem;
                color: rgba(255, 255, 255, 0.75);
                line-height: 1.6;
            }
            .seo-section {
                padding: 84px 20px 100px;
                background: linear-gradient(180deg, #141414 0%, #101010 100%);
            }
            .seo-container {
                max-width: 1040px;
                margin: 0 auto;
            }
            .seo-content {
                background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(46, 46, 46, 0.88) 0%, rgba(30, 30, 30, 0.96) 100%);
                background-size:
                    32px 32px,
                    32px 32px,
                    auto;
                border: 1px solid rgba(255, 204, 0, 0.14);
                border-left: 4px solid var(--yellow);
                border-radius: 18px;
                padding: 30px 28px;
            }
            .faq-container {
                max-width: 800px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
            .faq-item {
                background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 14px;
                overflow: hidden;
            }
            .faq-question {
                width: 100%;
                padding: 20px 24px;
                background: none;
                border: none;
                color: #fff;
                font-size: 1rem;
                font-weight: 700;
                text-align: left;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-family: "Inter", sans-serif;
            }
            .faq-question svg {
                width: 20px;
                height: 20px;
                transition: transform 0.3s ease;
                color: var(--yellow);
            }
            .faq-item.active .faq-question svg {
                transform: rotate(180deg);
            }
            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            .faq-item.active .faq-answer {
                max-height: 300px;
            }
            .faq-answer p {
                margin: 0;
                padding: 0 24px 20px;
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.75);
                line-height: 1.6;
            }
            .contacts-wrapper {
                max-width: 800px;
                margin: 0 auto;
                background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%);
                border: 1px solid rgba(255, 204, 0, 0.2);
                border-radius: 18px;
                padding: 34px 30px;
            }
            .contact-line {
                margin-bottom: 16px;
                font-size: 1.05rem;
                color: rgba(255, 255, 255, 0.9);
            }
            .contact-line a {
                color: var(--yellow);
                text-decoration: none;
                font-weight: 700;
            }
            .contact-messengers {
                margin-top: 24px;
            }
            .modal {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.72);
                display: none;
                align-items: center;
                justify-content: center;
                padding: 20px;
                z-index: 2000;
                backdrop-filter: blur(6px);
            }
            .modal.active {
                display: flex;
            }
            .modal-dialog {
                width: 100%;
                max-width: 560px;
                background: radial-gradient(circle at 20% 0%, rgba(255, 204, 0, 0.06), transparent 36%),
                    linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(18, 18, 18, 0.99) 100%);
                border: 1px solid rgba(255, 204, 0, 0.16);
                border-radius: 24px;
                box-shadow: 0 30px 70px rgba(0, 0, 0, 0.52);
                padding: 24px 24px 20px;
                position: relative;
            }
            .modal-close {
                position: absolute;
                top: 12px;
                right: 14px;
                width: 40px;
                height: 40px;
                border: none;
                background: transparent;
                color: rgba(255, 255, 255, 0.92);
                font-size: 28px;
                cursor: pointer;
            }
            .modal-title {
                margin: 0 0 8px;
                font-size: 2rem;
                line-height: 1.08;
                font-weight: 800;
            }
            .modal-title span {
                color: var(--yellow);
            }
            .modal-text {
                margin: 0 0 16px;
                color: rgba(255, 255, 255, 0.84);
                line-height: 1.55;
                font-size: 1rem;
                max-width: 460px;
            }
            .modal-form {
                display: grid;
                gap: 10px;
            }
            .modal-form input {
                width: 100%;
                height: 48px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                padding: 0 18px;
                font-size: 1.02rem;
                color: #fff;
                background: rgba(255, 255, 255, 0.06);
                outline: none;
            }
            .modal-submit {
                height: 48px;
                border: none;
                border-radius: 16px;
                background: linear-gradient(180deg, #44e368 0%, #2aa843 100%);
                color: #fff;
                font-size: 1rem;
                font-weight: 800;
                cursor: pointer;
                box-shadow: 0 8px 18px rgba(47, 183, 76, 0.2);
            }
            .form-message {
                display: none;
                margin-top: 10px;
                font-size: 0.88rem;
                font-weight: 600;
                text-align: center;
            }
            .form-message.success {
                color: #7cff97;
            }
            .form-message.error {
                color: #ff8f8f;
            }
            .site-footer {
                background: #080808;
                border-top: 1px solid rgba(255, 204, 0, 0.15);
                padding: 60px 20px 50px;
                color: rgba(255, 255, 255, 0.75);
                font-family: "Inter", sans-serif;
            }
            .footer-container {
                max-width: 1240px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1.5fr 1fr 1.5fr;
                gap: 40px;
            }
            .footer-logo {
                font-size: 1.5rem;
                font-weight: 900;
                color: #fff;
                text-decoration: none;
                display: inline-block;
                margin-bottom: 18px;
            }
            .footer-logo span {
                color: var(--yellow);
            }
            .copyright {
                margin: 0 0 12px;
                font-size: 0.88rem;
                line-height: 1.5;
            }
            .privacy-link {
                font-size: 0.85rem;
                color: rgba(255, 255, 255, 0.5);
                text-decoration: underline;
            }
            .footer-title {
                font-size: 1.15rem;
                color: #fff;
                margin: 0 0 22px;
                font-weight: 800;
            }
            .footer-nav {
                display: flex;
                flex-direction: column;
                gap: 14px;
            }
            .footer-nav a {
                text-decoration: none;
                color: rgba(255, 255, 255, 0.75);
                font-size: 0.95rem;
                font-weight: 500;
                width: fit-content;
            }
            .footer-contacts {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }
            .footer-contact-item {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                font-size: 0.95rem;
                line-height: 1.5;
            }
            .footer-contact-item a {
                color: inherit;
                text-decoration: none;
                font-weight: 700;
            }
            .footer-contact-item svg {
                flex-shrink: 0;
                margin-top: 2px;
            }
            .btn-footer-max {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 10px 20px;
                background: linear-gradient(180deg, #53d96d, #32b550);
                color: #fff !important;
                text-decoration: none;
                border-radius: 10px;
                font-weight: 800;
                font-size: 0.95rem;
                margin-top: 6px;
                box-shadow: 0 6px 16px rgba(37, 211, 102, 0.2);
            }
            .btn-call-master {
                justify-content: center;
            }
            .btn-call-master .btn-content {
                align-items: center;
                text-align: center;
            }
            @media (max-width: 1200px) {
                .services-grid,
                .steps-grid,
                .masters-grid,
                .reviews-grid,
                .benefits-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .brands-grid {
                    grid-template-columns: repeat(4, 1fr);
                }
                .cases-grid {
                    grid-template-columns: 1fr;
                    max-width: 600px;
                }
            }
            @media (max-width: 768px) {
                .section-title {
                    font-size: 1.9rem;
                    margin: 10px 0 40px !important;
                }
                .services-section {
                    padding: 30px 14px 60px;
                }
                .services-grid,
                .benefits-grid {
                    grid-template-columns: repeat(2, 1fr) !important;
                    gap: 10px !important;
                }
                .steps-grid,
                .masters-grid,
                .reviews-grid {
                    grid-template-columns: 1fr;
                    gap: 16px;
                }
                .brands-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 10px;
                }
                .contacts-wrapper {
                    padding: 24px 16px;
                }
                .modal-dialog {
                    padding: 20px 16px 16px;
                    border-radius: 20px;
                    max-width: 100%;
                }
                .modal-title {
                    font-size: 1.45rem;
                }
                .modal-text {
                    font-size: 0.9rem;
                }
                .modal-form input,
                .modal-submit {
                    height: 44px;
                    border-radius: 14px;
                }
                .footer-container {
                    grid-template-columns: 1fr;
                    gap: 36px;
                    text-align: center;
                }
                .footer-menu-col {
                    display: none;
                }
                .footer-contact-item {
                    justify-content: center;
                    text-align: center;
                }
            }
            /* Mobile services cards fix: equal height without ugly stretching */
            @media (max-width: 768px) {
                .services-grid {
                    align-items: stretch !important;
                    grid-auto-rows: 1fr;
                }
                .service-card {
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    min-height: 0;
                    padding: 20px 14px 14px !important;
                    border-radius: 14px;
                }
                .service-icon {
                    width: 34px;
                    height: 34px;
                    margin: 0 0 14px !important;
                }
                .service-card h3 {
                    margin: 0 0 10px !important;
                    font-size: 0.96rem !important;
                    line-height: 1.22 !important;
                }
                .service-card p {
                    margin: 0 0 12px !important;
                    font-size: 0.74rem !important;
                    line-height: 1.34 !important;
                    color: rgba(255, 255, 255, 0.82);
                    flex: 1 1 auto;
                }
                .service-price {
                    margin: 0 0 12px !important;
                    font-size: 0.95rem !important;
                    line-height: 1.05 !important;
                    min-height: 2.1em;
                    display: flex;
                    align-items: flex-end;
                }
                .service-btn {
                    margin-top: auto;
                    height: 44px;
                    border-radius: 12px;
                    font-size: 0.88rem;
                }
            } /* a bit tighter for very narrow screens */
            @media (max-width: 400px) {
                .services-grid {
                    gap: 8px !important;
                }
                .service-card {
                    padding: 18px 12px 12px !important;
                }
                .service-card h3 {
                    font-size: 0.9rem !important;
                }
                .service-card p {
                    font-size: 0.7rem !important;
                }
                .service-price {
                    font-size: 0.9rem !important;
                }
                .service-btn {
                    height: 42px;
                    font-size: 0.84rem;
                }
            }
            /* Conversion boost blocks */
            .conversion-strip {
                max-width: 1240px;
                margin: 34px auto 0;
                padding: 26px 28px;
                border-radius: 22px;
                border: 1px solid rgba(255, 204, 0, 0.18);
                background: radial-gradient(circle at 85% 20%, rgba(255, 204, 0, 0.1), transparent 24%),
                    linear-gradient(180deg, rgba(42, 42, 42, 0.88) 0%, rgba(24, 24, 24, 0.96) 100%);
                box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
            }
            .conversion-strip--compact {
                margin-top: 26px;
                padding: 22px 24px;
            }
            .conversion-strip-inner {
                display: grid;
                grid-template-columns: 1.2fr auto;
                gap: 24px;
                align-items: center;
            }
            .conversion-strip h3 {
                margin: 0 0 10px;
                font-size: 1.5rem;
                line-height: 1.15;
                font-weight: 800;
            }
            .conversion-strip p {
                margin: 0;
                color: rgba(255, 255, 255, 0.82);
                font-size: 0.98rem;
                line-height: 1.58;
            }
            .conversion-strip p strong {
                color: #fff;
            }
            .conversion-actions {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .btn-ghost-yellow {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-width: 240px;
                padding: 15px 18px;
                border-radius: 14px;
                border: 1px solid rgba(255, 204, 0, 0.28);
                background: rgba(255, 204, 0, 0.06);
                color: #fff;
                text-decoration: none;
                font-size: 0.96rem;
                font-weight: 800;
            }
            .proof-list {
                max-width: 1240px;
                margin: 22px auto 0;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .proof-item {
                padding: 18px 18px 16px;
                border-radius: 16px;
                background: linear-gradient(180deg, rgba(40, 40, 40, 0.82) 0%, rgba(24, 24, 24, 0.95) 100%);
                border: 1px solid rgba(255, 255, 255, 0.08);
            }
            .proof-item strong {
                display: block;
                margin-bottom: 8px;
                color: var(--yellow);
                font-size: 0.92rem;
                font-weight: 800;
                text-transform: uppercase;
            }
            .proof-item p {
                margin: 0;
                color: rgba(255, 255, 255, 0.78);
                font-size: 0.88rem;
                line-height: 1.5;
            }
            .review-summary {
                max-width: 1240px;
                margin: 0 auto 26px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 16px;
                flex-wrap: wrap;
                color: rgba(255, 255, 255, 0.88);
            }
            .review-summary-badge {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 12px 16px;
                border-radius: 999px;
                background: rgba(255, 204, 0, 0.08);
                border: 1px solid rgba(255, 204, 0, 0.18);
                font-weight: 800;
            }
            .review-summary small {
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.72);
            }
            .faq-help {
                max-width: 800px;
                margin: 24px auto 0;
                text-align: center;
                padding: 24px 22px;
                border-radius: 18px;
                border: 1px solid rgba(255, 204, 0, 0.16);
                background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.92) 100%);
            }
            .faq-help h3 {
                margin: 0 0 10px;
                font-size: 1.3rem;
            }
            .faq-help p {
                margin: 0 0 18px;
                color: rgba(255, 255, 255, 0.78);
                line-height: 1.55;
            }
            .contacts-points {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
                margin: 0 0 24px;
            }
            .contacts-point {
                padding: 16px 14px;
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.06);
                text-align: center;
            }
            .contacts-point strong {
                display: block;
                margin-bottom: 6px;
                color: var(--yellow);
                font-size: 0.88rem;
                text-transform: uppercase;
            }
            .contacts-point span {
                display: block;
                color: rgba(255, 255, 255, 0.8);
                font-size: 0.88rem;
                line-height: 1.4;
            }
            .contacts-cta {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-top: 18px;
            }
            @media (max-width: 992px) {
                .conversion-strip-inner {
                    grid-template-columns: 1fr;
                }
                .conversion-actions {
                    justify-content: flex-start;
                }
                .proof-list {
                    grid-template-columns: 1fr;
                }
                .contacts-points {
                    grid-template-columns: 1fr;
                }
            }
            @media (max-width: 768px) {
                .conversion-strip {
                    margin-top: 22px;
                    padding: 20px 16px;
                    border-radius: 18px;
                }
                .conversion-strip h3 {
                    font-size: 1.22rem;
                }
                .conversion-strip p {
                    font-size: 0.88rem;
                    line-height: 1.5;
                }
                .conversion-actions {
                    flex-direction: column;
                }
                .conversion-actions .btn,
                .conversion-actions .btn-ghost-yellow {
                    width: 100%;
                    min-width: 0;
                }
                .review-summary {
                    margin-bottom: 18px;
                    gap: 10px;
                }
                .review-summary-badge {
                    padding: 10px 14px;
                    font-size: 0.95rem;
                }
                .faq-help {
                    padding: 20px 14px;
                }
                .faq-help h3 {
                    font-size: 1.08rem;
                }
                .contacts-cta {
                    grid-template-columns: 1fr;
                }
            }
            /* Fear / urgency section */
            .pain-section {
                position: relative;
                padding: 72px 20px 82px;
                overflow: hidden;
                background: radial-gradient(circle at 14% 18%, rgba(239, 59, 59, 0.12), transparent 22%),
                    radial-gradient(circle at 86% 82%, rgba(255, 204, 0, 0.08), transparent 24%),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
                    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
                    linear-gradient(180deg, #151515 0%, #101010 100%);
                background-size:
                    auto,
                    auto,
                    44px 44px,
                    44px 44px,
                    auto;
            }
            .pain-container {
                max-width: 1240px;
                margin: 0 auto;
            }
            .pain-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                margin: 0 auto 18px;
                padding: 10px 14px;
                border-radius: 999px;
                border: 1px solid rgba(239, 59, 59, 0.28);
                background: rgba(239, 59, 59, 0.08);
                color: #ffd1d1;
                font-size: 0.82rem;
                font-weight: 800;
                letter-spacing: 0.04em;
                text-transform: uppercase;
            }
            .pain-badge::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ef3b3b;
                box-shadow: 0 0 0 6px rgba(239, 59, 59, 0.14);
            }
            .pain-lead {
                max-width: 860px;
                margin: -18px auto 44px;
                text-align: center;
                font-size: 1.05rem;
                line-height: 1.65;
                color: rgba(255, 255, 255, 0.76);
            }
            .pain-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
                margin-bottom: 26px;
            }
            .pain-card {
                position: relative;
                min-height: 100%;
                padding: 26px 22px 22px;
                border-radius: 18px;
                background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(52, 52, 52, 0.88) 0%, rgba(28, 28, 28, 0.96) 100%);
                background-size:
                    28px 28px,
                    28px 28px,
                    auto;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }
            .pain-card::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 18px;
                pointer-events: none;
                box-shadow: inset 3px 0 0 rgba(239, 59, 59, 0.92);
            }
            .pain-icon {
                width: 50px;
                height: 50px;
                margin: 0 0 18px;
                border-radius: 14px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(180deg, rgba(239, 59, 59, 0.18), rgba(239, 59, 59, 0.08));
                color: #ff8f8f;
            }
            .pain-icon svg {
                width: 26px;
                height: 26px;
            }
            .pain-card h3 {
                margin: 0 0 12px;
                font-size: 1.14rem;
                line-height: 1.32;
                font-weight: 800;
                color: #fff;
            }
            .pain-card p {
                margin: 0;
                font-size: 0.92rem;
                line-height: 1.58;
                color: rgba(255, 255, 255, 0.76);
            }
            .pain-reassurance {
                display: grid;
                grid-template-columns: 1.35fr auto;
                gap: 18px;
                align-items: center;
                padding: 24px 24px;
                border-radius: 20px;
                border: 1px solid rgba(255, 204, 0, 0.18);
                background: linear-gradient(180deg, rgba(37, 37, 37, 0.86) 0%, rgba(22, 22, 22, 0.96) 100%);
            }
            .pain-reassurance strong {
                display: block;
                margin-bottom: 8px;
                font-size: 1.1rem;
                line-height: 1.35;
                color: #fff;
            }
            .pain-reassurance p {
                margin: 0;
                font-size: 0.95rem;
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.78);
            }
            .pain-actions {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .pain-actions .btn {
                min-width: 250px;
            }
            @media (max-width: 992px) {
                .pain-grid {
                    grid-template-columns: 1fr;
                }
                .pain-reassurance {
                    grid-template-columns: 1fr;
                }
                .pain-actions {
                    justify-content: stretch;
                }
            }
            @media (max-width: 768px) {
                .pain-section {
                    padding: 52px 14px 58px;
                }
                .pain-badge {
                    margin-bottom: 14px;
                    font-size: 0.72rem;
                    padding: 8px 12px;
                }
                .pain-lead {
                    margin: -10px auto 26px;
                    font-size: 0.9rem;
                    line-height: 1.52;
                }
                .pain-grid {
                    gap: 10px;
                    margin-bottom: 14px;
                }
                .pain-card {
                    padding: 18px 14px 16px;
                    border-radius: 14px;
                }
                .pain-icon {
                    width: 42px;
                    height: 42px;
                    margin-bottom: 14px;
                    border-radius: 12px;
                }
                .pain-icon svg {
                    width: 22px;
                    height: 22px;
                }
                .pain-card h3 {
                    font-size: 0.98rem;
                    margin-bottom: 8px;
                }
                .pain-card p {
                    font-size: 0.8rem;
                    line-height: 1.45;
                }
                .pain-reassurance {
                    padding: 18px 14px;
                    border-radius: 16px;
                    gap: 14px;
                }
                .pain-reassurance strong {
                    font-size: 0.95rem;
                    margin-bottom: 6px;
                }
                .pain-reassurance p {
                    font-size: 0.82rem;
                    line-height: 1.45;
                }
                .pain-actions {
                    flex-direction: column;
                }
                .pain-actions .btn {
                    width: 100%;
                    min-width: 0;
                }
            }
            /* Why call a master section */
            .diy-section {
                position: relative;
                padding: 76px 20px 84px;
                overflow: hidden;
                background: radial-gradient(circle at 18% 16%, rgba(255, 204, 0, 0.08), transparent 22%),
                    radial-gradient(circle at 82% 82%, rgba(57, 200, 90, 0.05), transparent 24%),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
                    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
                    linear-gradient(180deg, #111111 0%, #151515 100%);
                background-size:
                    auto,
                    auto,
                    44px 44px,
                    44px 44px,
                    auto;
            }
            .diy-shell {
                max-width: 1240px;
                margin: 0 auto;
                border-radius: 26px;
                padding: 30px 28px;
                border: 1px solid rgba(255, 204, 0, 0.14);
                background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(42, 42, 42, 0.9) 0%, rgba(24, 24, 24, 0.96) 100%);
                background-size:
                    30px 30px,
                    30px 30px,
                    auto;
            }
            .diy-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
                margin-top: 24px;
            }
            .diy-card {
                border-radius: 20px;
                padding: 22px 20px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                background: rgba(255, 255, 255, 0.03);
            }
            .diy-card.bad {
                border-color: rgba(239, 59, 59, 0.16);
                background: linear-gradient(180deg, rgba(239, 59, 59, 0.08) 0%, rgba(239, 59, 59, 0.03) 100%);
            }
            .diy-card.good {
                border-color: rgba(57, 200, 90, 0.18);
                background: linear-gradient(180deg, rgba(57, 200, 90, 0.1) 0%, rgba(57, 200, 90, 0.03) 100%);
            }
            .diy-head {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 12px;
            }
            .diy-head svg {
                width: 22px;
                height: 22px;
                flex-shrink: 0;
            }
            .diy-card.bad .diy-head svg {
                color: #ff8f8f;
            }
            .diy-card.good .diy-head svg {
                color: #8df0a2;
            }
            .diy-card h3 {
                margin: 0;
                font-size: 1.08rem;
                line-height: 1.32;
            }
            .diy-card ul {
                margin: 0;
                padding-left: 18px;
                color: rgba(255, 255, 255, 0.74);
                line-height: 1.64;
            }
            .diy-card li + li {
                margin-top: 6px;
            }
            .diy-bottom {
                margin-top: 20px;
                padding: 20px;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                background: rgba(255, 255, 255, 0.03);
                display: grid;
                grid-template-columns: 1fr auto;
                gap: 16px;
                align-items: center;
                }
            .diy-bottom strong {
                display: block;
                margin-bottom: 8px;
                font-size: 1.12rem;
                line-height: 1.35;
            }
            .diy-bottom p {
                margin: 0;
                color: rgba(255, 255, 255, 0.74);
                line-height: 1.6;
            }
            .diy-actions {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
            }
            @media (max-width: 1200px) {
                .diy-bottom {
                    grid-template-columns: 1fr;
                }
                .diy-grid {
                    grid-template-columns: 1fr 1fr;
                }
            }
            @media (max-width: 768px) {
                .diy-grid {
                    grid-template-columns: 1fr;
                }
                .diy-section {
                    padding: 56px 14px 60px;
                }
                .diy-shell {
                    padding: 22px 16px;
                    border-radius: 20px;
                }
                .diy-card {
                    padding: 18px 16px;
                    border-radius: 16px;
                }
                .diy-bottom {
                    grid-template-columns: 1fr;
                    padding: 18px 16px;
                }
                .diy-actions {
                    flex-direction: column;
                }
                .diy-actions .btn,
                .diy-actions .btn-secondary {
                    width: 100%;
                    min-width: 0;
                }
            }
            /* Quiz lead modal upgrade */
            .modal-form textarea {
                width: 100%;
                min-height: 80px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                padding: 12px 18px;
                font-size: 1rem;
                line-height: 1.5;
                color: #fff;
                background: rgba(255, 255, 255, 0.06);
                outline: none;
                resize: vertical;
                font-family: "Inter", sans-serif;
            }
            .modal-form input[type="file"] {
                width: 100%;
                border: 1px dashed rgba(255, 204, 0, 0.24);
                border-radius: 16px;
                padding: 10px 16px;
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.88);
                background: rgba(255, 255, 255, 0.04);
                cursor: pointer;
            }
            .modal-form input[type="file"]::file-selector-button {
                margin-right: 12px;
                border: none;
                border-radius: 10px;
                padding: 8px 14px;
                background: linear-gradient(180deg, #f7d94f 0%, #e2bb30 100%);
                color: #1b1b1b;
                font-weight: 800;
                cursor: pointer;
            }
            .modal-file-note {
                margin: -4px 0 2px;
                font-size: 0.82rem;
                line-height: 1.45;
                color: rgba(255, 255, 255, 0.62);
            }
            @media (max-width: 768px) {
                .modal-form textarea {
                    min-height: 70px;
                    border-radius: 14px;
                    padding: 10px 14px;
                    font-size: 0.95rem;
                }
                .modal-form input[type="file"] {
                    border-radius: 14px;
                    padding: 8px 14px;
                    font-size: 0.88rem;
                }
            }
            .modal-form input:invalid {
                box-shadow: none;
            }
            /* Geo auto-detection */
            .geo-note {
                margin: 10px 0 0;
                padding: 12px 14px;
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 204, 0, 0.14);
                color: rgba(255, 255, 255, 0.78);
                font-size: 0.88rem;
                line-height: 1.5;
            }
            .geo-note strong {
                color: #fff;
            }
            .geo-note .geo-accent {
                color: var(--yellow);
                font-weight: 800;
            }
            .geo-note small {
                display: block;
                margin-top: 4px;
                color: rgba(255, 255, 255, 0.56);
            }
            .quiz-geo-inline {
                margin: 10px 0 0;
                font-size: 0.9rem;
                line-height: 1.5;
                color: rgba(255, 255, 255, 0.72);
            }
            .quiz-geo-inline .geo-accent {
                color: var(--yellow);
                font-weight: 800;
            }
            .page-heading-section {
                padding: 0 20px 14px;
                background: linear-gradient(180deg, #111111 0%, #111111 100%);
            }
            .page-h1 {
                margin: 0;
                font-size: 2.2rem;
                line-height: 1.12;
                font-weight: 800;
                letter-spacing: -0.8px;
                color: #fff;
            }
            @media (max-width: 768px) {
                .page-heading-section {
                    padding: 0 14px 10px;
                }
                .page-h1 {
                    font-size: 1.55rem;
                    line-height: 1.16;
                    letter-spacing: -0.4px;
                }
            }
            @media (max-width: 768px) {
                .modal-content {
                    max-height: 90vh;
                    overflow-y: auto;
                    padding-bottom: 120px; /* место под кнопку */
                }
                .modal-footer {
                    position: sticky;
                    bottom: 0;
                    background: #111;
                    padding: 15px 0;
                    z-index: 5;
                }
            } /* HERO REBUILD FOR MOBILE */
            @media (max-width: 768px) {
                .hero {
                    display: block !important;
                    min-height: auto !important;
                    padding: 0 !important;
                    background-image: linear-gradient(180deg, #111111 0%, #151515 100%) !important;
                    background-size: auto !important;
                    background-position: center !important;
                    background-repeat: no-repeat !important;
                }
                .hero-inner {
                    width: 100%;
                    min-height: calc(100svh - 58px) !important;
                    display: flex !important;
                    align-items: center !important;
                    justify-content: center !important;
                    padding: 20px 18px !important;
                }
                .hero-inner .container {
                    width: 100% !important;
                    max-width: none !important;
                    display: flex !important;
                    flex-direction: column !important;
                    justify-content: center !important;
                }
                .left {
                    max-width: 100% !important;
                    width: 100% !important;
                    padding: 0 !important;
                    margin: 0 !important;
                }
                .hero-eyebrow {
                    margin: 0 0 14px !important;
                }
                .hero-title-styled {
                    font-size: 1.8rem !important;
                    line-height: 1.1 !important;
                    letter-spacing: -0.8px !important;
                    margin: 0 0 14px !important;
                }
                .desc {
                    font-size: 0.92rem !important;
                    line-height: 1.5 !important;
                    margin: 0 0 18px !important;
                    max-width: 100% !important;
                }
                .buttons {
                    display: flex !important;
                    flex-direction: column !important;
                    gap: 10px !important;
                    width: 100% !important;
                    margin: 0 !important;
                }
                .btn {
                    width: 100% !important;
                    min-width: 0 !important;
                    padding: 15px 14px !important;
                    border-radius: 14px !important;
                }
                /* Advantages moved to second screen */
                .features {
                    display: grid !important;
                    grid-template-columns: 1fr 1fr !important;
                    gap: 8px !important;
                    padding: 40px 16px 20px !important;
                    margin: 0 auto !important;
                    width: 100% !important;
                    max-width: 1240px !important;
                }
                .feature {
                    min-height: 86px !important;
                    padding: 12px 8px 10px !important;
                    border-radius: 12px !important;
                }
                .feature strong {
                    font-size: 0.68rem !important;
                    margin-bottom: 6px !important;
                }
                .feature p {
                    font-size: 0.76rem !important;
                    line-height: 1.14 !important;
                }
            }

/* Form upload/send states */
.modal-submit:disabled {
    opacity: 0.75;
    cursor: wait;
}
.modal-form input[type="file"] {
    cursor: pointer;
}


/* ===== Hero offer with UTP checkboxes ===== */
.hero-offer-title {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(2.15rem, 4.2vw, 4.9rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-align: left;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.44);
}

.hero-offer-title span,
.hero-offer-title strong {
    display: block;
}

.hero-offer-title span {
    color: var(--yellow);
}

.hero-offer-title strong {
    margin-top: 8px;
    color: #fff;
    font-weight: 900;
}

.hero-utp-list {
    max-width: 680px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hero-utp-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 12px 18px 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%),
        rgba(17, 17, 17, 0.54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: clamp(1.05rem, 1.5vw, 1.45rem);
    line-height: 1.16;
    font-weight: 800;
}

.hero-utp-check {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, #54df70 0%, #2fb54d 100%);
    box-shadow:
        0 8px 18px rgba(47, 183, 76, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.hero-utp-check svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 1200px) {
    .hero-offer-title {
        max-width: 650px;
        font-size: clamp(2rem, 4.4vw, 3.55rem);
    }

    .hero-utp-list {
        max-width: 620px;
    }

    .hero-utp-item {
        font-size: 1.12rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 18px 12px 16px;
        justify-content: flex-start;
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.58) 100%),
            radial-gradient(circle at 20% 20%, rgba(255, 204, 0, 0.08), transparent 28%),
            url("/assets/images/fon.webp");
        background-position:
            center,
            center,
            65% center;
    }

    .hero-inner {
        justify-content: flex-start;
        padding-top: 10px;
    }

    .left {
        max-width: 100%;
        width: 100%;
    }

    .hero-eyebrow {
        margin-bottom: 12px;
        padding: 7px 10px;
        font-size: 0.68rem;
        line-height: 1.1;
    }

    .hero-offer-title {
        margin-bottom: 14px;
        max-width: 100%;
        font-size: clamp(2rem, 10.6vw, 3.05rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .hero-offer-title strong {
        margin-top: 6px;
    }

    .hero-utp-list {
        max-width: 100%;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-utp-item {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        min-height: 54px;
        padding: 10px 12px 10px 10px;
        border-radius: 12px;
        font-size: 0.94rem;
        line-height: 1.18;
        font-weight: 800;
    }

    .hero-utp-check {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .hero-utp-check svg {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 400px) {
    .hero-offer-title {
        font-size: clamp(1.72rem, 10vw, 2.25rem);
    }

    .hero-utp-item {
        font-size: 0.86rem;
        grid-template-columns: 32px 1fr;
        min-height: 50px;
        padding: 9px 10px 9px 9px;
    }

    .hero-utp-check {
        width: 31px;
        height: 31px;
    }

    .hero-utp-check svg {
        width: 19px;
        height: 19px;
    }
}



/* ===== Final inline preview fixes: аккуратный первый экран ===== */
#hero .hero-inner {
    display: flex;
    width: 100%;
}
#hero .left {
    position: relative;
    z-index: 2;
}
#hero .hero-offer-title {
    margin: 0 0 20px;
    max-width: 760px;
    font-size: clamp(2.4rem, 4.4vw, 5.05rem);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.06em;
}
#hero .hero-offer-title span,
#hero .hero-offer-title strong {
    display: block;
}
#hero .hero-offer-title span {
    color: var(--yellow);
}
#hero .hero-offer-title strong {
    margin-top: 8px;
    color: #fff;
}
#hero .hero-utp-list,
#hero .hero-utp-list li {
    list-style: none !important;
}
#hero .hero-utp-list {
    width: min(100%, 680px);
    margin: 0 0 22px !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
}
#hero .hero-utp-item {
    display: grid !important;
    grid-template-columns: 46px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 64px;
    padding: 12px 18px 12px 14px !important;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.028) 100%), rgba(17, 17, 17, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: clamp(1.05rem, 1.5vw, 1.45rem);
    line-height: 1.16;
    font-weight: 800;
}
#hero .hero-utp-check {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    border-radius: 11px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff;
    background: linear-gradient(180deg, #54df70 0%, #2fb54d 100%);
    box-shadow: 0 8px 18px rgba(47, 183, 76, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    overflow: hidden;
}
#hero .hero-utp-check svg {
    display: block !important;
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
}
#hero .buttons {
    margin-top: 4px;
}
@media (max-width: 768px) {
    #hero.hero {
        min-height: auto;
        padding: 18px 12px 18px;
    }
    #hero .hero-inner {
        padding-top: 8px;
    }
    #hero .hero-offer-title {
        margin-bottom: 14px;
        font-size: clamp(1.75rem, 9.4vw, 2.85rem);
        line-height: 0.99;
        letter-spacing: -0.045em;
    }
    #hero .hero-utp-list {
        gap: 8px !important;
        margin-bottom: 16px !important;
    }
    #hero .hero-utp-item {
        grid-template-columns: 36px 1fr !important;
        gap: 10px !important;
        min-height: 54px;
        padding: 10px 12px 10px 10px !important;
        border-radius: 12px;
        font-size: 0.94rem;
        line-height: 1.18;
    }
    #hero .hero-utp-check {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        max-width: 34px !important;
        max-height: 34px !important;
        border-radius: 9px;
    }
    #hero .hero-utp-check svg {
        width: 21px !important;
        height: 21px !important;
        min-width: 21px !important;
        min-height: 21px !important;
        max-width: 21px !important;
        max-height: 21px !important;
    }
}
@media (max-width: 400px) {
    #hero .hero-utp-item {
        grid-template-columns: 32px 1fr !important;
        font-size: 0.86rem;
        min-height: 50px;
        padding: 9px 10px 9px 9px !important;
    }
    #hero .hero-utp-check {
        width: 31px !important;
        height: 31px !important;
        min-width: 31px !important;
        min-height: 31px !important;
        max-width: 31px !important;
        max-height: 31px !important;
    }
    #hero .hero-utp-check svg {
        width: 19px !important;
        height: 19px !important;
        min-width: 19px !important;
        min-height: 19px !important;
        max-width: 19px !important;
        max-height: 19px !important;
    }
}


/* ===== User requested hero refinements ===== */
#hero .hero-offer-title {
    max-width: 660px;
    font-size: clamp(2.05rem, 3.15vw, 3.65rem) !important;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 22px;
}

#hero .hero-utp-list,
#hero .hero-utp-list li {
    list-style: none !important;
}

#hero .hero-utp-list li::marker {
    content: "" !important;
    font-size: 0 !important;
}

#hero .hero-utp-item {
    grid-template-columns: 40px 1fr !important;
    min-height: 58px;
    gap: 13px !important;
    padding: 11px 18px 11px 13px !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 12, 12, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 12px 26px rgba(0, 0, 0, 0.16);
    font-size: clamp(1rem, 1.24vw, 1.22rem);
}

#hero .hero-utp-check {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    border-radius: 10px;
    color: #39c85a;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1.5px solid rgba(57, 200, 90, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#hero .hero-utp-check svg {
    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;
    min-height: 23px !important;
    max-width: 23px !important;
    max-height: 23px !important;
}

#hero .hero-utp-highlight {
    display: inline;
    padding: 0;
    color: var(--yellow);
    background: transparent;
    font: inherit;
    font-weight: 900;
}

@media (max-width: 768px) {
    #hero .hero-offer-title {
        font-size: clamp(1.72rem, 8.4vw, 2.55rem) !important;
        line-height: 1.02;
        margin-bottom: 14px;
    }

    #hero .hero-utp-item {
        grid-template-columns: 34px 1fr !important;
        min-height: 52px;
        gap: 10px !important;
        padding: 9px 12px 9px 10px !important;
        font-size: 0.92rem;
    }

    #hero .hero-utp-check {
        width: 31px !important;
        height: 31px !important;
        min-width: 31px !important;
        min-height: 31px !important;
        max-width: 31px !important;
        max-height: 31px !important;
        border-radius: 9px;
    }

    #hero .hero-utp-check svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }
}


            /* CTA button readability upgrade */
            #hero .buttons {
                margin-top: 4px;
            }
            #hero .btn-main {
                min-width: 420px;
                padding: 18px 22px;
                border-radius: 18px;
                border: 1px solid rgba(255, 204, 0, 0.65);
                background: linear-gradient(180deg, #ffdf5a 0%, #ffcc00 52%, #f0b900 100%);
                color: #111111;
                box-shadow:
                    0 18px 34px rgba(255, 204, 0, 0.25),
                    0 8px 18px rgba(0, 0, 0, 0.28),
                    inset 0 1px 0 rgba(255, 255, 255, 0.42);
                text-shadow: none;
            }
            #hero .btn-main:hover {
                transform: translateY(-2px);
                box-shadow:
                    0 22px 42px rgba(255, 204, 0, 0.32),
                    0 10px 22px rgba(0, 0, 0, 0.32),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
            }
            #hero .btn-main .icon-main {
                width: 42px;
                height: 42px;
                padding: 10px;
                border-radius: 50%;
                color: #111111;
                background: rgba(17, 17, 17, 0.12);
                border: 1px solid rgba(17, 17, 17, 0.14);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
            }
            #hero .btn-main .btn-content {
                position: relative;
                z-index: 1;
                gap: 3px;
            }
            #hero .btn-main .btn-content span {
                color: #111111;
                font-size: 1.05rem;
                line-height: 1.05;
                font-weight: 900;
                letter-spacing: -0.01em;
                text-transform: uppercase;
            }
            #hero .btn-main .btn-content small {
                color: rgba(17, 17, 17, 0.78);
                font-size: 0.88rem;
                line-height: 1.15;
                font-weight: 800;
            }
            #hero .btn-main .btn-arrow {
                position: relative;
                z-index: 1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 34px;
                height: 34px;
                margin-left: 4px;
                border-radius: 50%;
                background: rgba(17, 17, 17, 0.12);
                color: #111111;
                font-size: 1.35rem;
                font-weight: 900;
                line-height: 1;
                flex-shrink: 0;
            }
            @media (max-width: 768px) {
                #hero .btn-main {
                    width: 100%;
                    min-width: 0;
                    padding: 15px 14px;
                    border-radius: 16px;
                    gap: 10px;
                }
                #hero .btn-main .icon-main {
                    width: 36px;
                    height: 36px;
                    padding: 9px;
                }
                #hero .btn-main .btn-content span {
                    font-size: 0.88rem;
                    line-height: 1.1;
                }
                #hero .btn-main .btn-content small {
                    font-size: 0.75rem;
                }
                #hero .btn-main .btn-arrow {
                    width: 30px;
                    height: 30px;
                    font-size: 1.1rem;
                }
            }

/* ===== Hero UTP width fix: cards align by longest text, not full screen ===== */
#hero .hero-utp-list {
    width: max-content !important;
    max-width: min(100%, 820px) !important;
    display: inline-grid !important;
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    align-items: stretch !important;
}

#hero .hero-utp-item {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    white-space: normal !important;
}

@media (max-width: 768px) {
    #hero .hero-utp-list {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
    }

    #hero .hero-utp-item {
        width: 100% !important;
    }
}

/* === Lock-Master hero buttons spacing fix === */
.hero .buttons {
    gap: 18px;
}

.hero .buttons .btn-content span {
    line-height: 1.14;
}

.hero .buttons .btn-content small {
    margin-top: 8px;
    line-height: 1.18;
}

.hero .buttons .hero-request-btn {
    margin-top: 2px;
}

.hero .buttons .hero-request-btn .btn-content span {
    line-height: 1.16;
}

@media (max-width: 768px) {
    .hero .buttons {
        gap: 18px;
    }

    .hero .buttons .btn-content span {
        line-height: 1.14;
    }

    .hero .buttons .btn-content small {
        margin-top: 7px;
        line-height: 1.18;
    }

    .hero .buttons .hero-request-btn .btn-content span {
        line-height: 1.15;
    }
}


/* === Header callback button: как на главной === */
.btn-header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    min-width: 138px;
    border: 1px solid rgba(255, 204, 0, 0.62);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffdf5a 0%, #ffcc00 55%, #e7b700 100%);
    color: #111111;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 204, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    appearance: none;
    -webkit-appearance: none;
}

.btn-header-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 204, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .btn-header-call {
        min-width: 0;
        max-width: 112px;
        padding: 8px 11px;
        border-radius: 10px;
        font-size: 0.78rem;
        line-height: 1.05;
        text-align: center;
        white-space: normal;
    }
}

/* ===== Moscow clean fixes v2026060617 ===== */
.desktop-call-text { display: inline !important; }
.mobile-call-text { display: none !important; }

.btn-header-call,
.btn-header-max.btn-header-call {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 152px !important;
    max-width: 170px !important;
    height: 52px !important;
    padding: 10px 18px !important;
    border: 1px solid rgba(255, 204, 0, 0.62) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #ffdf5a 0%, #ffcc00 55%, #e7b700 100%) !important;
    color: #111111 !important;
    font-size: 0.92rem !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 22px rgba(255, 204, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

.phone-desktop {
    font-size: 1.12rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
}

.hero-action-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-top: 8px !important;
}

#hero .hero-action-stack .btn {
    width: min(100%, 560px) !important;
}

#hero .btn-request,
.hero .btn-request {
    position: relative !important;
    overflow: hidden !important;
    min-height: 74px !important;
    padding: 18px 22px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 204, 0, 0.64) !important;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 204, 0, 0.30), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, #242b33 0%, #121212 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    text-shadow: none !important;
}

#hero .btn-request::before,
.hero .btn-request::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.12), transparent 42%);
    pointer-events: none;
}

#hero .btn-request > *,
.hero .btn-request > * {
    position: relative;
    z-index: 1;
}

#hero .btn-request .icon-main,
#hero .btn-request .btn-arrow,
.hero .btn-request .icon-main,
.hero .btn-request .btn-arrow {
    color: var(--yellow) !important;
}

#hero .btn-request .btn-content span,
.hero .btn-request .btn-content span {
    color: #ffffff !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
}

#hero .btn-request .btn-content small,
.hero .btn-request .btn-content small {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-top: 6px !important;
}

#hero .features,
.features {
    margin-top: 36px !important;
}

.services-section {
    padding-top: 56px !important;
}

.services-grid,
.steps-grid,
.cases-grid,
.pain-grid,
.diy-grid,
.masters-grid,
.benefits-grid,
.reviews-grid {
    gap: 18px !important;
}

@media (max-width: 768px) {
    .desktop-call-text { display: none !important; }
    .mobile-call-text { display: inline !important; }

    .header-container {
        grid-template-columns: 24px 40px minmax(0, 1fr) 82px !important;
        column-gap: 6px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .btn-header-call,
    .btn-header-max.btn-header-call {
        width: 82px !important;
        min-width: 82px !important;
        max-width: 82px !important;
        height: 46px !important;
        padding: 5px 4px !important;
        font-size: 0.64rem !important;
        line-height: 1.05 !important;
        white-space: normal !important;
    }

    .phone-mobile {
        font-size: clamp(0.9rem, 3.85vw, 1.1rem) !important;
        font-weight: 900 !important;
        letter-spacing: -0.055em !important;
    }

    #hero .hero-action-stack {
        gap: 14px !important;
        margin-top: 8px !important;
    }

    #hero .hero-action-stack .btn,
    .hero-action-stack .btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    #hero .btn-request,
    .hero .btn-request {
        min-height: 74px !important;
        border-radius: 16px !important;
    }

    #hero .features,
    .features {
        margin-top: 34px !important;
        padding-top: 0 !important;
    }

    .services-section {
        padding-top: 52px !important;
    }
}

@media (max-width: 380px) {
    .header-container {
        grid-template-columns: 22px 34px minmax(0, 1fr) 70px !important;
        column-gap: 5px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .btn-header-call,
    .btn-header-max.btn-header-call {
        width: 70px !important;
        min-width: 70px !important;
        max-width: 70px !important;
        height: 44px !important;
        font-size: 0.55rem !important;
        padding: 4px 3px !important;
    }

    .phone-mobile {
        font-size: clamp(0.76rem, 3.5vw, 0.92rem) !important;
        letter-spacing: -0.075em !important;
    }
}

/* ===== Compact lead form + final modal fix v2026060618 ===== */
.modal {
    padding: 14px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.modal-dialog {
    width: min(100%, 500px) !important;
    max-height: calc(100dvh - 28px) !important;
    overflow-y: auto !important;
    padding: 18px 18px 16px !important;
    border-radius: 20px !important;
}

.modal-close {
    top: 10px !important;
    right: 12px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

.modal-title {
    margin: 0 42px 6px 0 !important;
    font-size: 1.55rem !important;
    line-height: 1.08 !important;
}

.modal-text {
    margin: 0 0 10px !important;
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
    max-width: none !important;
}

.modal-form {
    gap: 7px !important;
}

.modal-form input {
    height: 40px !important;
    border-radius: 12px !important;
    padding: 0 13px !important;
    font-size: 16px !important;
}

.modal-form textarea {
    min-height: 58px !important;
    max-height: 82px !important;
    border-radius: 12px !important;
    padding: 9px 13px !important;
    font-size: 16px !important;
    line-height: 1.28 !important;
}

.modal-form input[type="file"] {
    height: auto !important;
    min-height: 38px !important;
    border-radius: 12px !important;
    padding: 7px 10px !important;
    font-size: 0.8rem !important;
}

.modal-form input[type="file"]::file-selector-button {
    padding: 6px 10px !important;
    border-radius: 8px !important;
    font-size: 0.78rem !important;
}

.modal-file-note,
.quiz-geo-inline {
    margin: 0 !important;
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
}

.modal-submit {
    height: 42px !important;
    border-radius: 12px !important;
    font-size: 0.92rem !important;
}

@media (max-width: 768px) {
    .modal {
        align-items: flex-start !important;
        padding: max(8px, env(safe-area-inset-top)) 8px 8px !important;
    }

    .modal-dialog {
        width: 100% !important;
        max-width: 430px !important;
        max-height: calc(100dvh - 16px) !important;
        padding: 13px 12px 12px !important;
        border-radius: 17px !important;
    }

    .modal-close {
        position: sticky !important;
        float: right !important;
        top: 0 !important;
        right: 0 !important;
        margin: -4px -2px 0 8px !important;
        z-index: 2 !important;
        border-radius: 999px !important;
        background: rgba(0, 0, 0, 0.78) !important;
        border: 1px solid rgba(255, 204, 0, 0.25) !important;
    }

    .modal-title {
        margin: 0 0 5px !important;
        font-size: 1.22rem !important;
        line-height: 1.08 !important;
    }

    .modal-text {
        margin-bottom: 8px !important;
        font-size: 0.78rem !important;
        line-height: 1.32 !important;
    }

    .modal-form {
        gap: 6px !important;
    }

    .modal-form input {
        height: 37px !important;
        border-radius: 11px !important;
        padding: 0 11px !important;
    }

    .modal-form textarea {
        min-height: 48px !important;
        max-height: 62px !important;
        border-radius: 11px !important;
        padding: 8px 11px !important;
    }

    .modal-form input[type="file"] {
        min-height: 36px !important;
        padding: 6px 9px !important;
        font-size: 0.76rem !important;
    }

    .modal-file-note,
    .quiz-geo-inline {
        display: none !important;
    }

    .modal-submit {
        height: 38px !important;
        border-radius: 11px !important;
        font-size: 0.86rem !important;
    }
}

@media (max-width: 380px) {
    .modal-dialog {
        max-height: calc(100dvh - 10px) !important;
        padding: 11px 10px 10px !important;
    }

    .modal-title {
        font-size: 1.08rem !important;
    }

    .modal-text {
        font-size: 0.72rem !important;
    }

    .modal-form input {
        height: 34px !important;
    }

    .modal-form textarea {
        min-height: 42px !important;
        max-height: 54px !important;
    }

    .modal-submit {
        height: 36px !important;
    }
}
/* ==========================================================
   FIX 2026-06-28: mobile header + hero CTA/messenger buttons
   после переноса первого экрана по образцу.
   Исправляет разъезд кнопок и мессенджеров на мобильных.
   ========================================================== */

/* Общие ограничения, чтобы кнопки не ломали сетку */
#hero .buttons,
#hero .hero-action-stack,
.conversion-actions,
.pain-actions,
.diy-actions {
    max-width: 100% !important;
}

#hero .buttons .btn,
#hero .buttons .messenger-choice,
.conversion-actions .btn,
.conversion-actions .messenger-choice,
.pain-actions .btn,
.pain-actions .messenger-choice,
.diy-actions .btn,
.diy-actions .messenger-choice {
    min-width: 0 !important;
}

.messenger-choice {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.messenger-choice-icons {
    flex-shrink: 0 !important;
}

.messenger-choice-text {
    min-width: 0 !important;
}

.messenger-choice-text span,
.messenger-choice-text small {
    overflow-wrap: anywhere !important;
}

@media (max-width: 980px) {
    .header-right {
        display: contents !important;
    }

    .phone-desktop,
    .header-messengers,
    .btn-header-call,
    .btn-header-max.btn-header-call {
        display: none !important;
    }

    .phone-mobile.mobile-call-btn {
        display: inline-flex !important;
    }

    .mobile-header-messengers {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .site-header {
        height: 58px !important;
    }

    body {
        padding-top: 58px !important;
    }

    .header-container {
        display: grid !important;
        grid-template-columns: 24px 42px minmax(0, 1fr) auto !important;
        align-items: center !important;
        column-gap: 7px !important;
        padding-left: 9px !important;
        padding-right: 9px !important;
        max-width: 100% !important;
    }

    .burger-icon {
        grid-column: 1 !important;
        width: 24px !important;
        min-width: 24px !important;
        height: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

    .mobile-logo {
        grid-column: 2 !important;
        display: block !important;
        font-size: 1.68rem !important;
        line-height: 1 !important;
        letter-spacing: -0.04em !important;
        text-align: center !important;
        color: var(--yellow) !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }

    .phone-mobile.mobile-call-btn {
        grid-column: 3 !important;
        justify-self: stretch !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 12px !important;
        border-radius: 999px !important;
        gap: 7px !important;
        font-size: 0.78rem !important;
        line-height: 1 !important;
        letter-spacing: 0.035em !important;
        font-weight: 900 !important;
        color: #111 !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .phone-mobile.mobile-call-btn svg {
        width: 15px !important;
        height: 15px !important;
        flex: 0 0 15px !important;
    }

    .phone-mobile.mobile-call-btn span {
        display: inline-block !important;
        min-width: 0 !important;
    }

    .mobile-header-messengers {
        grid-column: 4 !important;
        justify-self: end !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        margin-left: 0 !important;
        min-width: max-content !important;
    }

    .mobile-header-messengers .header-messenger-link {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        flex: 0 0 34px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
        border: 0 !important;
    }

    .mobile-header-messengers .header-messenger-link img {
        width: 31px !important;
        height: 31px !important;
        display: block !important;
        object-fit: contain !important;
        border-radius: 50% !important;
    }

    /* Первый экран */
    #hero.hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 26px !important;
        padding-bottom: 18px !important;
    }

    #hero .hero-inner,
    #hero .container,
    #hero .left {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    #hero .hero-eyebrow {
        max-width: 100% !important;
        padding: 7px 11px !important;
        font-size: 0.66rem !important;
        line-height: 1.15 !important;
        letter-spacing: 0.08em !important;
        white-space: normal !important;
    }

    #hero .hero-title-styled {
        max-width: 100% !important;
        margin-bottom: 14px !important;
        font-size: clamp(2rem, 8.4vw, 2.55rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.055em !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    #hero .desc {
        max-width: 100% !important;
        margin-bottom: 18px !important;
        font-size: 0.92rem !important;
        line-height: 1.48 !important;
    }

    #hero .buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    #hero .buttons .btn,
    #hero .hero-action-stack .btn {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 13px 14px !important;
        border-radius: 16px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 12px !important;
        font-size: 0.9rem !important;
        line-height: 1.15 !important;
        text-align: left !important;
    }

    #hero .buttons .btn .icon-main {
        width: 18px !important;
        height: 18px !important;
        flex: 0 0 18px !important;
    }

    #hero .buttons .btn-content {
        min-width: 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
        line-height: 1.12 !important;
    }

    #hero .buttons .btn-content span {
        font-size: 0.93rem !important;
        line-height: 1.14 !important;
        letter-spacing: 0.015em !important;
        overflow-wrap: anywhere !important;
    }

    #hero .buttons .btn-content small {
        margin-top: 4px !important;
        font-size: 0.76rem !important;
        line-height: 1.18 !important;
        font-weight: 700 !important;
        overflow-wrap: anywhere !important;
    }

    #hero .buttons .messenger-choice,
    #hero .messenger-choice--hero {
        width: 100% !important;
        min-height: 58px !important;
        height: auto !important;
        padding: 10px 11px 10px 14px !important;
        border-radius: 16px !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    #hero .messenger-choice-text span {
        font-size: 0.78rem !important;
        line-height: 1.05 !important;
        letter-spacing: 0.04em !important;
    }

    #hero .messenger-choice-text small {
        font-size: 0.66rem !important;
        line-height: 1.15 !important;
    }

    #hero .messenger-choice-icons {
        gap: 6px !important;
    }

    #hero .messenger-choice-link {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
    }

    #hero .messenger-choice-link img {
        width: 32px !important;
        height: 32px !important;
    }

    /* Нижние CTA-блоки: кнопка и мессенджеры не должны стоять в одну тесную строку */
    .conversion-actions,
    .pain-actions,
    .diy-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .conversion-actions .btn,
    .pain-actions .btn,
    .diy-actions .btn,
    .conversion-actions .messenger-choice,
    .pain-actions .messenger-choice,
    .diy-actions .messenger-choice {
        width: 100% !important;
        max-width: 100% !important;
    }

    .conversion-actions .messenger-choice,
    .pain-actions .messenger-choice,
    .diy-actions .messenger-choice {
        padding: 10px 11px 10px 14px !important;
        min-height: 56px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 430px) {
    .header-container {
        grid-template-columns: 24px 40px minmax(128px, 1fr) auto !important;
        column-gap: 6px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .phone-mobile.mobile-call-btn {
        height: 40px !important;
        min-height: 40px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 0.74rem !important;
    }

    .mobile-header-messengers {
        gap: 4px !important;
    }

    .mobile-header-messengers .header-messenger-link {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        flex-basis: 32px !important;
    }

    .mobile-header-messengers .header-messenger-link img {
        width: 29px !important;
        height: 29px !important;
    }

    #hero.hero {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    #hero .hero-title-styled {
        font-size: clamp(1.9rem, 8vw, 2.35rem) !important;
    }
}

@media (max-width: 380px) {
    .header-container {
        grid-template-columns: 22px 36px minmax(112px, 1fr) auto !important;
        column-gap: 5px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .mobile-logo {
        font-size: 1.48rem !important;
    }

    .phone-mobile.mobile-call-btn {
        height: 36px !important;
        min-height: 36px !important;
        padding: 0 8px !important;
        font-size: 0.66rem !important;
        gap: 5px !important;
    }

    .phone-mobile.mobile-call-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex-basis: 14px !important;
    }

    .mobile-header-messengers .header-messenger-link {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        flex-basis: 28px !important;
    }

    .mobile-header-messengers .header-messenger-link img {
        width: 26px !important;
        height: 26px !important;
    }

    #hero .hero-title-styled {
        font-size: 1.8rem !important;
    }

    #hero .buttons .btn-content span {
        font-size: 0.84rem !important;
    }

    #hero .buttons .btn-content small {
        font-size: 0.7rem !important;
    }

    #hero .messenger-choice-link {
        width: 30px !important;
        height: 30px !important;
        flex-basis: 30px !important;
    }

    #hero .messenger-choice-link img {
        width: 28px !important;
        height: 28px !important;
    }
}

/* ============================================================
   MOBILE HEADER FIX v2 — компактная кнопка "Позвонить"
   ============================================================ */
@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 24px 42px auto auto !important;
        justify-content: space-between !important;
        column-gap: 7px !important;
    }

    .phone-mobile.mobile-call-btn {
        justify-self: center !important;
        width: auto !important;
        min-width: 154px !important;
        max-width: 176px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 18px !important;
        flex: 0 0 auto !important;
        font-size: 0.76rem !important;
        letter-spacing: 0.03em !important;
    }

    .phone-mobile.mobile-call-btn svg {
        width: 15px !important;
        height: 15px !important;
        flex: 0 0 15px !important;
    }

    .mobile-header-messengers {
        justify-self: end !important;
        gap: 5px !important;
        flex: 0 0 auto !important;
    }
}

@media (max-width: 430px) {
    .header-container {
        grid-template-columns: 24px 39px auto auto !important;
        column-gap: 5px !important;
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .mobile-logo {
        font-size: 1.55rem !important;
    }

    .phone-mobile.mobile-call-btn {
        min-width: 142px !important;
        max-width: 158px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 13px !important;
        font-size: 0.68rem !important;
        gap: 6px !important;
    }

    .mobile-header-messengers {
        gap: 4px !important;
    }

    .mobile-header-messengers .header-messenger-link {
        width: 31px !important;
        height: 31px !important;
        min-width: 31px !important;
        flex-basis: 31px !important;
    }

    .mobile-header-messengers .header-messenger-link img {
        width: 29px !important;
        height: 29px !important;
    }
}

@media (max-width: 380px) {
    .header-container {
        grid-template-columns: 22px 34px auto auto !important;
        column-gap: 4px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .mobile-logo {
        font-size: 1.38rem !important;
    }

    .phone-mobile.mobile-call-btn {
        min-width: 126px !important;
        max-width: 138px !important;
        height: 35px !important;
        min-height: 35px !important;
        padding: 0 9px !important;
        font-size: 0.62rem !important;
        gap: 5px !important;
    }

    .phone-mobile.mobile-call-btn svg {
        width: 13px !important;
        height: 13px !important;
        flex-basis: 13px !important;
    }

    .mobile-header-messengers .header-messenger-link {
        width: 27px !important;
        height: 27px !important;
        min-width: 27px !important;
        flex-basis: 27px !important;
    }

    .mobile-header-messengers .header-messenger-link img {
        width: 25px !important;
        height: 25px !important;
    }
}

/* ============================================================
   MOBILE HEADER FIX v3 — фиксированная короткая кнопка звонка
   ============================================================ */
@media (max-width: 768px) {
    .site-header .header-container {
        display: grid !important;
        grid-template-columns: 24px 42px 132px 102px !important;
        justify-content: start !important;
        align-items: center !important;
        column-gap: 6px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .site-header .phone-mobile,
    .site-header .mobile-call-btn,
    .site-header .phone-mobile.mobile-call-btn {
        grid-column: 3 !important;
        display: inline-flex !important;
        justify-self: start !important;
        width: 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
        flex: 0 0 132px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 12px !important;
        gap: 6px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        line-height: 1 !important;
        letter-spacing: 0.035em !important;
        white-space: nowrap !important;
    }

    .site-header .phone-mobile.mobile-call-btn svg,
    .site-header .mobile-call-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex: 0 0 14px !important;
    }

    .site-header .phone-mobile.mobile-call-btn span,
    .site-header .mobile-call-btn span {
        display: inline-block !important;
        flex: 0 0 auto !important;
    }

    .site-header .mobile-header-messengers {
        grid-column: 4 !important;
        justify-self: end !important;
        width: 102px !important;
        min-width: 102px !important;
        max-width: 102px !important;
        display: inline-flex !important;
        justify-content: flex-end !important;
        gap: 4px !important;
        margin-left: 0 !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 31px !important;
        height: 31px !important;
        min-width: 31px !important;
        flex: 0 0 31px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 29px !important;
        height: 29px !important;
    }
}

@media (max-width: 390px) {
    .site-header .header-container {
        grid-template-columns: 22px 36px 120px 96px !important;
        column-gap: 5px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .site-header .mobile-logo {
        font-size: 1.42rem !important;
    }

    .site-header .phone-mobile,
    .site-header .mobile-call-btn,
    .site-header .phone-mobile.mobile-call-btn {
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        flex-basis: 120px !important;
        height: 36px !important;
        min-height: 36px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
        gap: 5px !important;
    }

    .site-header .mobile-header-messengers {
        width: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        gap: 3px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        flex-basis: 30px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (max-width: 350px) {
    .site-header .header-container {
        grid-template-columns: 21px 32px 108px 87px !important;
        column-gap: 4px !important;
    }

    .site-header .phone-mobile,
    .site-header .mobile-call-btn,
    .site-header .phone-mobile.mobile-call-btn {
        width: 108px !important;
        min-width: 108px !important;
        max-width: 108px !important;
        flex-basis: 108px !important;
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
    }

    .site-header .mobile-header-messengers {
        width: 87px !important;
        min-width: 87px !important;
        max-width: 87px !important;
        gap: 2px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        flex-basis: 28px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 26px !important;
        height: 26px !important;
    }
}

/* === CSS moved from HTML <style> block: header/messengers === */
.header-messengers {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                margin-left: 14px;
            }

            .header-messenger-link {
                width: 44px;
                height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.12);
                transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
            }

            .header-messenger-link:hover {
                transform: translateY(-2px);
                background: rgba(255, 255, 255, 0.14);
                border-color: rgba(255, 255, 255, 0.22);
            }

            .header-messenger-link img {
                display: block;
                width: 30px;
                height: 30px;
                object-fit: contain;
            }


            .mobile-call-btn {
                display: none;
                align-items: center;
                justify-content: center;
                gap: 8px;
                min-height: 38px;
                padding: 0 14px;
                border-radius: 999px;
                color: #111;
                background: linear-gradient(135deg, #f6d94b 0%, #ffd84d 45%, #f4b400 100%);
                border: 1px solid rgba(255, 231, 120, 0.55);
                box-shadow: 0 10px 24px rgba(255, 204, 36, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
                font-size: 12px;
                font-weight: 900;
                line-height: 1;
                text-transform: uppercase;
                letter-spacing: 0.04em;
                text-decoration: none;
                white-space: nowrap;
                transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            }

            .mobile-call-btn:hover {
                transform: translateY(-1px);
                filter: brightness(1.04);
                box-shadow: 0 12px 28px rgba(255, 204, 36, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.52);
            }

            .mobile-call-btn svg {
                width: 17px;
                height: 17px;
                flex: 0 0 auto;
                filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
            }

            .mobile-header-messengers {
                display: none;
                align-items: center;
                gap: 8px;
                margin-left: 8px;
            }

            .mobile-header-messengers .header-messenger-link {
                width: 38px;
                height: 38px;
                border-radius: 50%;
                padding: 0;
                overflow: hidden;
                background: transparent;
                border: 0;
            }

            .mobile-header-messengers .header-messenger-link img {
                width: 34px;
                height: 34px;
                object-fit: contain;
                border-radius: 50%;
            }

            .mobile-menu-messengers {
                display: flex;
                gap: 12px;
                margin-top: 16px;
            }

            .mobile-menu-messengers .header-messenger-link {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                padding: 0;
                overflow: hidden;
                background: transparent;
                border: 0;
            }

            .mobile-menu-messengers .header-messenger-link img {
                width: 42px;
                height: 42px;
                object-fit: contain;
                border-radius: 50%;
            }



            .messenger-choice {
                display: inline-flex;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
                min-height: 56px;
                padding: 10px 14px 10px 18px;
                border-radius: 18px;
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.14);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.18);
                color: #fff;
                text-decoration: none;
            }

            .messenger-choice-text {
                display: flex;
                flex-direction: column;
                gap: 4px;
                min-width: 0;
            }

            .messenger-choice-text span {
                font-size: 13px;
                font-weight: 900;
                line-height: 1.05;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                color: #fff;
            }

            .messenger-choice-text small {
                font-size: 11px;
                font-weight: 700;
                line-height: 1.2;
                color: rgba(255, 255, 255, 0.76);
            }

            .messenger-choice-icons {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                flex: 0 0 auto;
            }

            .messenger-choice-link {
                width: 38px;
                height: 38px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                overflow: hidden;
                background: transparent;
                border: 0;
                text-decoration: none;
                transition: transform 0.2s ease, filter 0.2s ease;
            }

            .messenger-choice-link:hover {
                transform: translateY(-2px) scale(1.04);
                filter: brightness(1.06);
            }

            .messenger-choice-link img {
                display: block;
                width: 36px;
                height: 36px;
                object-fit: contain;
                border-radius: 50%;
            }

            .messenger-choice--hero {
                min-height: 64px;
                background: rgba(13, 18, 32, 0.72);
                border-color: rgba(255, 216, 77, 0.22);
            }

            .messenger-choice--compact,
            .messenger-choice--wide {
                background: rgba(15, 23, 42, 0.78);
                border-color: rgba(255, 216, 77, 0.18);
            }

            .messenger-choice--wide {
                width: 100%;
            }

            .messenger-choice--footer {
                margin-top: 4px;
                padding: 10px 12px;
                background: rgba(255, 255, 255, 0.06);
            }

            @media (max-width: 1180px) {
                .header-messengers {
                    gap: 8px;
                    margin-left: 10px;
                }

                .header-messenger-link {
                    width: 40px;
                    height: 40px;
                    border-radius: 12px;
                }

                .header-messenger-link img {
                    width: 27px;
                    height: 27px;
                }
            }

            @media (max-width: 980px) {
                .header-messengers {
                    display: none;
                }

                .mobile-call-btn {
                    display: inline-flex;
                }

                .mobile-header-messengers {
                    display: inline-flex;
                }
            }

            @media (max-width: 520px) {
                .mobile-call-btn {
                    min-height: 34px;
                    padding: 0 11px;
                    gap: 6px;
                    font-size: 11px;
                    letter-spacing: 0.03em;
                }

                .mobile-call-btn svg {
                    width: 15px;
                    height: 15px;
                }

                .mobile-header-messengers {
                    gap: 6px;
                    margin-left: 6px;
                }

                .mobile-header-messengers .header-messenger-link {
                    width: 34px;
                    height: 34px;
                }

                .mobile-header-messengers .header-messenger-link img {
                    width: 31px;
                    height: 31px;
                }
            }


            @media (max-width: 680px) {
                .messenger-choice {
                    width: 100%;
                    justify-content: space-between;
                    padding: 10px 12px 10px 14px;
                    border-radius: 16px;
                }

                .messenger-choice-text span {
                    font-size: 12px;
                }

                .messenger-choice-text small {
                    font-size: 10px;
                }

                .messenger-choice-link {
                    width: 34px;
                    height: 34px;
                }

                .messenger-choice-link img {
                    width: 32px;
                    height: 32px;
                }
            }

/* === Lock-Master SPB mobile header final override v2026062804 === */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header .header-container {
        display: grid !important;
        grid-template-columns: 24px 42px 118px 96px !important;
        align-items: center !important;
        justify-content: start !important;
        gap: 6px !important;
        padding: 0 8px !important;
        max-width: none !important;
    }

    .site-header .header-right {
        display: contents !important;
    }

    .site-header .phone-mobile.mobile-call-btn {
        display: inline-flex !important;
        width: 118px !important;
        min-width: 118px !important;
        max-width: 118px !important;
        flex: 0 0 118px !important;
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 9px !important;
        gap: 6px !important;
        border-radius: 999px !important;
        font-size: 10.5px !important;
        letter-spacing: 0.02em !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .site-header .phone-mobile.mobile-call-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex: 0 0 14px !important;
    }

    .site-header .phone-mobile.mobile-call-btn span {
        display: inline-block !important;
        overflow: hidden !important;
        text-overflow: clip !important;
    }

    .site-header .mobile-header-messengers {
        display: inline-flex !important;
        width: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        gap: 4px !important;
        margin-left: 0 !important;
        justify-content: flex-end !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 29px !important;
        min-width: 29px !important;
        max-width: 29px !important;
        height: 29px !important;
        flex: 0 0 29px !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 27px !important;
        height: 27px !important;
    }
}

@media (max-width: 390px) {
    .site-header .header-container {
        grid-template-columns: 22px 38px 108px 88px !important;
        gap: 5px !important;
        padding: 0 7px !important;
    }

    .site-header .mobile-logo {
        font-size: 1.55rem !important;
    }

    .site-header .phone-mobile.mobile-call-btn {
        width: 108px !important;
        min-width: 108px !important;
        max-width: 108px !important;
        flex-basis: 108px !important;
        height: 32px !important;
        min-height: 32px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
    }

    .site-header .mobile-header-messengers {
        width: 88px !important;
        min-width: 88px !important;
        max-width: 88px !important;
        gap: 3px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 27px !important;
        min-width: 27px !important;
        max-width: 27px !important;
        height: 27px !important;
        flex-basis: 27px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 25px !important;
        height: 25px !important;
    }
}

/* === Lock-Master SPB mobile header centered distribution v2026062805 === */
@media (max-width: 768px) {
    .site-header .header-container {
        display: grid !important;
        grid-template-columns: 28px 52px 118px 126px !important;
        align-items: center !important;
        justify-content: center !important;
        justify-items: center !important;
        column-gap: 10px !important;
        padding: 0 10px !important;
        max-width: none !important;
        width: 100% !important;
    }

    .site-header .burger-icon {
        justify-self: center !important;
    }

    .site-header .mobile-logo {
        justify-self: center !important;
        width: 52px !important;
        text-align: center !important;
    }

    .site-header .header-right {
        display: contents !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        justify-self: center !important;
        display: inline-flex !important;
        width: 118px !important;
        min-width: 118px !important;
        max-width: 118px !important;
        flex: 0 0 118px !important;
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 10px !important;
        gap: 6px !important;
        border-radius: 999px !important;
        font-size: 10.5px !important;
        letter-spacing: 0.02em !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .site-header .phone-mobile.mobile-call-btn svg,
    .site-header .mobile-call-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex: 0 0 14px !important;
    }

    .site-header .phone-mobile.mobile-call-btn span,
    .site-header .mobile-call-btn span {
        display: inline-block !important;
        overflow: hidden !important;
        text-overflow: clip !important;
    }

    .site-header .mobile-header-messengers {
        justify-self: center !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 126px !important;
        min-width: 126px !important;
        max-width: 126px !important;
        gap: 8px !important;
        margin-left: 0 !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 390px) {
    .site-header .header-container {
        grid-template-columns: 26px 46px 108px 114px !important;
        column-gap: 8px !important;
        padding: 0 8px !important;
        justify-content: center !important;
    }

    .site-header .mobile-logo {
        width: 46px !important;
        font-size: 1.55rem !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        width: 108px !important;
        min-width: 108px !important;
        max-width: 108px !important;
        flex-basis: 108px !important;
        height: 32px !important;
        min-height: 32px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
    }

    .site-header .mobile-header-messengers {
        width: 114px !important;
        min-width: 114px !important;
        max-width: 114px !important;
        gap: 6px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        height: 32px !important;
        flex-basis: 32px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 30px !important;
        height: 30px !important;
    }
}

/* === Lock-Master SPB mobile header like sample: flex balanced v2026062806 === */
@media (max-width: 768px) {
    .site-header {
        height: 58px !important;
    }

    .site-header .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: none !important;
        height: 58px !important;
        padding: 0 14px !important;
        gap: 10px !important;
        grid-template-columns: none !important;
        column-gap: 0 !important;
    }

    .site-header .nav-desktop,
    .site-header .logo,
    .site-header .phone-desktop,
    .site-header .header-messengers {
        display: none !important;
    }

    .site-header .burger-icon {
        order: 1 !important;
        display: inline-flex !important;
        flex: 0 0 28px !important;
        width: 28px !important;
        min-width: 28px !important;
        height: 38px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .burger-icon span {
        width: 22px !important;
        height: 2px !important;
        border-radius: 2px !important;
    }

    .site-header .mobile-logo {
        order: 2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 45px !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 1.78rem !important;
        line-height: 1 !important;
        text-align: left !important;
        white-space: nowrap !important;
    }

    .site-header .header-right {
        order: 3 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 9px !important;
        margin-left: auto !important;
        white-space: nowrap !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 17px !important;
        gap: 7px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        line-height: 1 !important;
        letter-spacing: 0.03em !important;
        white-space: nowrap !important;
    }

    .site-header .phone-mobile.mobile-call-btn svg,
    .site-header .mobile-call-btn svg {
        width: 15px !important;
        height: 15px !important;
        flex: 0 0 15px !important;
    }

    .site-header .phone-mobile.mobile-call-btn span,
    .site-header .mobile-call-btn span {
        display: inline-block !important;
        overflow: visible !important;
        text-overflow: initial !important;
    }

    .site-header .mobile-header-messengers {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        gap: 7px !important;
        margin: 0 !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
    }
}

@media (max-width: 430px) {
    .site-header .header-container {
        padding: 0 12px !important;
        gap: 8px !important;
    }

    .site-header .header-right {
        gap: 7px !important;
    }

    .site-header .mobile-logo {
        min-width: 42px !important;
        font-size: 1.68rem !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        height: 32px !important;
        min-height: 32px !important;
        padding: 0 15px !important;
        font-size: 10.5px !important;
        gap: 6px !important;
    }

    .site-header .phone-mobile.mobile-call-btn svg,
    .site-header .mobile-call-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex-basis: 14px !important;
    }

    .site-header .mobile-header-messengers {
        gap: 6px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        height: 32px !important;
        flex-basis: 32px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 30px !important;
        height: 30px !important;
    }
}

@media (max-width: 374px) {
    .site-header .header-container {
        padding: 0 9px !important;
        gap: 6px !important;
    }

    .site-header .burger-icon {
        flex-basis: 24px !important;
        width: 24px !important;
        min-width: 24px !important;
    }

    .site-header .burger-icon span {
        width: 20px !important;
    }

    .site-header .mobile-logo {
        min-width: 36px !important;
        font-size: 1.48rem !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        padding: 0 11px !important;
        font-size: 10px !important;
    }

    .site-header .mobile-header-messengers {
        gap: 4px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 29px !important;
        min-width: 29px !important;
        max-width: 29px !important;
        height: 29px !important;
        flex-basis: 29px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 27px !important;
        height: 27px !important;
    }
}

/* ============================================================
   FINAL LOCK-MASTER HEADER/HERO OVERRIDES v=2026070411
   Правки: мессенджеры в шапке, мобильная кнопка, новый hero
   ============================================================ */
.header-messengers,
.mobile-header-messengers,
.mobile-menu-messengers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-messenger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    flex: 0 0 34px;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-messenger-link:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.header-messenger-link img {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
}

.mobile-header-messengers {
    display: none;
}

.mobile-menu-messengers {
    margin-top: 14px;
    justify-content: center;
}

.hero-offer-title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    max-width: 760px;
}

.hero-offer-title span,
.hero-offer-title strong {
    display: block;
}

.hero-offer-title span {
    color: #fff;
}

.hero-offer-title strong {
    color: var(--yellow);
}

.hero-utp-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 700px;
}

.hero-utp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.58);
    border: 1px solid rgba(255, 204, 0, 0.18);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-utp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    color: #111;
    background: var(--yellow);
}

.hero-utp-check svg {
    width: 15px;
    height: 15px;
}

.hero-utp-highlight {
    color: var(--yellow);
    background: transparent;
    font-weight: 900;
}

.hero-action-stack {
    align-items: stretch;
}

.btn-call-master .btn-content {
    align-items: flex-start;
    text-align: left;
}

.messenger-choice {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 285px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 204, 0, 0.24);
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(8px);
}

.messenger-choice-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.messenger-choice-text span {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.messenger-choice-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

.messenger-choice-icons {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.messenger-choice-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.messenger-choice-link:hover {
    transform: translateY(-2px);
}

.messenger-choice-link img {
    width: 36px;
    height: 36px;
    display: block;
    border-radius: 50%;
}

@media (min-width: 993px) {
    .header-messengers {
        display: flex !important;
    }
    .mobile-header-messengers {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .header-messengers,
    .phone-desktop {
        display: none !important;
    }
    .mobile-header-messengers {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .site-header .header-container {
        grid-template-columns: 26px 42px 1fr !important;
    }
    .site-header .header-right {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 7px !important;
        min-width: 0 !important;
    }
    .site-header .phone-mobile.mobile-call-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 34px !important;
        padding: 0 13px !important;
        border-radius: 999px !important;
        background: linear-gradient(180deg, #ff4d4d 0%, #d91d1d 100%) !important;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 10.5px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
    }
    .site-header .phone-mobile.mobile-call-btn svg {
        display: none !important;
    }
    .site-header .mobile-header-messengers {
        display: inline-flex !important;
        gap: 5px !important;
        flex: 0 0 auto !important;
    }
    .site-header .mobile-header-messengers .header-messenger-link {
        width: 31px !important;
        height: 31px !important;
        flex-basis: 31px !important;
    }
    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 29px !important;
        height: 29px !important;
    }
    .mobile-menu-phone {
        font-size: 1rem !important;
        text-transform: uppercase;
    }
    .hero-offer-title {
        font-size: 2.2rem;
        line-height: 0.98;
        margin-bottom: 14px;
    }
    .hero-utp-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    .hero-utp-item {
        min-height: 58px;
        padding: 9px 8px;
        gap: 7px;
        font-size: 0.72rem;
        border-radius: 12px;
    }
    .hero-utp-check {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }
    .hero-utp-check svg {
        width: 12px;
        height: 12px;
    }
    .messenger-choice {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        padding: 11px 12px;
    }
}

@media (max-width: 380px) {
    .site-header .phone-mobile.mobile-call-btn {
        padding: 0 9px !important;
        font-size: 9.5px !important;
    }
    .site-header .mobile-header-messengers {
        gap: 4px !important;
    }
    .site-header .mobile-header-messengers .header-messenger-link {
        width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
    }
    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 26px !important;
        height: 26px !important;
    }
    .hero-utp-item {
        font-size: 0.68rem;
    }
}


/* ============================================================
   FINAL MOBILE CTA COLOR FIX v2026070412
   Зелёная кнопка "Вызвать мастера" в мобильной шапке и меню
   ============================================================ */
.site-header .phone-mobile.mobile-call-btn,
.site-header .mobile-call-btn {
    background: linear-gradient(180deg, #44e368 0%, #2aa843 100%) !important;
    color: #fff !important;
    border: 1px solid rgba(57, 200, 90, 0.45) !important;
    box-shadow: 0 8px 18px rgba(47, 183, 76, 0.22) !important;
    text-decoration: none !important;
}

.site-header .phone-mobile.mobile-call-btn span,
.site-header .mobile-call-btn span {
    color: #fff !important;
}

.site-header .phone-mobile.mobile-call-btn svg,
.site-header .mobile-call-btn svg {
    color: #fff !important;
}

.mobile-menu-phone {
    background: linear-gradient(180deg, #44e368 0%, #2aa843 100%) !important;
    color: #fff !important;
    border: 1px solid rgba(57, 200, 90, 0.45) !important;
    box-shadow: 0 8px 18px rgba(47, 183, 76, 0.22) !important;
    text-decoration: none !important;
}


/* ============================================================
   FINAL HEADER FIX FOR lock-master.ru v2026070418
   ============================================================ */
.site-header .mobile-header-messengers { display: none; }
.site-header .phone-mobile.mobile-call-btn { display: none; }
.site-header .header-messengers { display: flex; align-items: center; gap: 10px; }
.site-header .header-messenger-link { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.site-header .header-messenger-link img { width: 100%; height: 100%; display: block; object-fit: contain; }

@media (max-width: 768px) {
    :root { --header-height: 58px; }
    body { padding-top: 58px; }
    .site-header { height: 58px; }
    .site-header .header-container {
        height: 58px;
        display: grid;
        grid-template-columns: 28px 44px minmax(92px, 1fr) auto;
        align-items: center;
        gap: 8px;
        padding: 0 10px;
        max-width: none;
    }
    .site-header .burger-icon {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 24px;
        height: 38px;
        padding: 0;
        margin: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }
    .site-header .burger-icon span { width: 20px; height: 2px; background: #fff; border-radius: 2px; display: block; }
    .site-header .logo, .site-header .nav-desktop, .site-header .phone-desktop, .site-header .header-messengers { display: none !important; }
    .site-header .mobile-logo { display: block !important; color: var(--yellow); font-weight: 900; font-size: 1.65rem; line-height: 1; text-decoration: none; }
    .site-header .header-right { display: contents !important; }
    .site-header .mobile-header-messengers { display: flex !important; align-items: center; justify-content: flex-end; gap: 6px; min-width: 0; }
    .site-header .mobile-header-messengers .header-messenger-link { width: 30px; height: 30px; flex: 0 0 30px; }
    .site-header .mobile-header-messengers .header-messenger-link img { width: 30px; height: 30px; }
    .site-header .phone-mobile.mobile-call-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 86px;
        max-width: 96px;
        height: 36px;
        padding: 6px 8px;
        border-radius: 10px;
        background: linear-gradient(180deg, #44e368 0%, #2aa843 100%);
        color: #fff;
        text-decoration: none;
        font-size: 0.72rem;
        line-height: 0.95;
        font-weight: 900;
        text-align: center;
        text-transform: uppercase;
        box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
    }
    .site-header .phone-mobile.mobile-call-btn svg { display: none !important; }
    .site-header .phone-mobile.mobile-call-btn span { display: block; }
}

@media (max-width: 380px) {
    .site-header .header-container { grid-template-columns: 24px 38px minmax(82px, 1fr) auto; gap: 6px; padding: 0 8px; }
    .site-header .mobile-logo { font-size: 1.45rem; }
    .site-header .mobile-header-messengers { gap: 5px; }
    .site-header .mobile-header-messengers .header-messenger-link,
    .site-header .mobile-header-messengers .header-messenger-link img { width: 28px; height: 28px; flex-basis: 28px; }
    .site-header .phone-mobile.mobile-call-btn { min-width: 78px; max-width: 84px; height: 34px; font-size: 0.66rem; padding: 5px 6px; }
}

/* ============================================================
   LOCK-MASTER MSK MASTER TEMPLATE FINAL OVERRIDE v=2026070620
   Единая мобильная шапка: бургер | LM | Вызвать мастера | мессенджеры
   ============================================================ */

.header-messengers,
.mobile-header-messengers,
.mobile-menu-messengers,
.messenger-choice-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-messenger-link,
.messenger-choice-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    flex: 0 0 34px;
}

.header-messenger-link img,
.messenger-choice-link img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

.mobile-header-messengers {
    display: none;
}

.mobile-call-btn {
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #44e368 0%, #2aa843 100%);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(47, 183, 76, 0.22);
}

.mobile-call-btn svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.hero-cost-note {
    max-width: 690px;
    margin: -4px 0 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.03rem;
    line-height: 1.5;
    font-weight: 600;
}

.hero-offer-title {
    margin: 0 0 18px;
    font-size: clamp(2.3rem, 5vw, 5rem);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    max-width: 760px;
}

.hero-offer-title span {
    color: #fff;
}

.hero-utp-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
}

.hero-utp-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 204, 0, 0.22);
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.58);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-utp-check {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(180deg, #44e368 0%, #2aa843 100%);
    color: #fff;
}

.hero-utp-check svg {
    width: 18px;
    height: 18px;
}

.hero-utp-highlight {
    background: transparent;
    color: var(--yellow);
    font-weight: 900;
}

.hero-action-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.btn-call-master {
    max-width: 560px;
}

.messenger-choice {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 560px;
    padding: 12px 14px 12px 16px;
    border: 1px solid rgba(255, 204, 0, 0.22);
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.52);
    backdrop-filter: blur(8px);
}

.messenger-choice-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.messenger-choice-text span {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.messenger-choice-text small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.25;
}

@media (max-width: 980px) {
    :root {
        --header-height: 58px;
    }

    body {
        padding-top: 58px;
    }

    .site-header {
        height: 58px;
    }

    .site-header .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        height: 58px !important;
        padding: 0 8px !important;
        max-width: none !important;
        width: 100% !important;
    }

    .site-header .burger-icon {
        order: 1 !important;
        display: flex !important;
        flex: 0 0 24px !important;
        width: 24px !important;
        height: 38px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
    }

    .site-header .burger-icon span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        border-radius: 2px !important;
        background: #fff !important;
    }

    .site-header .logo,
    .site-header .phone-desktop,
    .site-header .header-messengers,
    .nav-desktop {
        display: none !important;
    }

    .site-header .mobile-logo {
        order: 2 !important;
        display: block !important;
        flex: 0 0 38px !important;
        width: 38px !important;
        min-width: 38px !important;
        text-align: center !important;
        color: var(--yellow) !important;
        font-size: 1.55rem !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }

    .site-header .header-right {
        display: flex !important;
        order: 3 !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 7px !important;
        white-space: nowrap !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        display: inline-flex !important;
        order: 1 !important;
        flex: 1 1 auto !important;
        max-width: 142px !important;
        min-width: 112px !important;
        height: 36px !important;
        min-height: 36px !important;
        padding: 0 10px !important;
        font-size: 10.5px !important;
        line-height: 1.05 !important;
        text-align: center !important;
    }

    .site-header .mobile-header-messengers {
        order: 2 !important;
        display: inline-flex !important;
        flex: 0 0 auto !important;
        gap: 5px !important;
        margin: 0 !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 31px !important;
        min-width: 31px !important;
        height: 31px !important;
        flex-basis: 31px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 29px !important;
        height: 29px !important;
    }

    .hero {
        min-height: auto;
        padding: 28px 12px 18px;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-offer-title {
        font-size: 2.35rem;
        line-height: 0.98;
        letter-spacing: -0.05em;
        margin-bottom: 14px;
    }

    .hero-cost-note {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .hero-utp-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-utp-item {
        min-height: 0;
        padding: 10px 11px;
        gap: 9px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .hero-utp-check {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        border-radius: 8px;
    }

    .hero-utp-check svg {
        width: 16px;
        height: 16px;
    }

    .messenger-choice {
        width: 100%;
        max-width: none;
        padding: 10px 12px 10px 14px;
        border-radius: 16px;
    }

    .messenger-choice-link,
    .messenger-choice-link img {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 380px) {
    .site-header .header-container {
        gap: 6px !important;
        padding: 0 6px !important;
    }

    .site-header .mobile-logo {
        flex-basis: 34px !important;
        width: 34px !important;
        min-width: 34px !important;
        font-size: 1.42rem !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        min-width: 104px !important;
        max-width: 128px !important;
        font-size: 9.5px !important;
        padding: 0 8px !important;
    }

    .site-header .mobile-call-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex-basis: 14px !important;
    }

    .site-header .mobile-header-messengers {
        gap: 4px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link {
        width: 28px !important;
        min-width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
    }

    .site-header .mobile-header-messengers .header-messenger-link img {
        width: 27px !important;
        height: 27px !important;
    }
}



/* ============================================================
   MOBILE HEADER CENTER BUTTON PATCH v=2026070621
   Центрируем кнопку «Вызвать мастера» в мобильной шапке
   ============================================================ */
@media (max-width: 980px) {
    .site-header .header-container {
        position: relative !important;
    }

    .site-header .header-right {
        justify-content: flex-end !important;
    }

    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 142px !important;
        min-width: 142px !important;
        max-width: 142px !important;
        height: 36px !important;
        z-index: 2 !important;
    }

    .site-header .mobile-header-messengers {
        position: relative !important;
        z-index: 3 !important;
    }

    .site-header .burger-icon,
    .site-header .mobile-logo {
        position: relative !important;
        z-index: 3 !important;
    }
}

@media (max-width: 380px) {
    .site-header .phone-mobile.mobile-call-btn,
    .site-header .mobile-call-btn {
        width: 124px !important;
        min-width: 124px !important;
        max-width: 124px !important;
        font-size: 9.5px !important;
    }
}


/* ============================================================
   HERO CTA COMPACT PATCH v=2026070622
   Уменьшаем большую кнопку «Узнать стоимость работ» на первом экране
   ============================================================ */
@media (min-width: 769px) {
    #hero .hero-action-stack {
        gap: 14px !important;
        align-items: flex-start !important;
    }

    #hero .hero-action-stack .btn,
    #hero .buttons .btn,
    #hero .btn-main,
    #hero .btn-call-master {
        width: auto !important;
        min-width: 0 !important;
        max-width: 620px !important;
    }

    #hero .btn-main.btn-call-master,
    #hero .btn-call-master {
        min-height: 66px !important;
        padding: 13px 18px !important;
        border-radius: 16px !important;
        gap: 14px !important;
    }

    #hero .btn-main .icon-main {
        width: 36px !important;
        height: 36px !important;
        padding: 9px !important;
        flex: 0 0 36px !important;
    }

    #hero .btn-main .btn-content span {
        font-size: 0.98rem !important;
        line-height: 1.08 !important;
    }

    #hero .btn-main .btn-content small {
        font-size: 0.78rem !important;
        line-height: 1.12 !important;
        margin-top: 4px !important;
    }

    #hero .btn-main .btn-arrow {
        width: 30px !important;
        height: 30px !important;
        font-size: 1.12rem !important;
        margin-left: 2px !important;
        flex: 0 0 30px !important;
    }

    #hero .messenger-choice--hero,
    #hero .messenger-choice {
        max-width: 620px !important;
    }
}

@media (max-width: 768px) {
    #hero .btn-main.btn-call-master,
    #hero .btn-call-master,
    #hero .buttons .btn,
    #hero .hero-action-stack .btn {
        min-height: 58px !important;
        padding: 11px 13px !important;
        border-radius: 15px !important;
        gap: 10px !important;
    }

    #hero .btn-main .icon-main {
        width: 32px !important;
        height: 32px !important;
        padding: 8px !important;
        flex: 0 0 32px !important;
    }

    #hero .btn-main .btn-content span {
        font-size: 0.82rem !important;
        line-height: 1.08 !important;
    }

    #hero .btn-main .btn-content small {
        font-size: 0.69rem !important;
        line-height: 1.12 !important;
    }

    #hero .btn-main .btn-arrow {
        width: 28px !important;
        height: 28px !important;
        font-size: 1rem !important;
        flex: 0 0 28px !important;
    }
}

/* =========================================================
   BLUE LOCK THEME — перенесено из референса direct-nastroika
   ========================================================= */
:root {
  --bg: #020914;
  --blue: #168dff;
  --yellow: #ffc719;
  --white: #f7fbff;
  --muted: #c3cfdf;
  --line: rgba(46, 120, 220, .20);
  --dark: #020914;
  --card: #071834;
  --green: #168dff;
}
html, body { background:#020914; color:var(--white); }
body.theme-blue-lock {
  background:
    radial-gradient(circle at 78% 8%, rgba(22,141,255,.13), transparent 27%),
    #020914;
}
.site-header {
  background:rgba(2,8,18,.91) !important;
  border-bottom:1px solid var(--line) !important;
  backdrop-filter:blur(14px);
}
.logo span, .mobile-logo, .section-title span, .service-price,
.master-info h4, .review-stars, .hero-utp-highlight { color:var(--yellow) !important; }
.nav-desktop a:hover, .nav-dropdown-toggle:hover, .breadcrumbs a:hover { color:var(--yellow) !important; }
.nav-dropdown-menu, .mobile-menu-panel {
  background:#041126 !important;
  border-color:rgba(44,126,255,.25) !important;
}
.mobile-nav > a, .mobile-submenu-toggle, .mobile-submenu-menu a {
  background:#071834 !important;
  border-color:rgba(44,126,255,.18) !important;
}
.hero {
  background-image:
    linear-gradient(90deg,rgba(2,9,20,.97) 0%,rgba(2,9,20,.88) 28%,rgba(2,9,20,.42) 58%,rgba(2,9,20,.12) 100%),
    radial-gradient(circle at 77% 12%,rgba(0,113,255,.25),transparent 35%),
    linear-gradient(rgba(48,112,205,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(48,112,205,.055) 1px,transparent 1px),
    url("/assets/images/fon.webp") !important;
  background-size:auto,auto,44px 44px,44px 44px,cover !important;
  background-position:center,center,center,center,right center !important;
}
.hero-eyebrow {
  color:#c8d2e0 !important;
  border-color:rgba(44,126,255,.28) !important;
  background:rgba(4,17,38,.55) !important;
}
.hero-utp-check { color:var(--blue) !important; }
.hero-utp-highlight {
  background:rgba(255,199,25,.11) !important;
  border-color:rgba(255,199,25,.26) !important;
}
.btn-main, .service-btn, .modal-submit, .btn-footer-max,
.mobile-menu-phone, .phone-mobile, .quiz-next, .quiz-submit {
  border-color:transparent !important;
  background:linear-gradient(180deg,#ffdc52 0%,#ffc719 56%,#ffb60c 100%) !important;
  color:#0f1825 !important;
  text-shadow:none !important;
  box-shadow:inset 0 -2px 0 rgba(142,92,0,.34),0 16px 34px rgba(255,199,25,.14) !important;
}
.btn-secondary, .btn-ghost-yellow {
  border:2px solid rgba(22,141,255,.85) !important;
  background:rgba(4,17,38,.66) !important;
  color:#fff !important;
}
.features .feature, .service-card, .step-card, .case-card, .master-card,
.benefit-card, .review-card, .seo-content, .faq-item, .contact-card,
.quiz-shell, .quiz-card, .modal-content, .trust-card, .price-card {
  background:linear-gradient(180deg,rgba(7,24,52,.90),rgba(3,14,31,.94)) !important;
  border-color:rgba(44,126,255,.24) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 22px 60px rgba(0,0,0,.20) !important;
}
.service-card::before, .benefit-card::before {
  box-shadow:inset 3px 0 0 rgba(22,141,255,.9) !important;
}
.service-icon, .benefit-icon { color:var(--blue) !important; }
.step-num {
  background:var(--yellow) !important;
  color:#0f1825 !important;
}
.services-section, .steps-section, .masters-section, .reviews-section,
.faq-section, .contacts-section, .trust-section, .seo-section, .cases-section {
  background:
    radial-gradient(circle at 50% 24%,rgba(15,98,255,.09),transparent 31%),
    linear-gradient(rgba(48,112,205,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(48,112,205,.05) 1px,transparent 1px),
    #020914 !important;
  background-size:auto,44px 44px,44px 44px,auto !important;
}
.section-subtitle, .service-card p, .step-card p, .review-text,
.master-info p, .benefit-card p, .seo-content p, .faq-answer,
.contact-card p { color:var(--muted) !important; }
.brand-item {
  background:rgba(7,24,52,.78) !important;
  border-color:rgba(44,126,255,.22) !important;
}
.case-images { background:var(--blue) !important; }
.case-label.after { color:var(--yellow) !important; border-color:var(--yellow) !important; }
.seo-content { border-left-color:var(--blue) !important; }
input, textarea, select {
  background:#041126 !important;
  border-color:rgba(44,126,255,.26) !important;
  color:#fff !important;
}
input:focus, textarea:focus, select:focus {
  border-color:var(--blue) !important;
  box-shadow:0 0 0 3px rgba(22,141,255,.12) !important;
}
.footer, .site-footer { background:#010712 !important; border-top-color:var(--line) !important; }
.header-messengers,.mobile-header-messengers,.mobile-menu-messengers,
.footer-messengers,.messengers,[class*="messenger"] { display:none !important; }
@media (max-width:768px){
  .hero { background-position:center,center,center,center,66% center !important; }
  .phone-mobile { border:0; border-radius:9px; padding:8px 10px; font-size:.78rem !important; }
}


/* ===== Дверной Сервис branding + hero ===== */
.site-header {
    background: rgba(2, 9, 20, 0.92);
    border-bottom: 1px solid rgba(22, 141, 255, 0.22);
    backdrop-filter: blur(14px);
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}
.logo-mark {
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
}
.logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}
.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #f7fbff;
}
.logo-name em {
    font-style: normal;
    color: var(--yellow);
}
.logo-tagline,
.logo small {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(247, 251, 255, 0.82);
}
.mobile-logo {
    text-decoration: none;
}
.mobile-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(22, 141, 255, 0.34);
    background: linear-gradient(180deg, rgba(7,24,52,.95), rgba(3,14,31,.98));
    color: var(--yellow);
    font-weight: 900;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 24px rgba(0,0,0,.25);
}
.hero {
    background-image: linear-gradient(90deg, rgba(2, 9, 20, 0.96) 0%, rgba(2, 9, 20, 0.92) 30%, rgba(2, 9, 20, 0.72) 48%, rgba(2, 9, 20, 0.26) 69%, rgba(2, 9, 20, 0.04) 100%),
                      radial-gradient(circle at 18% 28%, rgba(22, 141, 255, 0.14), transparent 24%),
                      url("/assets/images/fon.webp");
    background-size: auto, auto, cover;
    background-position: center, center, right center;
    border-bottom: 1px solid rgba(22, 141, 255, 0.14);
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(48, 112, 205, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(48, 112, 205, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .7;
}
.hero > * { position: relative; z-index: 1; }
.phone-desktop {
    color: #f7fbff;
}
.hero .btn-main,
.service-btn,
.mobile-menu-phone,
.btn-footer-max,
.btn-header-max {
    background: linear-gradient(180deg, #ffdc52 0%, #ffc719 56%, #ffb60c 100%);
    color: #0f1825;
    box-shadow: inset 0 -2px 0 rgba(142, 92, 0, .34), 0 16px 34px rgba(255, 199, 25, .13);
}
.hero .btn-main .btn-arrow {
    color: #0f1825;
}
.feature, .service-card, .benefit-card, .master-card, .review-card, .faq-item, .contacts-info-block, .seo-content, .case-card, .step-card {
    border-color: rgba(44, 126, 255, .22) !important;
    background: linear-gradient(180deg, rgba(7, 24, 52, .88), rgba(3, 14, 31, .94)) !important;
}
.service-icon, .benefit-icon { color: var(--yellow) !important; }
.footer-logo span { color: var(--yellow); }
@media (max-width: 768px) {
    .logo { display: none; }
    .mobile-logo { display: block; }
    .hero {
        background-position: 66% center;
        background-size: auto, auto, 180% auto;
    }
}


/* ===== Mobile header: full logo, phone number, burger right ===== */
@media (max-width: 768px) {
  .site-header,
  .site-header .header-container {
    height: 64px !important;
  }
  body { padding-top: 64px !important; }
  .site-header .header-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto 42px !important;
    grid-template-areas: "brand phone burger" !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 10px !important;
  }
  .site-header .logo {
    grid-area: brand !important;
    display: inline-flex !important;
    min-width: 0 !important;
    gap: 7px !important;
    overflow: hidden !important;
  }
  .site-header .logo-mark {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
  }
  .site-header .logo-wordmark { min-width: 0 !important; }
  .site-header .logo-name {
    display: block !important;
    font-size: 0.88rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
  .site-header .logo-tagline,
  .site-header .logo small {
    margin-top: 3px !important;
    font-size: 0.52rem !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }
  .site-header .mobile-logo { display: none !important; }
  .site-header .header-right {
    grid-area: phone !important;
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
  }
  .site-header .phone-desktop { display: none !important; }
  .site-header .phone-mobile.mobile-phone-number {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #f7fbff !important;
    text-decoration: none !important;
    font-size: 0.76rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
  }
  .site-header .burger-icon {
    grid-area: burger !important;
    justify-self: end !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    margin: 0 !important;
    border: 1px solid rgba(22,141,255,.28) !important;
    border-radius: 10px !important;
    background: rgba(7,24,52,.72) !important;
  }
  .site-header .burger-icon span {
    width: 20px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
  }
}
@media (max-width: 390px) {
  .site-header .header-container {
    grid-template-columns: minmax(0, 1fr) auto 38px !important;
    gap: 5px !important;
    padding: 0 7px !important;
  }
  .site-header .logo-mark { width: 30px !important; height: 30px !important; flex-basis: 30px !important; }
  .site-header .logo-name { font-size: 0.78rem !important; }
  .site-header .logo-tagline,
  .site-header .logo small { font-size: 0.47rem !important; }
  .site-header .phone-mobile.mobile-phone-number { font-size: 0.68rem !important; }
  .site-header .burger-icon { width: 36px !important; height: 36px !important; padding: 7px !important; }
}

/* ===== FINAL mobile header and hero corrections ===== */
@media (max-width: 768px) {
  :root { --header-height: 72px !important; }
  body { padding-top: 72px !important; }
  .site-header,
  .site-header .header-container { height: 72px !important; }

  .site-header .header-container {
    display: grid !important;
    grid-template-columns: minmax(150px, 1fr) auto 42px !important;
    grid-template-areas: "brand phone burger" !important;
    align-items: center !important;
    column-gap: 10px !important;
    padding: 0 12px !important;
  }

  /* Same complete logo as desktop, only proportionally reduced. */
  .site-header .logo {
    grid-area: brand !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    overflow: visible !important;
  }
  .site-header .logo-mark {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
  }
  .site-header .logo-wordmark {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
  }
  .site-header .logo-name {
    display: block !important;
    font-size: 0.98rem !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
  }
  .site-header .logo-tagline,
  .site-header .logo small {
    display: block !important;
    margin-top: 4px !important;
    font-size: 0.56rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
  .site-header .mobile-logo { display: none !important; }

  /* Plain clickable phone number, without button styling. */
  .site-header .header-right {
    grid-area: phone !important;
    display: block !important;
    min-width: 0 !important;
  }
  .site-header .phone-desktop { display: none !important; }
  .site-header .phone-mobile.mobile-phone-number {
    display: inline !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    color: #f7fbff !important;
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* Burger remains on the far right. */
  .site-header .burger-icon {
    grid-area: burger !important;
    justify-self: end !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    width: 42px !important;
    height: 42px !important;
    padding: 9px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .site-header .burger-icon span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
  }

  /* No generated background photo on phones. */
  #hero.hero,
  .hero {
    background-image:
      radial-gradient(circle at 82% 12%, rgba(22, 141, 255, 0.15), transparent 30%),
      linear-gradient(180deg, #031326 0%, #020914 100%) !important;
    background-size: auto, auto !important;
    background-position: center, center !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 420px) {
  .site-header .header-container {
    grid-template-columns: minmax(138px, 1fr) auto 38px !important;
    column-gap: 6px !important;
    padding: 0 8px !important;
  }
  .site-header .logo { gap: 6px !important; }
  .site-header .logo-mark {
    width: 35px !important;
    height: 35px !important;
    flex-basis: 35px !important;
  }
  .site-header .logo-name { font-size: 0.84rem !important; }
  .site-header .logo-tagline,
  .site-header .logo small { font-size: 0.48rem !important; }
  .site-header .phone-mobile.mobile-phone-number { font-size: 0.66rem !important; }
  .site-header .burger-icon { width: 38px !important; height: 38px !important; padding: 8px !important; }
}

/* ===== Mobile typography enlargement ===== */
@media (max-width: 768px) {
  :root { --header-height: 80px !important; }
  body { padding-top: 80px !important; }
  .site-header,
  .site-header .header-container { height: 80px !important; }

  .site-header .header-container {
    grid-template-columns: minmax(170px, 1fr) auto 44px !important;
    column-gap: 12px !important;
    padding: 0 12px !important;
  }

  .site-header .logo { gap: 9px !important; }
  .site-header .logo-mark {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }
  .site-header .logo-name {
    font-size: 1.12rem !important;
    line-height: 1.02 !important;
  }
  .site-header .logo-tagline,
  .site-header .logo small {
    margin-top: 5px !important;
    font-size: 0.66rem !important;
    line-height: 1.05 !important;
  }

  .site-header .phone-mobile.mobile-phone-number {
    font-size: 0.98rem !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -0.015em !important;
  }

  .site-header .burger-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .site-header .burger-icon span {
    width: 24px !important;
    height: 3px !important;
  }
}

@media (max-width: 460px) {
  .site-header .header-container {
    grid-template-columns: minmax(150px, 1fr) auto 40px !important;
    column-gap: 7px !important;
    padding: 0 8px !important;
  }
  .site-header .logo { gap: 7px !important; }
  .site-header .logo-mark {
    width: 39px !important;
    height: 39px !important;
    flex-basis: 39px !important;
  }
  .site-header .logo-name { font-size: 0.98rem !important; }
  .site-header .logo-tagline,
  .site-header .logo small { font-size: 0.58rem !important; }
  .site-header .phone-mobile.mobile-phone-number { font-size: 0.86rem !important; }
  .site-header .burger-icon { width: 40px !important; height: 40px !important; padding: 7px !important; }
}

@media (max-width: 380px) {
  .site-header .header-container {
    grid-template-columns: minmax(142px, 1fr) auto 38px !important;
    column-gap: 5px !important;
    padding: 0 6px !important;
  }
  .site-header .logo-mark {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }
  .site-header .logo-name { font-size: 0.9rem !important; }
  .site-header .logo-tagline,
  .site-header .logo small { font-size: 0.52rem !important; }
  .site-header .phone-mobile.mobile-phone-number { font-size: 0.8rem !important; }
}

/* ===== Larger mobile phone number only ===== */
@media (max-width: 768px) {
  .site-header .phone-mobile.mobile-phone-number {
    font-size: 1.18rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
  }
}

@media (max-width: 460px) {
  .site-header .phone-mobile.mobile-phone-number {
    font-size: 1.02rem !important;
  }
}

@media (max-width: 380px) {
  .site-header .phone-mobile.mobile-phone-number {
    font-size: 0.94rem !important;
  }
}


/* ===== Conversion-first independent landing structure ===== */
.ad-landing { background:#020914; overflow:hidden; }
.ad-landing .container { max-width:1180px; width:min(calc(100% - 40px),1180px); margin:0 auto; display:block; }
.conversion-hero { min-height:calc(100svh - var(--header-height)); padding:56px 0 30px; background:#020914; position:relative; }
.conversion-hero::after { content:""; position:absolute; inset:0; pointer-events:none; background-image:linear-gradient(rgba(48,112,205,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(48,112,205,.045) 1px,transparent 1px); background-size:44px 44px; }
.conversion-hero-grid { position:relative; z-index:2; display:grid!important; grid-template-columns:minmax(0,1.03fr) minmax(420px,.97fr); align-items:center; gap:42px; min-height:640px; }
.conversion-hero-copy { max-width:650px; }
.conversion-badge { display:inline-flex; align-items:center; gap:10px; padding:9px 13px; margin-bottom:20px; border:1px solid rgba(22,141,255,.3); border-radius:999px; background:rgba(7,24,52,.72); color:#dbe9fb; font-size:13px; font-weight:800; }
.conversion-badge span { width:9px; height:9px; border-radius:50%; background:#ffc719; box-shadow:0 0 0 6px rgba(255,199,25,.1); }
.conversion-hero h1 { margin:0 0 20px; font-size:clamp(48px,5.1vw,76px); line-height:.98; letter-spacing:-.06em; color:#fff; }
.conversion-hero h1 strong { display:inline; color:#ffc719; font-weight:900; }
.conversion-lead { max-width:590px; margin:0 0 27px; color:#cedaea; font-size:20px; line-height:1.48; }
.conversion-price-line { display:flex; gap:14px; margin-bottom:24px; }
.conversion-price-line>div { min-width:190px; padding:14px 17px; border-left:3px solid #168dff; background:linear-gradient(90deg,rgba(22,141,255,.12),transparent); }
.conversion-price-line small { display:block; color:#9fb0c6; font-size:12px; font-weight:700; }
.conversion-price-line b { display:block; margin-top:3px; color:#fff; font-size:22px; }
.conversion-main-cta { width:min(100%,470px); min-height:76px; display:grid; grid-template-columns:1fr auto; grid-template-rows:auto auto; align-items:center; padding:14px 18px 14px 22px; border:0; border-radius:15px; background:linear-gradient(180deg,#ffdc52 0%,#ffc719 56%,#ffb60c 100%); color:#0f1825; cursor:pointer; text-align:left; box-shadow:inset 0 -2px 0 rgba(142,92,0,.34),0 20px 44px rgba(255,199,25,.16); }
.conversion-main-cta span { font-size:20px; font-weight:900; }
.conversion-main-cta small { font-size:12px; font-weight:700; opacity:.72; }
.conversion-main-cta i { grid-column:2; grid-row:1/3; width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:rgba(15,24,37,.1); font-size:25px; font-style:normal; font-weight:900; }
.conversion-trust-row { display:flex; flex-wrap:wrap; gap:15px 23px; margin-top:20px; color:#cdd8e7; font-size:13px; font-weight:700; }
.conversion-trust-row span::first-letter { color:#ffc719; }
.conversion-hero-visual { position:relative; min-height:565px; border:1px solid rgba(44,126,255,.24); border-radius:28px; overflow:hidden; background:#06152d; box-shadow:0 36px 90px rgba(0,0,0,.36); }
.conversion-hero-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(2,9,20,.15),transparent 34%),linear-gradient(0deg,rgba(2,9,20,.78),transparent 42%); }
.conversion-hero-visual img { width:100%; height:100%; min-height:565px; object-fit:cover; object-position:67% center; }
.visual-glow { position:absolute; width:300px; height:300px; right:-70px; top:-90px; border-radius:50%; background:rgba(22,141,255,.22); filter:blur(60px); z-index:1; }
.visual-chip { position:absolute; z-index:3; display:flex; flex-direction:column; padding:13px 16px; border:1px solid rgba(255,255,255,.16); border-radius:14px; background:rgba(2,9,20,.82); backdrop-filter:blur(12px); box-shadow:0 14px 34px rgba(0,0,0,.28); }
.visual-chip b { color:#ffc719; font-size:22px; }.visual-chip span { color:#dce6f4; font-size:11px; font-weight:700; }
.visual-chip-time { left:20px; bottom:24px; }.visual-chip-stock { right:20px; top:22px; }.visual-chip-work { right:20px; bottom:24px; }
.quick-choice,.visual-proof,.compact-reviews { padding:76px 0; position:relative; }
.quick-choice { background:linear-gradient(180deg,#020914,#031126); }
.compact-heading { display:flex; align-items:end; justify-content:space-between; gap:28px; margin-bottom:30px; }
.section-kicker { display:block; margin-bottom:8px; color:#168dff; font-size:12px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.compact-heading h2,.process-head h2,.final-conversion h2 { margin:0; color:#fff; font-size:clamp(32px,3.6vw,48px); line-height:1.05; letter-spacing:-.045em; }
.compact-heading p { max-width:390px; margin:0; color:#9fb0c6; line-height:1.5; }
.compact-phone { color:#ffc719; font-size:22px; font-weight:900; text-decoration:none; white-space:nowrap; }
.quick-service-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.quick-service-card { min-height:360px; display:flex; flex-direction:column; border:1px solid rgba(44,126,255,.22); border-radius:22px; overflow:hidden; background:linear-gradient(180deg,rgba(7,24,52,.94),rgba(3,14,31,.98)); box-shadow:0 22px 55px rgba(0,0,0,.18); }
.quick-service-main { grid-column:span 1; border-color:rgba(255,199,25,.36); }
.quick-service-art { height:185px; display:grid; place-items:center; color:#f7fbff; background:radial-gradient(circle at 50% 40%,rgba(22,141,255,.2),transparent 48%); }
.quick-service-art svg { width:150px; height:130px; filter:drop-shadow(0 12px 26px rgba(0,0,0,.32)); }
.quick-service-info { flex:1; display:flex; flex-direction:column; padding:0 20px 21px; }
.quick-service-info>span { width:max-content; margin-bottom:9px; padding:6px 9px; border-radius:999px; background:rgba(255,199,25,.12); color:#ffc719; font-size:10px; font-weight:900; text-transform:uppercase; }
.quick-service-info h3 { margin:0 0 12px; color:#fff; font-size:19px; line-height:1.18; }
.quick-service-info b { margin-bottom:18px; color:#ffc719; font-size:24px; }
.quick-service-info button { margin-top:auto; min-height:44px; border:1px solid rgba(22,141,255,.65); border-radius:10px; background:rgba(22,141,255,.08); color:#fff; font-weight:900; cursor:pointer; }
.quick-service-main button { border:0; background:#ffc719; color:#0f1825; }
.quick-strip { display:grid; grid-template-columns:repeat(3,1fr) auto; align-items:center; gap:10px; margin-top:18px; padding:16px; border:1px solid rgba(44,126,255,.2); border-radius:17px; background:rgba(5,18,40,.76); }
.quick-strip>div { padding:4px 14px; border-right:1px solid rgba(255,255,255,.1); }.quick-strip b,.quick-strip span { display:block; }.quick-strip b { color:#fff; font-size:14px; }.quick-strip span { margin-top:3px; color:#91a4bf; font-size:12px; }
.quick-strip button { min-height:48px; padding:0 21px; border:0; border-radius:10px; background:#ffc719; color:#0f1825; font-weight:900; cursor:pointer; }
.visual-proof { background:#020914; }
.visual-proof-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.proof-card { overflow:hidden; border:1px solid rgba(44,126,255,.22); border-radius:22px; background:#071834; }
.proof-images { display:grid; grid-template-columns:1fr 1fr; gap:2px; }.proof-images figure { position:relative; margin:0; height:310px; overflow:hidden; }.proof-images img { width:100%; height:100%; object-fit:cover; }.proof-images figcaption { position:absolute; left:12px; top:12px; padding:7px 10px; border-radius:999px; background:rgba(2,9,20,.84); color:#fff; font-size:11px; font-weight:900; }
.proof-images figure:last-child figcaption { background:#ffc719; color:#0f1825; }
.proof-caption { display:flex; justify-content:space-between; gap:18px; padding:18px 20px; }.proof-caption b { color:#fff; }.proof-caption span { color:#91a4bf; font-size:13px; text-align:right; }
.process-band { padding:60px 0; background:linear-gradient(90deg,rgba(22,141,255,.13),rgba(255,199,25,.05)); border-block:1px solid rgba(44,126,255,.18); }
.process-head { margin-bottom:28px; text-align:center; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.process-steps>div { position:relative; padding:22px; border:1px solid rgba(44,126,255,.2); border-radius:18px; background:rgba(3,14,31,.74); text-align:center; }.process-steps i { display:grid; place-items:center; width:42px; height:42px; margin:0 auto 13px; border-radius:50%; background:#168dff; color:#fff; font-style:normal; font-weight:900; }.process-steps b,.process-steps span { display:block; }.process-steps b { color:#fff; font-size:17px; }.process-steps span { margin-top:5px; color:#91a4bf; font-size:12px; }
.compact-reviews { background:#020914; }.rating-large { color:#fff; font-size:31px; font-weight:900; }.rating-large span { color:#ffc719; font-size:17px; }
.compact-review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }.compact-review-grid blockquote { margin:0; padding:22px; border:1px solid rgba(44,126,255,.2); border-radius:18px; background:linear-gradient(180deg,rgba(7,24,52,.9),rgba(3,14,31,.94)); }.compact-review-grid blockquote>div { color:#ffc719; letter-spacing:.12em; }.compact-review-grid p { min-height:52px; margin:12px 0 18px; color:#e8eef7; line-height:1.5; }.compact-review-grid footer { color:#91a4bf; font-size:12px; }
.final-conversion { padding:72px 0; background:radial-gradient(circle at 80% 50%,rgba(22,141,255,.19),transparent 35%),linear-gradient(180deg,#04152e,#020914); border-top:1px solid rgba(44,126,255,.18); }
.final-conversion-inner { display:grid!important; grid-template-columns:1fr auto; align-items:center; gap:40px; }.final-conversion p { max-width:650px; margin:13px 0 0; color:#aebdd0; font-size:17px; line-height:1.5; }.final-actions { display:flex; flex-direction:column; gap:12px; min-width:300px; }.final-actions button { min-height:58px; border:0; border-radius:12px; background:#ffc719; color:#0f1825; font-size:16px; font-weight:900; cursor:pointer; }.final-actions a { color:#fff; font-size:22px; font-weight:900; text-align:center; text-decoration:none; }

@media(max-width:980px){
 .conversion-hero-grid{grid-template-columns:1fr;min-height:auto}.conversion-hero-copy{max-width:760px}.conversion-hero-visual{min-height:460px}.conversion-hero-visual img{min-height:460px}.quick-service-grid{grid-template-columns:repeat(2,1fr)}.quick-strip{grid-template-columns:repeat(3,1fr)}.quick-strip button{grid-column:1/-1}.process-steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
 .conversion-hero{min-height:auto;padding:38px 0 28px!important;background:radial-gradient(circle at 80% 0,rgba(22,141,255,.12),transparent 35%),#020914!important}.conversion-hero-grid{display:block!important}.conversion-hero-visual{display:none}.conversion-hero h1{font-size:42px}.conversion-lead{font-size:17px}.conversion-price-line{display:grid;grid-template-columns:1fr 1fr;gap:7px}.conversion-price-line>div{min-width:0;padding:11px 10px}.conversion-price-line b{font-size:18px}.conversion-main-cta{width:100%}.conversion-trust-row{display:grid;grid-template-columns:1fr 1fr;gap:9px;font-size:12px}.quick-choice,.visual-proof,.compact-reviews{padding:50px 0}.compact-heading{align-items:flex-start;flex-direction:column;margin-bottom:22px}.compact-phone{font-size:20px}.quick-service-grid{grid-template-columns:1fr 1fr;gap:10px}.quick-service-card{min-height:295px;border-radius:16px}.quick-service-art{height:145px}.quick-service-art svg{width:116px;height:105px}.quick-service-info{padding:0 13px 14px}.quick-service-info h3{font-size:15px}.quick-service-info b{font-size:19px;margin-bottom:12px}.quick-service-info button{min-height:40px}.quick-strip{grid-template-columns:1fr;padding:12px}.quick-strip>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.08);padding:8px}.visual-proof-grid{grid-template-columns:1fr}.proof-images figure{height:210px}.proof-caption{flex-direction:column}.proof-caption span{text-align:left}.process-band{padding:45px 0}.process-steps{grid-template-columns:1fr 1fr;gap:8px}.process-steps>div{padding:16px 8px}.compact-review-grid{grid-template-columns:1fr}.compact-review-grid p{min-height:0}.final-conversion{padding:52px 0}.final-conversion-inner{grid-template-columns:1fr!important}.final-actions{min-width:0}.final-actions a{font-size:24px}
}
@media(max-width:390px){.conversion-hero h1{font-size:37px}.conversion-price-line{grid-template-columns:1fr}.quick-service-grid{grid-template-columns:1fr}.quick-service-card{min-height:310px}.quick-service-art{height:160px}.process-steps{grid-template-columns:1fr 1fr}}

/* ===== Clear result block ===== */
.result-benefits {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(22,141,255,.08), transparent 34%),
    #020914;
}
.result-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.result-benefit-card {
  min-height: 190px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(44,126,255,.24);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7,24,52,.9), rgba(3,14,31,.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 20px 50px rgba(0,0,0,.18);
}
.result-benefit-icon {
  width: 94px;
  height: 94px;
  flex: 0 0 94px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(44,126,255,.24);
  background: rgba(4,17,38,.72);
  color: #f7fbff;
}
.result-benefit-icon svg { width: 72px; height: 72px; }
.result-benefit-card b {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}
.result-benefit-card span {
  display: block;
  color: #aebdd1;
  font-size: 14px;
  line-height: 1.45;
}
.result-benefits-cta {
  margin-top: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,199,25,.24);
  border-radius: 16px;
  background: rgba(255,199,25,.06);
}
.result-benefits-cta span {
  color: #e7eef8;
  font-size: 15px;
  font-weight: 700;
}
.result-benefits-cta button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffdc52 0%, #ffc719 56%, #ffb60c 100%);
  color: #0f1825;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 900px) {
  .result-benefits-grid { grid-template-columns: 1fr; }
  .result-benefit-card { min-height: 0; }
}
@media (max-width: 600px) {
  .result-benefits { padding: 48px 0; }
  .result-benefit-card { padding: 18px; gap: 16px; border-radius: 16px; }
  .result-benefit-icon { width: 76px; height: 76px; flex-basis: 76px; }
  .result-benefit-icon svg { width: 58px; height: 58px; }
  .result-benefit-card b { font-size: 18px; }
  .result-benefits-cta { align-items: stretch; flex-direction: column; }
  .result-benefits-cta button { width: 100%; }
}


/* ===== One visit conversion block ===== */
.process-band{display:none!important}
.one-visit-band{padding:56px 0;background:linear-gradient(90deg,rgba(22,141,255,.12),rgba(3,14,31,.94));border-block:1px solid rgba(44,126,255,.18)}
.one-visit-inner{display:grid!important;grid-template-columns:minmax(280px,1.05fr) minmax(480px,1.5fr) auto;align-items:center;gap:34px}
.one-visit-copy h2{margin:6px 0 10px;color:#fff;font-size:clamp(34px,3.3vw,50px);line-height:1;letter-spacing:-.045em}
.one-visit-copy p{max-width:430px;margin:0;color:#9fb0c8;font-size:15px;line-height:1.55}
.one-visit-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.one-visit-benefits>div{display:flex;align-items:center;gap:12px;min-width:0;padding:18px;border:1px solid rgba(44,126,255,.22);border-radius:16px;background:rgba(3,14,31,.78)}
.one-visit-benefits svg{width:42px;height:42px;flex:0 0 42px;color:#168dff}
.one-visit-benefits span,.one-visit-benefits b,.one-visit-benefits small{display:block}
.one-visit-benefits b{color:#fff;font-size:16px;line-height:1.15}
.one-visit-benefits small{margin-top:4px;color:#8fa2bd;font-size:11px;line-height:1.35}
.one-visit-actions{display:flex;flex-direction:column;align-items:stretch;gap:10px;min-width:205px}
.one-visit-actions a{color:#fff;font-size:21px;font-weight:900;text-align:center;text-decoration:none;white-space:nowrap}
.one-visit-actions button{min-height:48px;padding:0 22px;border:0;border-radius:10px;background:linear-gradient(180deg,#ffdc52 0%,#ffc719 56%,#ffb60c 100%);color:#0f1825;font-weight:900;cursor:pointer;box-shadow:inset 0 -2px 0 rgba(142,92,0,.34),0 16px 34px rgba(255,199,25,.13)}
@media(max-width:1080px){.one-visit-inner{grid-template-columns:1fr}.one-visit-copy{text-align:center}.one-visit-copy p{margin-inline:auto}.one-visit-actions{max-width:340px;width:100%;margin:0 auto}.one-visit-benefits{max-width:900px;width:100%;margin:0 auto}}
@media(max-width:700px){.one-visit-band{padding:44px 0}.one-visit-inner{gap:22px}.one-visit-copy{text-align:left}.one-visit-copy h2{font-size:36px}.one-visit-copy p{margin:0;font-size:14px}.one-visit-benefits{grid-template-columns:1fr}.one-visit-benefits>div{padding:15px 16px}.one-visit-benefits b{font-size:17px}.one-visit-benefits small{font-size:12px}.one-visit-actions a{font-size:24px}.one-visit-actions button{min-height:52px;font-size:16px}}


/* Footer cleanup: no extra CTA button */
.footer-contacts .footer-contact-item:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .footer-contacts { gap: 14px; }
  .footer-contact-item { margin-bottom: 0; }
}


/* ===== Mobile call-first CTA update ===== */
.conversion-hero-actions{display:flex;gap:12px;align-items:stretch;flex-wrap:wrap;width:min(100%,470px)}
.conversion-call-cta{display:none;text-decoration:none}
.quick-service-info .quick-service-call{margin-top:auto;min-height:44px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(22,141,255,.65);border-radius:10px;background:rgba(22,141,255,.08);color:#fff;font-weight:900;text-decoration:none;text-align:center;padding:0 12px}
.quick-service-info .quick-service-call:hover{background:rgba(22,141,255,.16);border-color:#168dff}
@media (max-width:768px){
  .conversion-hero-actions{width:100%;display:grid;grid-template-columns:1fr;gap:10px}
  .conversion-call-cta{min-height:64px;display:grid;grid-template-columns:1fr auto;grid-template-rows:auto auto;align-items:center;padding:12px 16px 12px 18px;border-radius:14px;background:linear-gradient(180deg,#ffdc52 0%,#ffc719 56%,#ffb60c 100%);color:#0f1825;box-shadow:inset 0 -2px 0 rgba(142,92,0,.34),0 18px 36px rgba(255,199,25,.14);text-align:left}
  .conversion-call-cta span{font-size:20px;font-weight:900;line-height:1.1}
  .conversion-call-cta small{font-size:12px;font-weight:700;opacity:.72;margin-top:3px}
  .conversion-call-cta i{grid-column:2;grid-row:1/3;width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:rgba(15,24,37,.1);font-size:21px;font-style:normal}
  .conversion-main-cta{min-height:58px;background:rgba(22,141,255,.10);border:1px solid rgba(22,141,255,.75);color:#f7fbff;box-shadow:none;padding:11px 15px 11px 18px}
  .conversion-main-cta span{font-size:17px}
  .conversion-main-cta small{font-size:11px;opacity:.76}
  .conversion-main-cta i{width:38px;height:38px;background:rgba(22,141,255,.14);font-size:21px}
  .quick-service-info .quick-service-call{min-height:42px;background:linear-gradient(180deg,#ffdc52 0%,#ffc719 56%,#ffb60c 100%);border:0;color:#0f1825;box-shadow:inset 0 -2px 0 rgba(142,92,0,.28);font-size:13px}
}


/* ===== Single background hero: remove duplicated inner image ===== */
.conversion-hero {
  background:
    linear-gradient(90deg, rgba(2,9,20,.97) 0%, rgba(2,9,20,.92) 34%, rgba(2,9,20,.60) 56%, rgba(2,9,20,.18) 78%, rgba(2,9,20,.05) 100%),
    radial-gradient(circle at 16% 20%, rgba(22,141,255,.16), transparent 28%),
    url('/assets/images/fon.webp') right center / cover no-repeat !important;
}
.conversion-hero-grid {
  grid-template-columns:minmax(0,760px) !important;
  justify-content:start;
  min-height:640px;
}
.conversion-hero-copy { max-width:690px; }
.conversion-hero-facts {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:26px;
  max-width:650px;
}
.conversion-hero-facts .visual-chip {
  position:static;
  min-height:86px;
  justify-content:center;
  padding:14px 16px;
}
.conversion-hero-visual, .visual-glow { display:none !important; }
@media (max-width:768px) {
  .conversion-hero {
    background:radial-gradient(circle at 80% 0,rgba(22,141,255,.12),transparent 35%),#020914 !important;
  }
  .conversion-hero-facts { grid-template-columns:repeat(3,1fr); gap:7px; margin-top:18px; }
  .conversion-hero-facts .visual-chip { min-height:72px; padding:10px 8px; border-radius:12px; text-align:center; }
  .conversion-hero-facts .visual-chip b { font-size:18px; }
  .conversion-hero-facts .visual-chip span { font-size:10px; line-height:1.25; }
}
@media (max-width:430px) {
  .conversion-hero-facts { grid-template-columns:1fr; }
  .conversion-hero-facts .visual-chip { min-height:58px; }
}

/* ===== Visual polish: restrained accents and lighter rhythm ===== */
:root{
  --polish-navy:#020914;
  --polish-ink:#101b2d;
  --polish-blue:#168dff;
  --polish-yellow:#ffc719;
  --polish-paper:#f4f7fb;
  --polish-line:#dce5f0;
  --polish-muted:#62738a;
}

/* Blue remains the supporting accent; yellow is reserved for the main action. */
.section-kicker{color:#168dff}
.quick-service-main{border-color:rgba(44,126,255,.22)}
.quick-service-info>span{
  background:rgba(22,141,255,.10);
  color:#78bbff;
}
.quick-service-card{
  border-color:rgba(109,153,207,.16);
  border-radius:18px;
  box-shadow:0 16px 38px rgba(0,0,0,.13);
}
.quick-service-art{background:radial-gradient(circle at 50% 40%,rgba(22,141,255,.13),transparent 50%)}
.quick-service-info .quick-service-call{
  border-color:rgba(22,141,255,.48);
  background:transparent;
}
.quick-service-info .quick-service-call:hover{
  background:rgba(22,141,255,.10);
  border-color:#168dff;
}
.quick-strip{
  border-color:rgba(109,153,207,.15);
  background:rgba(5,18,40,.58);
  box-shadow:none;
}
.quick-strip button{
  border:1px solid rgba(22,141,255,.58);
  background:rgba(22,141,255,.10);
  color:#fff;
}
.quick-strip button:hover{background:rgba(22,141,255,.18)}

/* Light result section creates breathing room between dark conversion bands. */
.result-benefits{
  background:linear-gradient(180deg,#f7f9fc 0%,#eef3f8 100%);
  border-block:1px solid #e1e8f1;
}
.result-benefits .compact-heading h2{color:#101b2d}
.result-benefits .compact-heading p{color:#687990}
.result-benefit-card{
  min-height:176px;
  border:1px solid #dce5f0;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(19,43,73,.07);
}
.result-benefit-icon{
  border-color:#dce7f2;
  background:#f3f7fc;
  color:#16253a;
}
.result-benefit-card b{color:#101b2d}
.result-benefit-card span{color:#65768c}
.result-benefits-cta{
  border-color:#d9e4ef;
  background:#fff;
  box-shadow:0 10px 26px rgba(19,43,73,.05);
}
.result-benefits-cta span{color:#31435b}

/* Simplified trust cards: one border, no heavy layered treatment. */
.one-visit-band{
  background:linear-gradient(90deg,rgba(22,141,255,.08),rgba(3,14,31,.97));
  border-block-color:rgba(109,153,207,.13);
}
.one-visit-benefits>div{
  border-color:rgba(109,153,207,.15);
  background:rgba(3,14,31,.58);
  border-radius:14px;
}
.one-visit-actions button{
  border:1px solid rgba(22,141,255,.58);
  background:rgba(22,141,255,.10);
  color:#fff;
  box-shadow:none;
}
.one-visit-actions button:hover{background:rgba(22,141,255,.18)}

/* Reviews switch to a light trust block; stars remain the only yellow detail. */
.compact-reviews{
  background:#fff;
  border-bottom:1px solid #e1e8f1;
}
.compact-reviews .compact-heading h2{color:#101b2d}
.compact-reviews .rating-large{color:#101b2d}
.compact-review-grid blockquote{
  border:1px solid #dce5f0;
  border-radius:16px;
  background:#f7f9fc;
  box-shadow:none;
}
.compact-review-grid p{color:#26384f}
.compact-review-grid footer{color:#6c7d92}

/* Cleaner final conversion block. */
.final-conversion{
  background:radial-gradient(circle at 82% 45%,rgba(22,141,255,.13),transparent 31%),#041226;
  border-top-color:rgba(109,153,207,.13);
}
.final-actions button{
  background:linear-gradient(180deg,#ffdc52 0%,#ffc719 58%,#ffb60c 100%);
  box-shadow:inset 0 -2px 0 rgba(142,92,0,.28),0 14px 30px rgba(255,199,25,.11);
}

/* Hero facts are quieter so the headline and CTA stay dominant. */
.conversion-hero-facts .visual-chip{
  border-color:rgba(255,255,255,.11);
  background:rgba(2,9,20,.68);
  box-shadow:none;
}
.conversion-hero-facts .visual-chip b{color:#fff}
.conversion-hero-facts .visual-chip span{color:#aebdd0}

@media(max-width:768px){
  .quick-service-card{border-radius:15px;box-shadow:none}
  .result-benefits{padding:50px 0}
  .result-benefit-card{box-shadow:none}
  .result-benefits-cta{box-shadow:none}
  /* On mobile the direct call remains the primary yellow action. */
  .quick-service-info .quick-service-call{
    background:linear-gradient(180deg,#ffdc52 0%,#ffc719 56%,#ffb60c 100%);
    color:#0f1825;
    border:0;
  }
}

/* ===== Точечные правки текущей версии ===== */

/* Выравнивание карточек услуг */
.quick-service-grid {
    align-items: stretch;
}

.quick-service-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.quick-service-art {
    height: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px 4px;
}

.quick-service-art svg {
    width: 132px;
    height: 110px;
    max-width: 100%;
    display: block;
}

.quick-service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
}

.quick-service-info h3 {
    min-height: 52px;
    margin: 0 0 12px;
    display: flex;
    align-items: flex-start;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.2;
}

.quick-service-info b {
    display: block;
    margin: 0 0 18px;
    white-space: nowrap;
    line-height: 1;
}

.quick-service-info .quick-service-call {
    margin-top: auto;
    min-height: 46px;
}

@media (max-width: 1100px) {
    .quick-service-card {
        min-height: 345px;
    }

    .quick-service-art {
        height: 138px;
        min-height: 138px;
    }

    .quick-service-art svg {
        width: 122px;
        height: 102px;
    }
}

@media (max-width: 768px) {
    .quick-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-service-card {
        min-height: 320px;
    }

    .quick-service-art {
        height: 122px;
        min-height: 122px;
        padding-top: 10px;
    }

    .quick-service-art svg {
        width: 108px;
        height: 92px;
    }

    .quick-service-info h3 {
        min-height: 46px;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .quick-service-info b {
        margin-bottom: 14px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .quick-service-grid {
        grid-template-columns: 1fr;
    }

    .quick-service-card {
        min-height: 300px;
    }

    .quick-service-info h3 {
        min-height: auto;
    }
}

.quick-service-info .service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 18px;
    white-space: nowrap;
    line-height: 1;
}

.service-price-prefix {
    font-size: 0.58em;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: lowercase;
}

.service-price-amount {
    font-size: 1em;
    font-weight: 900;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .quick-service-info .service-price {
        gap: 6px;
        margin-bottom: 14px;
    }

    .service-price-prefix {
        font-size: 0.62em;
    }
}

.conversion-hero-copy h1 {
    max-width: 11ch;
    margin: 0 0 22px;
    font-size: clamp(44px, 6.2vw, 88px);
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.conversion-hero-copy h1 strong {
    display: block;
    margin-top: 0.14em;
    font-size: 0.8em;
    line-height: 0.98;
    color: var(--yellow, #f3c742);
}

.conversion-lead {
    max-width: 560px;
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .conversion-hero-copy h1 {
        font-size: clamp(42px, 6vw, 72px);
        max-width: 12ch;
    }
}

@media (max-width: 768px) {
    .conversion-hero-copy h1 {
        max-width: none;
        font-size: clamp(34px, 11vw, 54px);
        line-height: 0.98;
        margin-bottom: 16px;
    }

    .conversion-hero-copy h1 strong {
        margin-top: 0.16em;
        font-size: 0.86em;
    }

    .conversion-lead {
        font-size: 16px;
        line-height: 1.38;
    }
}

.conversion-hero-copy h1 {
    max-width: 12.5ch;
    margin: 0 0 18px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(34px, 4.8vw, 72px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.conversion-hero-copy h1 .hero-title-line,
.conversion-hero-copy h1 strong {
    display: block;
}

.conversion-hero-copy h1 strong {
    margin-top: 0.12em;
    font-size: 0.84em;
    font-weight: 800;
    line-height: 1.02;
    color: var(--yellow, #f3c742);
}

.conversion-lead {
    max-width: 520px;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.42;
}

@media (max-width: 1200px) {
    .conversion-hero-copy h1 {
        font-size: clamp(32px, 4.5vw, 62px);
        max-width: 13ch;
    }
}

@media (max-width: 768px) {
    .conversion-hero-copy h1 {
        max-width: none;
        font-size: clamp(28px, 8.2vw, 46px);
        line-height: 1.0;
        margin-bottom: 14px;
        letter-spacing: -0.045em;
    }

    .conversion-hero-copy h1 strong {
        margin-top: 0.14em;
        font-size: 0.88em;
    }

    .conversion-lead {
        font-size: 15px;
        line-height: 1.38;
    }
}

.conversion-hero-copy h1 {
    margin-bottom: 10px;
}

.hero-title-accent {
    max-width: 13ch;
    margin: 0 0 18px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(29px, 4.05vw, 60px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--yellow, #f3c742);
    text-wrap: balance;
}

.hero-title-accent span {
    display: block;
}

.hero-title-accent span + span {
    margin-top: 0.12em;
}

@media (max-width: 1200px) {
    .hero-title-accent {
        font-size: clamp(28px, 3.8vw, 52px);
    }
}

@media (max-width: 768px) {
    .conversion-hero-copy h1 {
        margin-bottom: 8px;
    }

    .hero-title-accent {
        max-width: none;
        margin-bottom: 14px;
        font-size: clamp(25px, 7.2vw, 40px);
        line-height: 1.04;
        letter-spacing: -0.045em;
    }
}

.hero-title-accent {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(26px, 3.35vw, 52px);
    line-height: 1.05;
}

@media (max-width: 900px) {
    .hero-title-accent {
        white-space: normal;
        max-width: 18ch;
    }
}

@media (max-width: 768px) {
    .hero-title-accent {
        font-size: clamp(24px, 7vw, 38px);
        max-width: 17ch;
    }
}

.hero-title-accent {
    white-space: normal;
    max-width: none;
}

.hero-title-accent span {
    display: block;
    white-space: nowrap;
}

.hero-title-accent span + span {
    margin-top: 0.12em;
}

.conversion-price-line > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.conversion-price-line small {
    display: block;
    margin: 0 0 10px;
    line-height: 1.2;
}

.conversion-price-line .service-price {
    margin: 0;
}

@media (max-width: 768px) {
    .conversion-price-line small {
        margin-bottom: 8px;
    }
}

.modal-dialog {
    width: min(94vw, 620px);
}

.modal-form {
    display: grid;
    gap: 16px;
}

.modal-field {
    display: grid;
    gap: 7px;
}

.modal-field > span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-field input[type="text"],
.modal-field input[type="tel"],
.modal-field textarea,
.modal-field input[type="file"] {
    width: 100%;
    min-height: 56px;
    padding: 15px 17px;
    border-radius: 12px;
    font: inherit;
    font-size: 17px;
    line-height: 1.35;
    box-sizing: border-box;
}

.modal-field textarea {
    min-height: 118px;
    resize: vertical;
}

.modal-file-field small {
    font-size: 12px;
    font-weight: 500;
    opacity: .7;
}

.modal-submit {
    min-height: 58px;
    padding: 16px 20px;
    font-size: 16px;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.modal-field input:focus,
.modal-field textarea:focus {
    outline: 3px solid rgba(37, 150, 255, .22);
    outline-offset: 1px;
}

.modal-field .field-invalid,
.modal-field input:invalid:focus,
.modal-field textarea:invalid:focus {
    border-color: #d93025;
}

@media (max-width: 768px) {
    .modal-dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        padding: 24px 18px;
    }

    .modal-form {
        gap: 14px;
    }

    .modal-field input[type="text"],
    .modal-field input[type="tel"],
    .modal-field textarea,
    .modal-field input[type="file"] {
        min-height: 58px;
        font-size: 18px;
        padding: 16px;
    }

    .modal-field textarea {
        min-height: 128px;
    }
}


/* ===== Правки оффера и ценовых карточек ===== */
.quick-service-card-title,
.service-card-title,
.task-card-title,
.price-card-title {
    margin-bottom: 18px !important;
}

.quick-service-card-price,
.service-card-price,
.task-card-price,
.price-card-price {
    margin-top: 0 !important;
}

.quick-service-card .price-prefix,
.service-card .price-prefix,
.task-card .price-prefix,
.price-card .price-prefix {
    margin-right: 6px;
}

.quick-strip-cta p,
.conversion-main-cta-subtitle,
.cta-note,
.cta-subtitle {
    max-width: 560px;
}


/* ===== Исправление приставки "от" у цены ===== */
.conversion-price-line .service-price,
.quick-service-info .service-price,
.quick-service-card .service-price,
.service-price {
    display: inline-flex !important;
    align-items: baseline;
    column-gap: 8px;
    row-gap: 0;
    white-space: nowrap;
}

.service-price-prefix {
    display: inline-block !important;
    flex: 0 0 auto;
    margin: 0 !important;
    line-height: 1;
}

.service-price-amount {
    display: inline-block !important;
    flex: 0 0 auto;
    line-height: 1;
}

@media (max-width: 768px) {
    .conversion-price-line .service-price,
    .quick-service-info .service-price,
    .quick-service-card .service-price,
    .service-price {
        column-gap: 6px;
    }
}


/* ===== Первый экран: больше расстояние между словами ===== */
.conversion-hero-copy h1 {
    letter-spacing: -0.03em !important;
    word-spacing: 0.08em;
}

.hero-title-accent {
    letter-spacing: -0.02em !important;
}

.hero-title-accent span {
    word-spacing: 0.08em;
}

@media (max-width: 768px) {
    .conversion-hero-copy h1 {
        letter-spacing: -0.025em !important;
        word-spacing: 0.06em;
    }

    .hero-title-accent {
        letter-spacing: -0.015em !important;
    }

    .hero-title-accent span {
        word-spacing: 0.06em;
    }
}
