        * { box-sizing: border-box; }
        [hidden] { display: none !important; }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
            overflow-x: clip;
        }
        body {
            margin: 0;
            font-family: Manrope, sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.5;
            overflow-x: clip;
            min-height: 100vh;
            min-height: 100dvh;
            -webkit-tap-highlight-color: rgba(var(--accent-rgb), 0.12);
            overscroll-behavior-y: contain;
        }
        img, video, svg { max-width: 100%; height: auto; }
        a { color: inherit; -webkit-tap-highlight-color: rgba(13, 122, 95, 0.12); }
        button, summary, label, .chip, .example-link, .hero-search-example {
            -webkit-tap-highlight-color: rgba(var(--accent-rgb), 0.12);
            touch-action: manipulation;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 40;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: calc(0.75rem + var(--sat))
                     calc(1rem + var(--sar))
                     0.75rem
                     calc(1rem + var(--sal));
            gap: 0.75rem;
            background: var(--nav-bg);
            -webkit-backdrop-filter: saturate(1.25) blur(12px);
            backdrop-filter: saturate(1.25) blur(12px);
            border-bottom: 3px solid var(--accent);
            box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.08);
        }
        .site-header .logo {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-family: Fraunces, serif;
            font-weight: 700;
            font-size: clamp(1.25rem, 4vw, 1.6rem);
            text-decoration: none;
            color: var(--accent-deep);
            letter-spacing: -0.02em;
            z-index: 42;
        }
        .site-header .logo img {
            width: 2rem;
            height: 2rem;
            border-radius: 0.45rem;
            flex-shrink: 0;
        }
        .nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
        .header-login {
            display: none;
            z-index: 42;
            margin-left: auto;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 40px;
            padding: 0 0.9rem;
            border: 1px solid rgba(var(--accent-rgb), 0.28);
            border-radius: 12px;
            background: var(--accent);
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 750;
            line-height: 1;
            box-shadow: 0 4px 14px rgba(26, 31, 36, 0.12);
            -webkit-tap-highlight-color: transparent;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .header-login:active { transform: scale(0.97); }
        .nav-burger {
            display: none;
            z-index: 42;
            min-width: 44px;
            height: 40px;
            border: 1px solid rgba(13, 122, 95, 0.22);
            border-radius: 12px;
            background: #fff;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            gap: 0.45rem;
            padding: 0 0.75rem 0 0.65rem;
            box-shadow: 0 4px 14px rgba(26, 31, 36, 0.08);
            color: var(--accent-deep);
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1;
            user-select: none;
        }
        .nav-burger-icon {
            display: inline-flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 16px;
            height: 14px;
            flex-shrink: 0;
        }
        .nav-burger-icon span {
            display: block;
            width: 16px;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: transform .2s ease, opacity .2s ease;
        }
        .nav-burger-label { letter-spacing: 0.01em; }
        .nav-burger-label--close { display: none; }
        .nav-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 1.35rem;
            height: 1.35rem;
            margin-left: 0.4rem;
            padding: 0 0.35rem;
            border-radius: 999px;
            background: #e5484d;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 800;
            line-height: 1;
        }
        .nav-bell { gap: 0.35rem; }
        .nav-bell__icon {
            display: none;
            align-items: center;
            justify-content: center;
            line-height: 0;
            color: inherit;
        }
        .nav-bell__icon svg { display: block; }
        .nav-bell__text { display: inline; }
        @media (min-width: 1025px) {
            a.nav-bell.nav-bell {
                min-width: 40px;
                justify-content: center;
                padding: 0 0.35rem;
            }
            .nav-bell__icon { display: inline-flex; }
            .nav-bell__text { display: none; }
            .nav-bell .nav-count {
                margin-left: 0.15rem;
                min-width: 1.15rem;
                height: 1.15rem;
                font-size: 0.68rem;
            }
        }
        .nav-who {
            margin: 0;
            padding: 0;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--muted);
            line-height: 1.35;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            max-width: 12rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            cursor: default;
            pointer-events: none;
            user-select: none;
        }
        .site-header nav {
            display: flex;
            gap: 0.35rem 1.1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .site-header nav a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.15rem;
        }
        .site-header nav a:hover { color: var(--accent-deep); }
        .site-header nav form.site-header-logout {
            display: inline-flex;
            margin: 0;
        }
        .site-header nav .btn-ghost {
            margin: 0;
            padding: 0.4rem 0.85rem;
            font-size: 0.9rem;
            min-height: 40px;
        }
        /* ЛК заказчика: мобиле → /profil, ПК → /nastroyki */
        .vu-cab-link--desk { display: none !important; }
        .vu-cab-link--mobile { display: inline-flex !important; }
        @media (min-width: 1025px) {
            .vu-cab-link--mobile { display: none !important; }
            .vu-cab-link--desk { display: inline-flex !important; }
        }

        .home-about-mobile { display: none; }
        .home-about-mobile__card {
            margin: 1.25rem 0 0.5rem;
            padding: 1.15rem 1.1rem 1.2rem;
            border-radius: 18px;
            border: 1px solid rgba(13, 122, 95, 0.16);
            background:
                radial-gradient(420px 140px at 0% 0%, rgba(13, 122, 95, 0.08), transparent 55%),
                #fff;
            box-shadow: 0 10px 28px rgba(26, 31, 36, 0.06);
        }
        .home-about-mobile__kicker {
            margin: 0 0 0.35rem;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--accent-deep);
        }
        .home-about-mobile h2 {
            margin: 0 0 0.45rem;
            font-family: Fraunces, serif;
            font-size: 1.35rem;
            letter-spacing: -0.02em;
            color: var(--ink);
        }
        .home-about-mobile p {
            margin: 0 0 1rem;
            color: var(--muted);
            line-height: 1.45;
            font-size: 0.94rem;
        }
        .home-about-mobile__links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .home-about-mobile__links .btn {
            margin: 0;
            min-height: 44px;
            flex: 1 1 calc(50% - 0.5rem);
            justify-content: center;
            text-align: center;
        }

        /* —— Hero: потребность + гарантия на полном фоне —— */
        .hero {
            position: relative;
            min-height: clamp(640px, 92svh, 960px);
            min-height: clamp(640px, 92dvh, 960px);
            color: var(--hero-ink);
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .hero-media {
            position: absolute;
            inset: 0;
            background:
                var(--hero-glow),
                linear-gradient(
                    105deg,
                    rgba(17, 22, 28, 0.94) 0%,
                    rgba(26, 34, 43, 0.82) 38%,
                    rgba(26, 34, 43, 0.62) 62%,
                    rgba(26, 34, 43, 0.48) 100%
                ),
                url("/images/landing/hero-need-sm.jpg?v=4") 62% 42% / cover no-repeat;
            transform: scale(1.02);
            animation: heroMediaIn 1.4s ease-out both, heroKen 28s ease-in-out 1.2s infinite alternate;
            will-change: transform;
        }
        @media (min-width: 768px) {
            .hero-media {
                background:
                    var(--hero-glow),
                    linear-gradient(
                        105deg,
                        rgba(17, 22, 28, 0.9) 0%,
                        rgba(26, 34, 43, 0.72) 34%,
                        rgba(26, 34, 43, 0.45) 58%,
                        rgba(26, 34, 43, 0.35) 100%
                    ),
                    url("/images/landing/hero-need-md.jpg?v=4") 58% 40% / cover no-repeat;
            }
        }
        @media (min-width: 1280px) {
            .hero-media {
                background:
                    var(--hero-glow),
                    linear-gradient(
                        105deg,
                        rgba(17, 22, 28, 0.88) 0%,
                        rgba(26, 34, 43, 0.68) 32%,
                        rgba(26, 34, 43, 0.38) 54%,
                        rgba(26, 34, 43, 0.28) 100%
                    ),
                    url("/images/landing/hero-need.jpg?v=4") 55% 38% / cover no-repeat;
            }
        }
        @keyframes heroMediaIn {
            from { opacity: 0; transform: scale(1.08); }
            to { opacity: 1; transform: scale(1.04); }
        }
        @keyframes heroKen {
            from { transform: scale(1.04) translate3d(0, 0, 0); }
            to { transform: scale(1.09) translate3d(-1.2%, 0.6%, 0); }
        }
        .hero-media-task { display: none; }
        .hero-media::before { display: none; content: none; }
        .hero-media::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(
                180deg,
                rgba(8, 12, 14, 0.22) 0%,
                transparent 28%,
                transparent 72%,
                rgba(8, 12, 14, 0.35) 100%
            );
            pointer-events: none;
        }
        .hero-shell {
            position: relative;
            z-index: 1;
            width: min(1220px, 100%);
            margin: 0 auto;
            padding: clamp(1.75rem, 4vw, 3rem)
                     calc(1rem + var(--sar))
                     clamp(2.25rem, 5vw, 3.5rem)
                     calc(1rem + var(--sal));
            display: block;
        }
        .hero-stage {
            width: min(100%, 34rem);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.85rem;
            animation: heroStageIn 0.85s cubic-bezier(.2,.7,.2,1) both;
            transition: width 0.25s ease;
        }
        /* Мастер заявки (шаги 2+) — шире, чтобы поля и шаги не тянулись столбиком */
        .hero-stage:has(.hero-entry.is-customer-flow),
        .hero-stage:has(.hero-card:not(.is-search-step)) {
            width: min(100%, 52rem);
        }
        .hero-stage:has(.hero-entry--dual:not(.is-customer-flow)) {
            width: min(100%, 42rem);
        }
        .hero-entry {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            width: 100%;
            align-items: stretch;
        }
        .hero-role-tabs {
            display: none;
            grid-column: 1 / -1;
            grid-template-columns: 1fr 1fr;
            gap: 0.35rem;
            padding: 0.3rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .hero-role-tab {
            appearance: none;
            border: 0;
            margin: 0;
            padding: 0.7rem 0.75rem;
            min-height: 44px;
            border-radius: 11px;
            background: transparent;
            color: rgba(255, 255, 255, 0.88);
            font: inherit;
            font-size: 0.92rem;
            font-weight: 700;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }
        .hero-role-tab.is-active {
            background: #fff;
            color: var(--accent-deep);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
        }
        .faq-more {
            margin: 1rem 0 0;
            font-size: 0.95rem;
            font-weight: 650;
        }
        .faq-more a {
            color: var(--accent-deep, #095c47);
            text-decoration: none;
        }
        .faq-more a:hover { text-decoration: underline; }
        @media (min-width: 1025px) {
            .hero-entry--dual:not(.is-customer-flow) {
                grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.9fr);
                gap: 1.15rem;
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child {
                padding-bottom: 1.65rem;
                display: flex;
                flex-direction: column;
                box-shadow:
                    0 24px 64px rgba(0, 0, 0, 0.32),
                    0 0 0 1px rgba(255, 255, 255, 0.55);
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .hero-form {
                flex: 1 1 auto;
                display: flex;
                flex-direction: column;
                min-height: 0;
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .wizard-step.is-active[data-step="1"] {
                flex: 1 1 auto;
                display: flex;
                flex-direction: column;
                min-height: 0;
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .hero-card-title {
                font-size: clamp(1.55rem, 2.2vw, 1.85rem);
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .hero-card-head,
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .hero-form,
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .wizard-step {
                padding-left: 1.55rem;
                padding-right: 1.55rem;
            }
            /* Один уровень заголовков и первой строки ввода в двух карточках */
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child,
            .hero-entry--dual:not(.is-customer-flow) > .hero-card--exec {
                padding-top: 1.35rem;
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card:first-child .hero-card-head {
                display: none;
            }
            .hero-entry--dual:not(.is-customer-flow) > .hero-card--exec .hero-exec-form {
                padding: 0 1.55rem 0.35rem;
            }
            .hero-entry--dual:not(.is-customer-flow) .hero-search-title {
                margin: 0 0 1.05rem !important;
                min-height: 2.05rem;
                display: flex;
                align-items: flex-end;
            }
            .hero-entry--dual:not(.is-customer-flow) .hero-search,
            .hero-entry--dual:not(.is-customer-flow) .hero-exec-search {
                min-height: 52px;
                margin-bottom: 0.85rem;
                box-sizing: border-box;
            }
            .hero-entry--dual:not(.is-customer-flow) .hero-exec-search {
                display: flex;
                align-items: stretch;
                background: #fff;
                border: 1.5px solid #e0c56a;
                border-radius: 14px;
                padding: 0.4rem 0.85rem;
                box-shadow: 0 8px 28px rgba(26, 31, 36, 0.1);
            }
            .hero-entry--dual:not(.is-customer-flow) .hero-exec-search .hero-search-input {
                padding: 0.7rem 0.35rem !important;
                align-self: center;
            }
        }
        .hero-entry.is-customer-flow .hero-card--exec {
            display: none;
        }
        /* Карточка исполнителя — тот же белый «приятный» стиль, что у заказчика */
        .hero-card--exec {
            animation-delay: 0.18s;
        }
        .hero-exec-form {
            padding: 1.25rem 1.35rem 0.35rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .hero-exec-form .hero-search-title {
            margin: 0 0 1rem !important;
        }
        .hero-exec-search {
            display: block;
            position: relative;
        }
        .hero-exec-search .hero-search-input {
            width: 100%;
            border: none !important;
            box-shadow: none !important;
            padding: 0.85rem 0.2rem !important;
        }
        .hero-exec-search .hero-search-suggest {
            left: -0.85rem;
            right: -0.85rem;
        }
        .hero-exec-city-wrap {
            position: relative;
            margin: 0 0 0.75rem;
        }
        .hero-exec-city-wrap .hero-search-suggest,
        .hero-exec-city-wrap .city-suggest-list {
            left: 0;
            right: 0;
        }
        .hero-exec-city {
            width: 100%;
            margin: 0;
            border: 1.5px solid var(--line) !important;
            border-radius: 14px !important;
            padding: 0.85rem 1rem !important;
            font-size: 1.02rem !important;
            background: #fff;
            box-shadow: 0 4px 16px rgba(26, 31, 36, 0.05);
        }
        .hero-exec-city:focus {
            border-color: rgba(13, 122, 95, 0.45) !important;
            outline: none;
            box-shadow: 0 0 0 3px rgba(13, 122, 95, 0.12);
        }
        .hero-exec-form .hero-label {
            margin-top: 0.15rem;
        }
        .hero-exec-submit {
            width: 100%;
            margin-top: 0.85rem;
            justify-content: center;
            min-height: 48px;
            font-size: 1.02rem;
        }
        .hero-exec-note {
            margin: 0.75rem 0 0;
            font-size: 0.84rem;
            line-height: 1.45;
            color: var(--muted);
            text-align: center;
        }
        .hero-card--exec .hero-search-examples {
            margin: 0.15rem 0 0;
        }
        @keyframes heroStageIn {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-brand {
            margin: 0;
            font-family: Fraunces, serif;
            font-size: clamp(2.35rem, 5.5vw, 3.6rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.04em;
            color: #fff;
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
        }
        .hero-task-peek {
            display: none;
            margin: 0;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .hero-task-peek img {
            display: block;
            width: 100%;
            height: clamp(132px, 28vw, 180px);
            object-fit: cover;
            object-position: 42% 48%;
        }
        .hero-task-peek figcaption {
            position: absolute;
            left: 0.75rem;
            bottom: 0.7rem;
            margin: 0;
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            color: var(--ink);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
        }
        .hero-copy { display: none; }
        .hero-kicker { display: none; }
        .hero-lead {
            font-family: Fraunces, serif;
            font-size: clamp(1.55rem, 3.2vw, 2.15rem);
            font-weight: 650;
            line-height: 1.18;
            letter-spacing: -0.025em;
            max-width: 18ch;
            margin: 0;
            color: rgba(255, 255, 255, 0.96);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        }
        .hero-sub {
            margin: 0;
            max-width: 36ch;
            color: rgba(255, 255, 255, 0.92);
            font-size: 1.02rem;
            line-height: 1.5;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
        }
        .hero-trust { display: none; }
        .hero-cta { display: none; }
        .hero-guarantee {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem 1rem;
            margin: 0.35rem 0 0;
            padding: 0;
            font-size: 0.86rem;
            font-weight: 650;
            color: rgba(255, 255, 255, 0.88);
            max-width: 100%;
        }
        .hero-guarantee span {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }
        .hero-guarantee span::before {
            content: "";
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 50%;
            background: #6fd4b0;
            box-shadow: 0 0 0 3px rgba(111, 212, 176, 0.22);
        }
        .hero-alt {
            margin: 0.15rem 0 0;
            font-size: 0.9rem;
        }
        .hero-alt a {
            color: rgba(255, 255, 255, 0.82);
            text-decoration: underline;
            text-underline-offset: 0.18em;
        }
        .hero-alt a:hover { color: #fff; }
        .hero-card {
            background: rgba(255, 255, 255, 0.97);
            color: var(--ink);
            border-radius: 18px;
            padding: 0 0 1.5rem;
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-top: 4px solid var(--accent);
            overflow: visible;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(8px);
            width: 100%;
            max-width: 100%;
            margin-top: 0.35rem;
            box-sizing: border-box;
            animation: heroCardIn 0.9s cubic-bezier(.2,.7,.2,1) 0.12s both;
        }
        @keyframes heroCardIn {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-card-head {
            padding: 1.35rem 1.35rem 0;
        }
        .hero-form,
        .wizard-step {
            overflow: visible;
            padding: 0 1.35rem;
        }
        .hero-card-title {
            margin: 0 0 0.35rem;
            font-family: Fraunces, serif;
            font-size: 1.55rem;
            letter-spacing: -0.02em;
            overflow-wrap: anywhere;
            word-break: break-word;
        }
        .hero-card-hint {
            margin: 0 0 1rem;
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.45;
            overflow-wrap: anywhere;
            word-break: break-word;
            max-width: 100%;
        }
        .wizard-steps-pills {
            list-style: none;
            margin: 0 0 1.15rem;
            padding: 0.35rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            background: var(--surface);
            border-radius: 12px;
            border: 1px solid var(--line);
            max-width: 100%;
            min-width: 0;
        }
        .wizard-steps-pills li {
            flex: 1 1 auto;
            min-width: 0;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.45rem 0.65rem;
            border-radius: 9px;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--muted);
            white-space: nowrap;
        }
        .wizard-steps-pills .pill-num {
            width: 1.35rem;
            height: 1.35rem;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--line);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            flex-shrink: 0;
        }
        .wizard-steps-pills .pill-label {
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .wizard-steps-pills li.is-active {
            background: #fff;
            color: var(--accent-deep);
            box-shadow: 0 2px 8px rgba(26, 31, 36, 0.06);
        }
        .wizard-steps-pills li.is-active .pill-num {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .wizard-steps-pills li.is-done {
            color: var(--accent-deep);
        }
        .wizard-steps-pills li.is-done .pill-num {
            background: #eef8f4;
            border-color: var(--accent);
            color: var(--accent-deep);
        }
        .hero-form textarea,
        .hero-form select,
        .hero-form input[type="text"],
        .hero-form input[type="number"],
        .hero-form input[type="date"],
        .hero-form input[type="tel"],
        .hero-form input[type="email"],
        .hero-form .flex-control {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1.5px solid var(--line);
            border-radius: 12px;
            font: inherit;
            font-size: 1.05rem;
            line-height: 1.35;
            background: #fff;
            color: var(--ink);
            margin-bottom: 0.65rem;
            min-height: 3.1rem;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
            -webkit-appearance: none;
            appearance: none;
        }
        .hero-form textarea:focus,
        .hero-form select:focus,
        .hero-form input[type="text"]:focus,
        .hero-form input[type="number"]:focus,
        .hero-form input[type="date"]:focus,
        .hero-form input[type="tel"]:focus,
        .hero-form input[type="email"]:focus,
        .hero-form .flex-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(13, 122, 95, 0.14);
        }
        .hero-form input[type="number"] {
            -moz-appearance: textfield;
        }
        .hero-form input[type="number"]::-webkit-outer-spin-button,
        .hero-form input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .hero-form input[type="date"] {
            color-scheme: light;
            cursor: pointer;
        }
        .hero-form input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            opacity: 0.65;
            padding: 0.15rem;
            margin-left: 0.35rem;
        }
        .hero-form input[type="date"]:hover::-webkit-calendar-picker-indicator {
            opacity: 1;
        }
        .flex-time {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            margin-bottom: 0.65rem;
        }
        .flex-time .flex-control {
            margin-bottom: 0;
            flex: 1 1 0;
            min-width: 0;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.85rem center;
            padding-right: 2rem;
        }
        .flex-time-sep {
            flex: 0 0 auto;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--muted);
            line-height: 1;
            user-select: none;
        }
        .flex-input-shell {
            position: relative;
            display: block;
            margin-bottom: 0.65rem;
        }
        .flex-input-shell .flex-control,
        .flex-input-shell input {
            margin-bottom: 0;
            padding-right: 3.25rem;
        }
        .flex-input-suffix {
            position: absolute;
            right: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--muted);
            pointer-events: none;
            letter-spacing: 0.02em;
        }
        .flex-datetime-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .flex-datetime-grid .flex-field {
            margin-bottom: 0;
        }
        @media (max-width: 520px) {
            .flex-datetime-grid {
                grid-template-columns: 1fr;
            }
        }
        .hero-form select {
            appearance: none;
            background-image: linear-gradient(45deg, transparent 50%, #5b7069 50%), linear-gradient(135deg, #5b7069 50%, transparent 50%);
            background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
            background-size: 6px 6px, 6px 6px;
            background-repeat: no-repeat;
            padding-right: 2.2rem;
        }
        .hero-label .req-mark {
            color: #c0392b;
            font-weight: 800;
        }
        .hero-label {
            display: inline-block;
            margin: 0.1rem 0 0.35rem;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--muted);
        }
        .hero-label .req-mark {
            color: #c0392b;
            font-weight: 800;
        }
        .wizard-field-hint {
            margin: 0.35rem 0 0.85rem;
            font-size: 0.82rem;
            line-height: 1.35;
            color: var(--muted);
        }
        /* —— Однострочный поиск услуги —— */
        .hero-search-title {
            margin: 0 0 1.05rem !important;
            font-family: Fraunces, serif !important;
            font-size: clamp(1.45rem, 2.8vw, 1.7rem) !important;
            font-weight: 700 !important;
            letter-spacing: -0.02em !important;
            color: var(--ink) !important;
            line-height: 1.2 !important;
        }
        .hero-card.is-search-step {
            padding-top: 1.35rem;
        }
        .hero-card.is-search-step .wizard-form {
            padding-top: 0;
        }
        .hero-search {
            position: relative;
            display: flex;
            align-items: stretch;
            gap: 0.5rem;
            background: #fff;
            border: 1.5px solid #e0c56a;
            border-radius: 14px;
            padding: 0.4rem 0.4rem 0.4rem 0.85rem;
            box-shadow: 0 8px 28px rgba(26, 31, 36, 0.1);
            margin-bottom: 0.85rem;
        }
        .hero-search-input {
            flex: 1;
            min-width: 0;
            border: 0 !important;
            box-shadow: none !important;
            margin: 0 !important;
            padding: 0.7rem 0.35rem !important;
            font-size: 1.05rem !important;
            background: transparent !important;
        }
        .hero-search-input:focus {
            outline: none;
        }
        .hero-search-btn {
            flex-shrink: 0;
            margin: 0 !important;
            min-height: 48px;
            padding-left: 1.35rem !important;
            padding-right: 1.35rem !important;
            border-radius: 10px !important;
        }
        .hero-search-suggest {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            z-index: 60;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
            box-shadow: 0 14px 36px rgba(26, 31, 36, 0.14);
            max-height: 260px;
            overflow: auto;
            margin: 0;
            padding: 0.35rem 0;
            list-style: none;
        }
        .hero-search-suggest li {
            padding: 0.65rem 0.9rem;
            cursor: pointer;
            font-size: 0.95rem;
            line-height: 1.35;
            color: var(--ink);
        }
        .hero-search-suggest li strong { font-weight: 700; }
        .hero-search-suggest li small {
            display: block;
            color: var(--muted);
            margin-top: 0.15rem;
            font-size: 0.8rem;
        }
        .hero-search-suggest li:hover,
        .hero-search-suggest li.is-active {
            background: #edf5f2;
        }
        .hero-search-examples {
            margin: 0;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.45;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .hero-search-examples__label {
            font-size: 0.8rem;
            font-weight: 650;
            color: var(--muted);
        }
        .hero-search-examples__list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem;
        }
        .hero-search-example {
            border: 1px solid rgba(13, 122, 95, 0.22);
            background: rgba(13, 122, 95, 0.08);
            padding: 0.45rem 0.7rem;
            border-radius: 999px;
            color: var(--accent-deep);
            font: inherit;
            font-size: 0.84rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            line-height: 1.2;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 100%;
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            text-align: center;
        }
        .hero-search-hint {
            margin: 0.15rem 0 0;
            font-size: 0.82rem;
            line-height: 1.4;
            color: var(--muted);
        }
        .hero-search-reassure {
            margin: 0.45rem 0 0;
            text-align: center;
            font-size: 0.82rem;
            line-height: 1.4;
            color: var(--muted);
        }
        .hero-search-example:hover {
            color: var(--accent-deep);
            border-color: rgba(13, 122, 95, 0.35);
            background: #eef7f2;
        }
        .hero-search-example[hidden] { display: none !important; }
        .hero-search-error {
            margin: 0.55rem 0 0;
            font-size: 0.88rem;
            color: #b42318;
            line-height: 1.4;
        }
        .cat-detected-link {
            border: 0;
            background: none;
            padding: 0;
            font: inherit;
            font-weight: 700;
            color: var(--accent-deep);
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 3px;
            cursor: pointer;
        }
        .cat-detected-link:hover { color: var(--accent); }
        .youdo-cat-change {
            font-weight: 600;
            color: var(--accent);
        }
        .wizard-form.is-search-step .wizard-nav {
            display: none;
        }
        .wizard-form.is-search-step .wizard-steps-pills,
        .wizard-form.is-search-step .wizard-progress,
        .wizard-form.is-search-step .wizard-progress-label {
            display: none;
        }
        .wizard-form.is-search-step ~ .hero-errors {
            margin-top: 0.5rem;
        }
        .hero-card.is-search-step .hero-card-head {
            display: none;
        }
        .youdo-cat-picker {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
            gap: 0;
            border: 1px solid rgba(213, 226, 220, 0.95);
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 1rem;
            height: min(280px, 42vh);
            min-height: 220px;
            background: var(--surface);
            box-shadow: 0 6px 24px rgba(26, 31, 36, 0.06);
        }
        .youdo-cat-col {
            overflow-y: auto;
            overflow-x: hidden;
            min-height: 0;
            padding: 0.35rem 0;
            scrollbar-width: thin;
            scrollbar-color: rgba(13, 122, 95, 0.35) transparent;
        }
        .youdo-cat-col::-webkit-scrollbar { width: 6px; }
        .youdo-cat-col::-webkit-scrollbar-thumb {
            background: rgba(13, 122, 95, 0.28);
            border-radius: 999px;
        }
        .youdo-cat-col-main {
            background: #f3f7f5;
        }
        .youdo-cat-col + .youdo-cat-col,
        .youdo-cat-col-sub {
            border-left: 1px solid var(--line);
            background: #fff;
        }
        .youdo-cat-item {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            width: 100%;
            border: 0;
            background: transparent;
            text-align: left;
            padding: 0.6rem 0.9rem;
            font: inherit;
            font-size: 0.9rem;
            line-height: 1.35;
            color: var(--ink);
            cursor: pointer;
            transition: background 0.12s ease, color 0.12s ease;
        }
        .youdo-cat-icon {
            width: 1.65rem;
            height: 1.65rem;
            border-radius: 8px;
            background: #fff;
            border: 1px solid var(--line);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .youdo-cat-item.is-active .youdo-cat-icon {
            background: #eef8f4;
            border-color: rgba(13, 122, 95, 0.35);
        }
        .youdo-cat-item:hover {
            background: rgba(13, 122, 95, 0.06);
            color: var(--accent-deep);
        }
        .youdo-cat-item.is-active {
            color: var(--accent-deep);
            background: rgba(13, 122, 95, 0.11);
            font-weight: 700;
            box-shadow: inset 3px 0 0 var(--accent);
        }
        .youdo-cat-sub-head {
            padding: 0.7rem 0.9rem 0.4rem;
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--muted);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 1;
            border-bottom: 1px solid rgba(213, 226, 220, 0.6);
        }
        .youdo-cat-selected {
            font-size: 0.88rem;
            color: var(--muted);
            margin-bottom: 0.75rem;
            line-height: 1.45;
        }
        .youdo-cat-selected strong { color: var(--accent-deep); }
        .wizard-field-hint {
            margin: -0.35rem 0 0.55rem;
            font-size: 0.84rem;
            color: var(--muted);
            line-height: 1.45;
        }
        .flex-field { margin-bottom: 0.75rem; overflow: visible; }
        .flex-field legend,
        .flex-field > .hero-label { margin-bottom: 0.45rem; }
        .flex-radio-grid,
        .flex-check-grid {
            display: grid;
            gap: 0.35rem;
        }
        .flex-radio-grid label,
        .flex-check-grid label {
            display: flex;
            gap: 0.45rem;
            align-items: flex-start;
            font-size: 0.9rem;
            cursor: pointer;
        }
        .flex-radio-grid input,
        .flex-check-grid input { width: auto; margin-top: 0.15rem; }
        .route-points { display: grid; gap: 0.5rem; overflow: visible; }
        .route-point {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            gap: 0.45rem;
            align-items: start;
        }
        .route-point .suggest-wrap {
            min-width: 0;
            margin-bottom: 0;
        }
        .route-point .suggest-wrap > input {
            width: 100%;
            margin-bottom: 0;
        }
        .route-point-letter {
            width: 1.6rem;
            height: 1.6rem;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-weight: 800;
            font-size: 0.78rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .route-add {
            border: 1px dashed var(--line);
            background: #fff;
            border-radius: 10px;
            padding: 0.55rem;
            font-size: 0.85rem;
            cursor: pointer;
            color: var(--accent-deep);
        }
        @media (max-width: 720px) {
            .youdo-cat-picker {
                grid-template-columns: 1fr;
                height: auto;
                max-height: none;
                min-height: 0;
            }
            .youdo-cat-col-main { max-height: 180px; }
            .youdo-cat-col-sub { max-height: 200px; }
            .youdo-cat-col-sub { border-left: 0; border-top: 1px solid var(--line); }
        }
        .hero-form textarea { resize: vertical; min-height: 110px; }
        .suggest-wrap {
            position: relative;
            margin-bottom: 0.65rem;
        }
        .suggest-wrap > input { margin-bottom: 0; }
        .suggest-list {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 10px;
            box-shadow: 0 14px 30px rgba(26, 31, 36, 0.12);
            z-index: 5;
            max-height: 220px;
            overflow: auto;
        }
        .suggest-item {
            width: 100%;
            border: 0;
            background: #fff;
            text-align: left;
            padding: 0.62rem 0.8rem;
            font: inherit;
            font-size: 0.92rem;
            cursor: pointer;
        }
        .suggest-item:hover {
            background: #edf5f2;
        }
        .suggest-list-addr {
            list-style: none;
            margin: 0;
            padding: 0.35rem 0;
        }
        .suggest-wrap .suggest-list-addr {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            z-index: 50;
        }
        .suggest-list-addr li {
            padding: 0.62rem 0.8rem;
            font-size: 0.92rem;
            line-height: 1.35;
            cursor: pointer;
        }
        .suggest-list-addr li strong {
            display: block;
            font-weight: 600;
        }
        .hero-search-suggest .suggest-hit {
            display: inline;
            font-weight: 700;
            background: rgba(13, 122, 95, 0.1);
            padding: 0;
            color: inherit;
        }
        .hero-search-suggest .suggest-line {
            display: block;
        }
        .suggest-list-addr li:hover,
        .suggest-list-addr li.is-active {
            background: #edf5f2;
        }
        .suggest-list-addr li small {
            display: block;
            color: var(--muted);
            margin-top: 0.15rem;
            font-size: 0.8rem;
        }
        .preform-box {
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 0.7rem 0.8rem 0.5rem;
            margin: 0 0 0.65rem;
            background: #fff;
        }
        .preform-box legend {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--muted);
            padding: 0 0.3rem;
        }
        .preform-grid {
            display: grid;
            gap: 0.45rem;
        }
        .check-row {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.92rem;
            color: var(--ink);
        }
        .check-row input {
            width: 16px;
            height: 16px;
        }
        .wizard-progress {
            height: 4px;
            background: #e2ebe7;
            border-radius: 999px;
            overflow: hidden;
            margin: 0 0 0.45rem;
        }
        .wizard-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), #12906f);
            border-radius: 999px;
            transition: width .25s ease;
        }
        .wizard-progress-label {
            margin: 0 0 1rem;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--muted);
        }
        .wizard-step-title {
            margin: 0 0 0.65rem;
            font-family: Fraunces, serif;
            font-size: 1.25rem;
            letter-spacing: -0.02em;
        }
        .wizard-step-hint {
            margin: -0.35rem 0 0.85rem;
            font-size: 0.9rem;
            color: var(--muted);
        }
        .wizard-progress,
        .wizard-progress-label {
            display: none;
        }
        .wizard-nav {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.65rem;
            margin-top: 0.35rem;
            padding: 0 1.35rem;
        }
        .wizard-nav .wizard-submit {
            grid-column: 1 / -1;
        }
        .wizard-nav .btn:only-child,
        .wizard-nav .wizard-next:not([hidden]):only-of-type {
            grid-column: 1 / -1;
        }
        .wizard-back[hidden] + .wizard-next {
            grid-column: 1 / -1;
        }
        .btn-block { width: 100%; }
        .hero-errors {
            margin: 0.75rem 1.35rem 0;
            padding-left: 1.1rem;
            color: #b42318;
            font-size: 0.9rem;
        }
        .sr-only {
            position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0,0,0,0); border: 0;
        }
        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .btn:hover { transform: translateY(-1px); }

        @keyframes rise {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-inner > *,
        .hero-shell > .hero-stage {
            animation: rise .7s ease both;
        }
        .role-media img {
            transition: transform 1.2s ease;
        }
        .role-block:hover .role-media img {
            transform: scale(1.03);
        }

        /* —— Sections —— */
        /* safe-area только у .wrap — иначе двойной отступ на iPhone с «чёлкой» */
        section {
            padding: clamp(2.5rem, 6vw, 4.5rem) 0;
        }
        .wrap {
            width: min(1080px, 100%);
            margin: 0 auto;
            padding-left: calc(1rem + var(--sal));
            padding-right: calc(1rem + var(--sar));
            box-sizing: border-box;
        }
        .section-title {
            font-family: Fraunces, serif;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            letter-spacing: -0.02em;
            margin: 0 0 0.75rem;
            line-height: 1.15;
        }
        .section-lead {
            margin: 0 0 2rem;
            color: var(--muted);
            max-width: 42ch;
            font-size: 1.05rem;
        }

        .how {
            background:
                radial-gradient(ellipse 70% 45% at 92% 0%, rgba(13, 122, 95, 0.10), transparent 55%),
                linear-gradient(180deg, #e8f1ec 0%, #eef4f0 100%);
        }

        .seo-about {
            background: var(--white);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .seo-about-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem 1.5rem;
            margin-top: 1.25rem;
        }
        .seo-about-grid h3 {
            margin: 0 0 0.4rem;
            font-size: 1.05rem;
        }
        .seo-about-grid p {
            margin: 0;
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.95rem;
        }
        .seo-about-more {
            margin: 1.35rem 0 0;
            color: var(--muted);
            font-size: 0.95rem;
        }
        .seo-about-more a {
            color: var(--accent-deep);
            font-weight: 600;
            text-decoration: none;
        }
        .seo-about-more a:hover { text-decoration: underline; }
        @media (max-width: 1024px) {
            .seo-about-grid { grid-template-columns: 1fr; }
        }

        .popular {
            background: var(--white);
            border-bottom: 1px solid var(--line);
        }
        .chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
        }
        .chip {
            display: inline-flex;
            align-items: center;
            padding: 0.55rem 0.95rem;
            border-radius: 999px;
            background: var(--paper);
            border: 1px solid var(--line);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--ink);
            transition: border-color .15s ease, background .15s ease;
        }
        .chip:hover {
            border-color: var(--accent);
            background: #e8f3ef;
        }
        .chip-more {
            border-style: dashed;
            color: var(--accent-deep);
        }

        .examples {
            background:
                radial-gradient(ellipse 65% 50% at 0% 100%, rgba(13, 122, 95, 0.10), transparent 55%),
                linear-gradient(180deg, #eef4f0 0%, #e6efe9 100%);
        }
        .example-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }
        .example-grid.is-rotating {
            opacity: 0;
            transform: translateY(6px);
        }
        .example-grid.is-rotated-in {
            animation: exampleGridIn 0.38s ease;
        }
        @keyframes exampleGridIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (prefers-reduced-motion: reduce) {
            .example-grid { transition: none; }
            .example-grid.is-rotating,
            .example-grid.is-rotated-in { animation: none; transform: none; opacity: 1; }
        }
        .example-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 1.1rem 1.15rem 1.15rem;
        }
        .example-card h3 {
            margin: 0 0 0.35rem;
            font-size: 1.05rem;
        }
        .example-card p {
            margin: 0 0 0.85rem;
            color: var(--muted);
            font-size: 0.92rem;
        }
        .example-link {
            background: none;
            border: 0;
            padding: 0;
            font: inherit;
            font-weight: 700;
            color: var(--accent-deep);
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .example-link:hover { color: var(--accent); }

        .done-feed {
            background:
                radial-gradient(ellipse 80% 55% at 8% -10%, rgba(13, 122, 95, 0.16), transparent 58%),
                radial-gradient(ellipse 60% 50% at 100% 110%, rgba(212, 162, 78, 0.12), transparent 52%),
                linear-gradient(180deg, #dfece6 0%, #e8f1ec 48%, #eef4f0 100%);
            border-bottom: none;
            padding: clamp(2rem, 5vw, 3.25rem) 0;
        }
        .done-feed-layout {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2.5rem);
            align-items: stretch;
        }
        .done-feed-layout--reviews {
            max-width: 44rem;
            margin-left: auto;
            margin-right: auto;
        }
        .done-feed-intro {
            max-width: 44rem;
            margin: 0 auto;
            text-align: center;
        }
        .done-feed-kicker {
            margin: 0 0 0.45rem;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-deep);
        }
        .done-feed-intro .section-title { margin-top: 0; }
        .done-feed-stats {
            margin: 1.25rem auto 1.35rem;
            max-width: 40rem;
        }
        .done-feed-points .live-stat {
            padding: 0.95rem 0.95rem 1rem;
            text-align: left;
        }
        .done-feed-points .live-stat strong {
            font-family: inherit;
            font-size: 0.98rem;
            line-height: 1.25;
        }
        .done-feed-points .live-stat span {
            margin-top: 0.3rem;
            font-size: 0.82rem;
            line-height: 1.4;
        }
        .done-feed-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 0.65rem;
            margin: 1.1rem 0 1.25rem;
            padding: 0;
            list-style: none;
        }
        .done-feed-pills li {
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(13, 122, 95, 0.18);
            background: #eef6f2;
            color: var(--accent-deep);
            font-size: 0.86rem;
            font-weight: 650;
        }
        .done-feed-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin: 0 auto;
            justify-content: center;
            align-items: center;
            width: 100%;
            text-align: center;
        }
        .done-feed-cta .btn {
            margin-left: 0;
            margin-right: 0;
        }
        .done-feed-column {
            background: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            overflow: visible;
            max-height: none;
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .done-feed-column-head {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            padding: 0 0 0.85rem;
            border-bottom: 0;
            background: transparent;
            text-align: center;
            align-items: center;
        }
        .done-feed-column-head strong { font-size: 1.02rem; }
        .done-feed-column-head .muted { font-size: 0.84rem; }
        .done-feed-list {
            display: flex;
            flex-direction: row;
            gap: 0.9rem;
            overflow-x: auto;
            overflow-y: hidden;
            overscroll-behavior-x: contain;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding: 0.15rem 0.15rem 0.65rem;
            scrollbar-width: thin;
        }
        .done-feed-item {
            flex: 0 0 min(320px, 86vw);
            scroll-snap-align: start;
            padding: 1rem 1.1rem;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            box-shadow: 0 10px 28px rgba(26, 31, 36, 0.06);
        }
        .done-feed-item:last-child { border-bottom: 1px solid var(--line); }
        .done-feed-item-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.35rem;
        }
        .done-feed-price {
            font-size: 0.95rem;
            color: var(--accent-deep);
            white-space: nowrap;
        }
        .done-feed-title {
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.35;
            color: var(--ink);
        }
        .done-feed-place {
            margin-top: 0.25rem;
            font-size: 0.84rem;
        }
        .done-feed-text {
            margin: 0.55rem 0 0;
            font-size: 0.92rem;
            line-height: 1.45;
            color: #2b3b35;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .done-feed-who {
            display: flex;
            gap: 0.65rem;
            align-items: center;
            margin-top: 0.75rem;
        }
        .done-feed-who .live-avatar {
            width: 40px;
            height: 40px;
        }
        .done-feed-who-text {
            min-width: 0;
            font-size: 0.86rem;
            line-height: 1.35;
        }
        .done-feed-who-text a {
            color: var(--accent-deep);
            font-weight: 700;
            text-decoration: none;
        }
        .done-feed-who-text a:hover { text-decoration: underline; }

        .masters-feed {
            background: #fff;
            border-bottom: 1px solid var(--line);
            padding: clamp(2rem, 5vw, 3.1rem) 0;
        }
        .masters-feed-head {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1rem 1.5rem;
            margin-bottom: 1.25rem;
        }
        .masters-feed-head .section-title { margin: 0.2rem 0 0.45rem; }
        .masters-feed-head .section-lead { margin: 0; max-width: 48ch; }
        .masters-feed-head .btn { margin: 0; }
        .masters-feed-track {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.85rem;
        }
        .masters-card {
            margin: 0;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: linear-gradient(180deg, #fbfcfb 0%, #fff 70%);
            box-shadow: 0 8px 22px rgba(26, 31, 36, 0.05);
            transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
            height: 100%;
        }
        .masters-card:hover {
            transform: translateY(-2px);
            border-color: rgba(13, 122, 95, 0.35);
            box-shadow: 0 12px 28px rgba(26, 31, 36, 0.09);
        }
        .masters-card__link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            padding: 0.95rem 1rem;
            text-decoration: none !important;
            color: inherit;
            min-height: 226px;
            height: 100%;
        }
        .masters-card__avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            flex: 0 0 auto;
            background: #e4efe9;
        }
        .masters-card__avatar--fallback {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--accent-deep);
        }
        .masters-card__body {
            min-width: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.2rem;
            flex: 1 1 auto;
        }
        .masters-card__name {
            display: block;
            font-size: 0.98rem;
            line-height: 1.25;
            margin-bottom: 0.05rem;
            min-height: 2.45em;
            overflow: hidden;
        }
        .masters-card__meta {
            font-size: 0.84rem;
            line-height: 1.35;
            margin-bottom: 0.15rem;
            min-height: 1.2em;
        }
        .masters-card .ctr-rating {
            margin-top: auto;
            width: 100%;
            justify-content: center;
            text-align: center;
        }
        .masters-card__stars { font-size: 0.85rem; }

        .rating-guide {
            background: linear-gradient(180deg, #f4f9f6 0%, #fff 42%);
            border-bottom: 1px solid var(--line);
            padding: clamp(2rem, 5vw, 3.2rem) 0;
        }
        .rating-guide__head {
            max-width: 58ch;
            margin: 0 auto 1.6rem;
            text-align: center;
        }
        .rating-guide__head .section-title { margin: 0.2rem 0 0.5rem; }
        .rating-guide__head .section-lead { margin: 0 auto; }
        .rating-guide__duo {
            display: flex;
            flex-direction: column;
            gap: 1.35rem;
            margin-bottom: 1.35rem;
        }
        .rating-guide__col {
            padding: clamp(1.1rem, 2.5vw, 1.45rem);
            border-radius: 18px;
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: 0 10px 28px rgba(26, 31, 36, 0.05);
        }
        .rating-guide__col--contractors {
            border-top: 3px solid var(--accent);
        }
        .rating-guide__col--customers {
            border-top: 3px solid #d4a24e;
        }
        .rating-guide__col-title {
            margin: 0 0 0.85rem;
            font-family: Fraunces, Georgia, serif;
            font-size: 1.2rem;
            color: var(--accent-deep);
            text-align: center;
        }
        .rating-guide__ladder {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0.7rem;
            align-items: stretch;
        }
        .rating-guide__ladder li {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.35rem;
            min-height: 9.75rem;
            padding: 0.95rem 0.7rem;
            border-radius: 14px;
            background: #ffffff;
            border: 1px solid var(--line);
        }
        .rating-guide__ladder li.is-top {
            border-color: #efd3a0;
            background: linear-gradient(165deg, #fffaf0, #fff);
        }
        .rating-guide__n {
            width: 1.55rem;
            height: 1.55rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 800;
            background: #e8f3ef;
            color: var(--accent-deep);
            flex-shrink: 0;
        }
        .rating-guide__ladder li.is-top .rating-guide__n {
            background: #ffe8b8;
            color: #8a5a00;
        }
        .rating-guide__ladder strong {
            font-size: 0.92rem;
            line-height: 1.25;
            min-height: 2.4em;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rating-guide__ladder span {
            font-size: 0.78rem;
            color: var(--muted);
            line-height: 1.35;
            margin-top: auto;
        }
        .rating-guide__cards {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.85rem;
            margin-bottom: 1.35rem;
        }
        .rating-guide__cards article {
            margin: 0;
            padding: 1rem 1.05rem;
            border-radius: 14px;
            background: #fff;
            border: 1px solid var(--line);
            text-align: center;
        }
        .rating-guide__cards strong {
            display: block;
            margin-bottom: 0.35rem;
            font-size: 0.98rem;
        }
        .rating-guide__cards p {
            margin: 0;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.45;
        }
        .rating-guide__cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem 0.85rem;
            justify-content: center;
            align-items: center;
            width: 100%;
            text-align: center;
        }
        .rating-guide__cta .btn { margin: 0; }

        .live-proof {
            background: #fff;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .live-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.85rem;
            margin: 0 0 1.5rem;
        }
        .live-stat {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 1rem 1.1rem;
            text-align: center;
        }
        .live-stat strong {
            display: block;
            font-family: Fraunces, serif;
            font-size: clamp(1.45rem, 3vw, 1.9rem);
            color: var(--accent-deep);
            line-height: 1.1;
        }
        .live-stat span {
            display: block;
            margin-top: 0.35rem;
            color: var(--muted);
            font-size: 0.9rem;
        }
        .live-reviews {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.9rem;
        }
        .live-review {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 1rem 1.1rem;
        }
        .live-review-top {
            display: flex;
            justify-content: space-between;
            gap: 0.75rem;
            align-items: flex-start;
        }
        .live-review-who {
            display: flex;
            gap: 0.7rem;
            align-items: flex-start;
            min-width: 0;
        }
        .live-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            background: #dfe8e3;
        }
        .live-avatar-fallback {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--accent-deep);
            font-size: 0.85rem;
        }
        .live-review-meta {
            font-size: 0.86rem;
            margin-top: 0.15rem;
            line-height: 1.4;
        }
        .live-review-meta a {
            color: var(--accent-deep);
            font-weight: 600;
            text-decoration: none;
        }
        .live-stars {
            color: #d5d5d5;
            letter-spacing: 0.05em;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .live-stars .is-on { color: #c9a227; }
        .live-review-task {
            margin: 0.65rem 0 0;
            font-size: 0.86rem;
        }
        .live-review-text {
            margin: 0.55rem 0 0;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        .live-proof-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin: 1.35rem 0 0;
        }
        @media (max-width: 1024px) {
            .masters-feed-track { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
            .rating-guide__ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .rating-guide__ladder li { min-height: 8.5rem; }
            .rating-guide__cards { grid-template-columns: 1fr; }
        }
        @media (max-width: 1024px) {
            .live-reviews { grid-template-columns: 1fr; }
            .live-stats { grid-template-columns: 1fr; }
            .done-feed-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        @media (max-width: 560px) {
            .done-feed-stats { grid-template-columns: 1fr; }
            .rating-guide__ladder { grid-template-columns: 1fr; }
            .masters-feed-track { grid-template-columns: 1fr; }
            .masters-feed-head .btn { width: 100%; min-height: 46px; text-align: center; justify-content: center; }
        }

        .for-pros { background: var(--surface); }
        .tariff-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.85rem;
            margin: 0 0 1.35rem;
        }
        .tariff {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 1rem;
        }
        .tariff-price {
            display: block;
            font-family: Fraunces, serif;
            font-size: 1.75rem;
            color: var(--accent);
            line-height: 1.1;
            margin-bottom: 0.25rem;
        }
        .tariff strong { display: block; margin-bottom: 0.25rem; }
        .tariff p {
            margin: 0;
            font-size: 0.88rem;
            color: var(--muted);
        }

        .faq { background: var(--white); }
        .faq-wrap { max-width: 720px; }
        .faq-item {
            border-top: 1px solid var(--line);
            padding: 0.85rem 0;
        }
        .faq-item summary {
            cursor: pointer;
            font-weight: 700;
            list-style: none;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item p {
            margin: 0.65rem 0 0;
            color: var(--muted);
        }
        .steps {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem 2rem;
            counter-reset: step;
        }
        .step { position: relative; padding-top: 0.25rem; }
        .step::before {
            counter-increment: step;
            content: counter(step);
            display: block;
            font-family: Fraunces, serif;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .step h3 {
            margin: 0 0 0.4rem;
            font-size: 1.15rem;
        }
        .step p {
            margin: 0;
            color: var(--muted);
            font-size: 0.98rem;
        }

        .role-block {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: clamp(1.25rem, 4vw, 2.5rem);
            align-items: center;
        }
        .role-block.reverse { direction: rtl; }
        .role-block.reverse > * { direction: ltr; }
        .role-copy h2 { margin-top: 0; }
        .role-copy p { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.5rem; }
        .role-media {
            margin: 0;
            overflow: hidden;
            border-radius: 4px;
            min-height: clamp(200px, 40vw, 320px);
            background: #c5d5ce center/cover no-repeat;
        }
        .role-media img {
            display: block;
            width: 100%;
            height: 100%;
            min-height: clamp(200px, 40vw, 320px);
            object-fit: cover;
        }

        .trust {
            background:
                linear-gradient(135deg, #0b3d31 0%, var(--accent) 55%, #12906f 100%);
            color: #fff;
        }
        .trust .section-title { color: #fff; }
        .trust .section-lead { color: rgba(255,255,255,.85); }
        .trust-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
        }
        .trust-points--five {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }
        .trust-points div {
            padding: 0.85rem 0.9rem;
            border-radius: 12px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.12);
        }
        .trust-points div strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 0.4rem;
        }
        .trust-points div p {
            margin: 0;
            color: rgba(255,255,255,.82);
            font-size: 0.92rem;
            line-height: 1.45;
        }

        .site-footer {
            padding: 2rem
                     calc(1rem + var(--sar))
                     calc(2.5rem + var(--sab))
                     calc(1rem + var(--sal));
            background: var(--ink);
            color: rgba(255,255,255,.75);
            font-size: 0.9rem;
        }
        .site-footer .wrap {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .site-footer a { color: #fff; text-decoration: none; }
        .site-footer .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            line-height: 1;
        }
        .site-footer .footer-brand img {
            width: 22px;
            height: 22px;
            border-radius: 5px;
            flex-shrink: 0;
            display: block;
        }
        .site-footer .footer-brand strong {
            color: #fff;
            font-family: Fraunces, serif;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1;
        }
        .site-footer .footer-brand span {
            opacity: 0.75;
            font-size: 0.9rem;
            line-height: 1;
        }
        .site-footer .demo {
            opacity: 0.65;
            font-size: 0.8rem;
        }
        .site-footer .footer-top {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 2.4fr);
            gap: 1.5rem 1.75rem;
            margin-bottom: 1.5rem;
            align-items: start;
            width: 100%;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.25rem 1.5rem;
            margin-bottom: 0;
        }
        .site-footer .footer-title {
            margin: 0 0 0.65rem;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,.5);
        }
        .site-footer .footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
        .site-footer .footer-lead { margin: 0; font-size: 0.9rem; line-height: 1.45; max-width: 28ch; }
        .site-footer .footer-contacts {
            list-style: none;
            margin: 0.75rem 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .site-footer .footer-contacts a {
            color: rgba(255,255,255,.9);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
        }
        .site-footer .footer-contacts a:hover { color: #fff; text-decoration: underline; }
        .site-footer .footer-legal {
            margin: 0.65rem 0 0;
            font-size: 0.78rem;
            line-height: 1.4;
            color: rgba(255,255,255,.55);
            max-width: 34ch;
        }
        .site-footer .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,.12);
            font-size: 0.85rem;
        }
        .site-footer .footer-copy {
            max-width: 62ch;
            line-height: 1.45;
            color: rgba(255,255,255,.78);
        }
        .site-footer.site-footer--home {
            padding: 1.15rem
                     calc(1rem + var(--sar))
                     calc(1.25rem + var(--sab))
                     calc(1rem + var(--sal));
        }
        .site-footer.site-footer--home .footer-lead,
        .site-footer.site-footer--home .footer-copy__long,
        .site-footer.site-footer--home .footer-store,
        .site-footer.site-footer--home .footer-col--popular {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }
        .site-footer.site-footer--home .footer-top {
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.2fr);
            gap: 1rem 1.25rem;
            margin-bottom: 0.75rem;
        }
        .site-footer.site-footer--home .footer-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.85rem 1.1rem;
        }
        .site-footer.site-footer--home .footer-legal {
            margin-top: 0.35rem;
            font-size: 0.72rem;
        }
        .site-footer .store-badges { margin-top: 1.1rem; }
        .site-footer .store-badges__label {
            margin: 0 0 0.55rem;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,.5);
        }
        .site-footer .store-badges__row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }
        .site-footer .store-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            min-width: 132px;
            padding: 0.42rem 0.7rem 0.42rem 0.55rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,.28);
            background: #0b0b0b;
            color: #fff;
            text-decoration: none;
            line-height: 1.1;
            transition: border-color .15s ease, transform .15s ease, filter .15s ease;
        }
        .site-footer .store-badge--rustore {
            background: linear-gradient(145deg, #2a1848 0%, #15101f 100%);
            border-color: rgba(124, 77, 255, 0.4);
        }
        .site-footer .store-badge--appstore {
            background: linear-gradient(145deg, #1c1c1e 0%, #000 100%);
            border-color: rgba(0, 122, 255, 0.35);
        }
        .site-footer .store-badge--googleplay {
            background: linear-gradient(145deg, #202124 0%, #0f1113 100%);
            border-color: rgba(66, 133, 244, 0.35);
        }
        .site-footer .store-badge--appgallery {
            background: linear-gradient(145deg, #3a0a0a 0%, #1a0505 100%);
            border-color: rgba(230, 0, 18, 0.4);
        }
        .site-footer a.store-badge:hover {
            transform: translateY(-1px);
            filter: brightness(1.1);
            color: #fff;
        }
        .site-footer .store-badge--soon {
            opacity: 0.7;
            cursor: default;
            user-select: none;
        }
        .site-footer .store-badge__icon { flex: 0 0 auto; display: block; }
        .site-footer .store-badge__text {
            display: flex;
            flex-direction: column;
            gap: 0.08rem;
            min-width: 0;
        }
        .site-footer .store-badge__sub {
            font-size: 0.62rem;
            letter-spacing: 0.02em;
            color: rgba(255,255,255,.72);
            white-space: nowrap;
        }
        .site-footer .store-badge__name {
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        /* Hero: красивые чёрные значки сторов на белой карточке */
        .hero-card .store-badges--hero {
            margin-top: 1.15rem;
            padding-top: 0.95rem;
            border-top: 1px solid rgba(16, 42, 34, 0.08);
        }
        .hero-card .store-badges--hero .store-badges__label {
            margin: 0 0 0.55rem;
            font-size: 0.78rem;
            font-weight: 650;
            text-transform: none;
            letter-spacing: 0;
            color: var(--muted, #5a6f68);
        }
        .hero-card .store-badges--hero .store-badges__row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.45rem;
        }
        .hero-card .store-badges--hero .store-badge {
            min-width: 0;
            width: 100%;
            padding: 0.48rem 0.65rem 0.48rem 0.55rem;
            border-radius: 11px;
            border: 1px solid transparent;
            color: #fff;
            box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 14px rgba(8, 20, 16, 0.12);
        }
        .hero-card .store-badges--hero .store-badge--rustore {
            background: linear-gradient(145deg, #2a1848 0%, #15101f 55%, #0d0a14 100%);
            border-color: rgba(124, 77, 255, 0.35);
        }
        .hero-card .store-badges--hero .store-badge--appstore {
            background: linear-gradient(145deg, #1c1c1e 0%, #000 100%);
            border-color: rgba(0, 122, 255, 0.35);
        }
        .hero-card .store-badges--hero .store-badge--googleplay {
            background: linear-gradient(145deg, #202124 0%, #0f1113 100%);
            border-color: rgba(66, 133, 244, 0.35);
        }
        .hero-card .store-badges--hero .store-badge--appgallery {
            background: linear-gradient(145deg, #3a0a0a 0%, #1a0505 100%);
            border-color: rgba(230, 0, 18, 0.4);
        }
        .hero-card .store-badges--hero a.store-badge:hover {
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.08);
            box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 10px 18px rgba(8, 20, 16, 0.16);
        }
        .hero-card .store-badges--hero .store-badge--soon {
            opacity: 0.72;
            filter: none;
        }
        .hero-card .store-badges--hero .store-badge--soon .store-badge__icon {
            opacity: 0.85;
        }
        .hero-card .store-badges--hero .store-badge__sub {
            font-size: 0.58rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: rgba(255,255,255,.72);
        }
        .hero-card .store-badges--hero .store-badge__name {
            font-size: 0.95rem;
            font-weight: 750;
            letter-spacing: -0.02em;
        }
        .hero-card .store-badges--hero .store-badge__icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            overflow: visible;
        }
        .hero-entry--dual:not(.is-customer-flow) .hero-card .store-badges--hero {
            margin-top: auto;
            padding-top: 0.85rem;
        }

        /* Tablet + phone landscape */
        @media (max-width: 1080px) {
            .hero-shell {
                display: block;
            }
            .hero-stage {
                width: 100%;
                max-width: 54rem;
            }
            .hero-stage:has(.hero-entry--dual:not(.is-customer-flow)) {
                max-width: 42rem;
            }
            .hero-task-peek {
                display: none;
            }
            .hero-card {
                width: 100%;
                max-width: 100%;
                margin-top: 0.35rem;
                margin-left: 0;
                margin-right: 0;
                min-width: 0;
            }
            .hero-lead {
                max-width: none;
            }
            .hero-card-hint {
                font-size: 0.88rem;
            }
            .example-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .site-footer .footer-top { grid-template-columns: 1fr; }
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem 1.5rem;
            }
        }

        @media (max-width: 1024px) {
            .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
            .trust-points,
            .trust-points--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .role-block { gap: 1.75rem; }
        }

        @media (max-width: 1024px) {
            .header-login { display: inline-flex; }
            body.has-mobile-dock .header-login--guest { display: none !important; }
            .nav-burger { display: inline-flex; }
            .site-header { gap: 0.45rem; }
            .hero-role-tabs { display: grid; }
            .hero-entry--dual[data-active-role="customer"] > [data-role-panel="contractor"] {
                display: none !important;
            }
            .hero-entry--dual[data-active-role="contractor"] > [data-role-panel="customer"] {
                display: none !important;
            }
            .hero-entry.is-customer-flow > [data-role-panel="customer"] {
                display: block !important;
            }
            .hero-entry.is-customer-flow .hero-role-tabs {
                display: none !important;
            }
            .nav-burger-label--close { display: none; }
            .nav-toggle:checked + .nav-burger .nav-burger-label--open { display: none; }
            .nav-toggle:checked + .nav-burger .nav-burger-label--close { display: inline; }
            .nav-toggle:checked + .nav-burger .nav-burger-icon { display: none; }
            .site-header nav {
                position: absolute;
                top: calc(100% + 0.35rem);
                right: calc(0.65rem + var(--sar));
                left: calc(0.65rem + var(--sal));
                width: auto;
                max-height: min(78dvh, calc(100dvh - 4.5rem - var(--sat) - var(--sab)));
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
                flex-direction: column;
                align-items: stretch;
                gap: 0.2rem;
                padding: 0.55rem;
                background: #fff;
                border: 1px solid rgba(13, 122, 95, 0.16);
                border-radius: 16px;
                box-shadow: 0 14px 36px rgba(26, 31, 36, 0.14);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-6px);
                transition: opacity .2s ease, transform .2s ease, visibility .2s;
            }
            .site-header nav a {
                width: 100%;
                padding: 0.95rem 1rem;
                min-height: 52px;
                border-radius: 12px;
                font-size: 1.05rem;
                font-weight: 650;
                color: var(--ink);
                justify-content: space-between;
            }
            .site-header nav a:hover,
            .site-header nav a:active {
                background: #eef7f2;
                color: var(--accent-deep);
            }
            .site-header nav .nav-who {
                width: 100%;
                padding: 0.95rem 1rem;
                min-height: 52px;
                border-radius: 12px;
                font-size: 1.05rem;
                font-weight: 650;
                color: var(--ink);
                max-width: none;
                pointer-events: auto;
            }
            .site-header nav form.site-header-logout {
                padding: 0.25rem 0.35rem 0.45rem;
            }
            .site-header nav .btn-ghost {
                width: 100%;
                justify-content: center;
                min-height: 48px;
                font-size: 1rem;
            }
            .nav-toggle:checked ~ nav {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            /* iOS: font-size ≥16px — иначе зум при фокусе в поле */
            .hero-form input[type="text"],
            .hero-form input[type="number"],
            .hero-form input[type="date"],
            .hero-form input[type="tel"],
            .hero-form input[type="email"],
            .hero-form textarea,
            .hero-form select,
            .hero-form .flex-control,
            .hero-search-input {
                font-size: 16px !important;
            }
            .hero {
                min-height: auto;
                align-items: stretch;
            }
            .hero-media {
                background-image:
                    linear-gradient(
                        180deg,
                        rgba(12, 18, 22, 0.66) 0%,
                        rgba(12, 18, 22, 0.72) 42%,
                        rgba(8, 12, 14, 0.92) 100%
                    ),
                    url("/images/landing/hero-need-sm.jpg?v=4");
                background-position: center, 68% 32%;
                background-size: cover, cover;
                background-repeat: no-repeat;
                animation: none;
                transform: none;
            }
            .hero-media-task,
            .hero-media::before {
                display: none !important;
            }
            .hero-media::after {
                background: linear-gradient(
                    180deg,
                    rgba(12, 18, 22, 0.2) 0%,
                    rgba(12, 18, 22, 0.35) 45%,
                    rgba(8, 12, 14, 0.55) 100%
                );
            }
            .steps, .trust-points, .role-block, .role-block.reverse, .example-grid, .tariff-grid {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            .cta-row .btn { flex: 1 1 12rem; }
            .section-title,
            .section-lead {
                overflow-wrap: anywhere;
                word-break: break-word;
                max-width: 100%;
            }
            .home-info-desk { display: none !important; }
            .home-about-mobile { display: block; }
        }

        /* Phone — iPhone SE…16 Pro Max, Android 360–430 */
        @media (max-width: 560px) {
            section {
                padding-top: clamp(2rem, 5vw, 2.75rem);
                padding-bottom: clamp(2rem, 5vw, 2.75rem);
            }
            .wrap {
                padding-left: calc(0.85rem + var(--sal));
                padding-right: calc(0.85rem + var(--sar));
            }
            .hero-shell {
                padding: 1rem
                         calc(0.7rem + var(--sar))
                         calc(1.5rem + var(--sab))
                         calc(0.7rem + var(--sal));
                gap: 1rem;
                --hero-align-offset: 0;
            }
            .hero-brand {
                font-size: clamp(2rem, 9vw, 2.6rem);
            }
            .hero-guarantee {
                gap: 0.4rem 0.7rem;
                font-size: 0.8rem;
            }
            .hero-copy,
            .hero-card {
                width: 100%;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
                min-width: 0;
            }
            .hero-card {
                margin-top: 0;
                border-radius: 16px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
            }
            .hero-lead {
                max-width: none;
                font-size: clamp(1.45rem, 6.5vw, 1.95rem);
                line-height: 1.2;
            }
            .hero-sub { max-width: none; font-size: 0.95rem; }
            .hero-trust li { font-size: 0.86rem; }
            .hero-card-head {
                padding: 1rem 0.9rem 0;
            }
            .hero-form,
            .wizard-step {
                padding-left: 1rem;
                padding-right: 1rem;
                min-width: 0;
            }
            /* один отступ: у wizard-step внутри формы не дублируем */
            .hero-form .wizard-step {
                padding-left: 0;
                padding-right: 0;
            }
            .hero-exec-form {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
                padding-top: 1.1rem;
            }
            .hero-card.is-search-step,
            .hero-card--exec {
                padding-top: 1.1rem;
            }
            .hero-search-title {
                margin: 0 0 0.85rem !important;
                text-align: left;
            }
            .hero-card-title {
                font-size: clamp(1.2rem, 5.5vw, 1.35rem);
                line-height: 1.2;
            }
            .hero-card-hint {
                font-size: 0.84rem;
                line-height: 1.4;
                margin-bottom: 0.85rem;
            }
            .wizard-steps-pills {
                flex-wrap: nowrap;
                overflow-x: auto;
                overscroll-behavior-x: contain;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 0.25rem;
                padding: 0.3rem;
                margin-bottom: 0.9rem;
            }
            .wizard-steps-pills::-webkit-scrollbar { display: none; }
            .wizard-steps-pills li {
                flex: 0 0 auto;
                padding: 0.35rem 0.4rem;
                gap: 0.3rem;
            }
            .wizard-steps-pills .pill-label {
                display: none;
                max-width: 7.5rem;
            }
            .wizard-steps-pills li.is-active .pill-label {
                display: inline;
                font-size: 0.72rem;
                max-width: 4.8rem;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .wizard-steps-pills .pill-num {
                width: 1.45rem;
                height: 1.45rem;
                font-size: 0.75rem;
            }
            .wizard-nav {
                padding-left: 0.9rem;
                padding-right: 0.9rem;
                gap: 0.5rem;
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            }
            .wizard-nav .btn {
                min-height: 48px;
                font-size: 0.95rem;
                padding-left: 0.65rem;
                padding-right: 0.65rem;
            }
            .hero-search {
                flex-wrap: wrap;
                padding: 0.45rem;
                min-width: 0;
            }
            .hero-search-input {
                flex: 1 1 100%;
                min-width: 0;
                width: 100%;
                padding: 0.6rem 0.55rem !important;
            }
            .hero-search-btn {
                width: 100%;
                min-height: 48px;
            }
            .hero-search-title {
                font-size: clamp(1.35rem, 5.5vw, 1.55rem) !important;
                line-height: 1.2;
                overflow-wrap: anywhere;
            }
            .hero-search-examples {
                font-size: 0.84rem;
                margin-top: 0.15rem;
            }
            .hero-search-examples__list {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.4rem;
            }
            .hero-search-example {
                font-size: 0.82rem;
                padding: 0.55rem 0.55rem;
                min-height: 44px;
                justify-content: center;
                text-align: center;
                border-radius: 12px;
                width: 100%;
            }
            .hero-form input[type="text"],
            .hero-form input[type="number"],
            .hero-form input[type="date"],
            .hero-form input[type="tel"],
            .hero-form input[type="email"],
            .hero-form textarea,
            .hero-form select,
            .hero-form .flex-control {
                max-width: 100%;
            }
            .youdo-cat-picker {
                grid-template-columns: 1fr;
                height: min(320px, 48dvh);
                min-height: 240px;
            }
            .youdo-cat-col + .youdo-cat-col,
            .youdo-cat-col-sub {
                border-left: 0;
                border-top: 1px solid var(--line);
            }
            .youdo-cat-item {
                padding: 0.7rem 0.75rem;
                font-size: 0.9rem;
                min-height: 48px;
            }
            .cta-row { flex-direction: column; }
            .cta-row .btn { width: 100%; flex: none; min-height: 48px; }
            .role-media, .role-media img { min-height: 220px; }
            .chip {
                font-size: 0.88rem;
                padding: 0.55rem 0.9rem;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }
            .chip-row { gap: 0.5rem; }
            .example-card { padding: 1rem; }
            .site-footer .footer-top {
                display: block;
                gap: 0;
                margin-bottom: 0.55rem;
            }
            .site-footer .footer-lead,
            .site-footer .footer-copy__long,
            .site-footer .footer-grid .footer-col--nav {
                position: absolute !important;
                width: 1px !important;
                height: 1px !important;
                padding: 0 !important;
                margin: -1px !important;
                overflow: hidden !important;
                clip: rect(0, 0, 0, 0) !important;
                white-space: nowrap !important;
                border: 0 !important;
            }
            .hero-card .store-badges--hero { display: none !important; }
            .site-footer.site-footer--home .footer-store {
                display: none !important;
            }
            .site-footer .footer-store {
                margin-top: 0.75rem;
            }
            .site-footer .footer-store .store-badges__label {
                margin: 0 0 0.4rem;
                font-size: 0.72rem;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.62);
            }
            .site-footer .footer-store .store-badges__row {
                display: flex;
                flex-wrap: wrap;
                gap: 0.45rem;
            }
            .site-footer .footer-store .store-badge {
                min-height: 44px;
            }
            .site-footer .footer-grid {
                display: block;
                margin-top: 0.65rem;
            }
            .site-footer .footer-col--docs {
                display: flex;
                flex-direction: column;
                gap: 0.35rem;
            }
            .site-footer .footer-col--docs .footer-title {
                margin: 0 0 0.15rem;
                font-size: 0.72rem;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.62);
            }
            .site-footer .footer-col--docs a {
                font-size: 0.82rem;
                line-height: 1.35;
                color: rgba(255, 255, 255, 0.92);
                text-decoration: underline;
                text-underline-offset: 2px;
                padding: 0.15rem 0;
            }
            .site-footer .footer-brand { margin-bottom: 0.35rem; }
            .site-footer .footer-contacts {
                margin-top: 0.25rem;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.25rem 0.75rem;
            }
            .site-footer .footer-contacts a { font-size: 0.84rem; }
            .site-footer .footer-legal { margin-top: 0.35rem; font-size: 0.7rem; }
            .site-footer {
                padding: 0.85rem
                         calc(0.75rem + var(--sar))
                         calc(0.9rem + var(--sab))
                         calc(0.75rem + var(--sal));
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                margin-top: 0.55rem;
                padding-top: 0.55rem;
            }
            .site-footer .footer-copy { font-size: 0.7rem; max-width: none; }
            .hero-errors {
                margin-left: 0.9rem;
                margin-right: 0.9rem;
            }
            .done-feed-list {
                -webkit-overflow-scrolling: touch;
            }
        }

        /* Узкие: SE / 360 Android / Fold cover */
        @media (max-width: 380px) {
            .hero-shell {
                padding-left: calc(0.55rem + var(--sal));
                padding-right: calc(0.55rem + var(--sar));
            }
            .hero-card-head,
            .hero-form,
            .wizard-nav {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
            .hero-form .wizard-step {
                padding-left: 0;
                padding-right: 0;
            }
            .hero-exec-form {
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }
            .hero-card-hint { font-size: 0.8rem; }
            .wizard-nav .btn { font-size: 0.9rem; }
            .wizard-steps-pills li.is-active .pill-label { max-width: 4.2rem; }
        }

        /* Landscape phone / короткий экран (iOS Safari + Android Chrome) */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                align-items: stretch;
            }
            .hero-shell {
                padding-top: 0.75rem;
                padding-bottom: calc(0.85rem + var(--sab));
            }
            .hero-brand { font-size: 1.65rem; }
            .hero-lead { font-size: 1.2rem; max-width: none; }
            .hero-sub { font-size: 0.88rem; }
            .hero-guarantee { display: none; }
            .hero-media { animation: none; transform: none; }
        }

        /* Touch: без «залипания» :hover на Android */
        @media (hover: none) and (pointer: coarse) {
            .btn:hover { transform: none; }
            .masters-card:hover {
                transform: none;
                box-shadow: 0 8px 22px rgba(26, 31, 36, 0.05);
            }
            .role-block:hover .role-media img { transform: none; }
            .chip:hover {
                border-color: var(--line);
                background: var(--paper);
            }
            .chip:active {
                border-color: var(--accent);
                background: #e8f3ef;
            }
            .btn:active { transform: scale(0.98); }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .btn:hover { transform: none; }
            .hero-inner > *,
            .hero-shell > *,
            .hero-stage,
            .hero-card,
            .hero-media { animation: none !important; transform: none !important; }
            .role-block:hover .role-media img { transform: none; }
            .site-header nav { transition: none; }
        }

/* Главная: одна карточка + вкладки на любой ширине */
.hero-role-tabs { display: grid; }
.hero-entry--dual:not(.is-customer-flow) {
    grid-template-columns: 1fr;
}
.hero-entry--dual[data-active-role="customer"] > [data-role-panel="contractor"],
.hero-entry--dual[data-active-role="contractor"] > [data-role-panel="customer"] {
    display: none !important;
}
.hero-entry.is-customer-flow .hero-role-tabs { display: none !important; }
.hero-stage:has(.hero-entry--dual:not(.is-customer-flow)) {
    width: min(100%, 42rem);
}
.wizard-step[data-step="1"] .hero-search-btn,
#service-find.hero-search-btn {
    width: 100%;
    margin: 0.15rem 0 0;
    min-height: 50px;
}
.hero-search { margin-bottom: 0.65rem; }
.hero-search-examples { margin: 0 0 0.75rem; }

@media (max-width: 1024px) {
    .home-info-desk.home-keep-mobile { display: block !important; }
    .home-about-mobile { display: none !important; }
    .examples.home-keep-mobile .example-card:nth-child(n+4) { display: none !important; }
    .done-feed.home-keep-mobile .done-feed-item:nth-child(n+4) { display: none !important; }
}

/* ПК: заголовок слева на тёмном поле, карточка под ним, гарантии сеткой 3×2 */
@media (min-width: 1025px) {
    .hero-stage {
        margin-inline: 0 auto;
        align-items: flex-start;
    }
    .hero-lead,
    .hero-sub {
        margin-inline: 0;
        text-align: left;
    }
    .hero-lead {
        max-width: 16ch;
        font-size: clamp(2.05rem, 3.6vw, 2.7rem);
        line-height: 1.12;
    }
    .hero-sub {
        max-width: 32ch;
        font-size: 1.08rem;
    }
    .hero-guarantee {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 0.55rem 0.85rem;
        width: 100%;
    }
    .hero-guarantee span {
        min-width: 0;
        white-space: nowrap;
        font-size: 0.82rem;
    }
    .done-feed {
        padding: 3.25rem 0 3.5rem;
    }
    .done-feed-intro {
        max-width: none;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "kicker cta"
            "title cta"
            "lead cta"
            "pills pills";
        column-gap: 2.25rem;
        row-gap: 0.35rem;
        align-items: center;
        text-align: left;
        padding: 1.85rem 2.25rem 1.95rem;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: 0 16px 40px rgba(26, 31, 36, 0.06);
    }
    .done-feed-kicker { grid-area: kicker; }
    .done-feed-intro .section-title {
        grid-area: title;
        margin: 0;
    }
    .done-feed-intro .section-lead {
        grid-area: lead;
        margin: 0;
        max-width: 54ch;
    }
    .done-feed-pills {
        grid-area: pills;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        margin: 1rem 0 0;
        gap: 0.55rem;
    }
    .done-feed-pills li {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        padding: 0.5rem 0.55rem;
        border-radius: 12px;
        line-height: 1.25;
        white-space: nowrap;
    }
    .done-feed-cta {
        grid-area: cta;
        margin: 0;
        justify-content: flex-end;
        align-self: center;
    }
    .done-feed-cta .btn {
        min-width: 15rem;
    }
}
