/* Главная страница: собрано из 18 инлайновых блоков, палитра сведена к токенам */
:root{
  --r-s: 14px;
  --r-m: 20px;
  --r-l: 24px;

  --bb-sky: #79B5D1;
  --bb-teal: #4E8FAA;
  --bb-teal-deep: #395A6A;
  --bb-navy: #1E4D6B;
  --bb-ink: #1F2A33;
  --bb-muted: #5A6470;
  --bb-muted-2: #7B8794;
  --bb-line: #DAF2FD;
  --bb-bg: #F4F9FB;
}
/* MOBILE STABILITY FIX */
        html {
            overflow-x: hidden !important;
            max-width: 100vw !important;
        }

        body {
            overflow-x: hidden !important;
            max-width: 100vw !important;
            position: relative !important;
        }

        @media (max-width: 900px) {
            * {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            /* Исключения для flex/grid/svg */
            svg,
            canvas,
            video,
            iframe,
            .marquee-track,
            .ba-track,
            .city-modal,
            .city-modal-overlay,
            .bb-map-popup,
            .bb-map-wrap {
                max-width: none !important;
            }
        }

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

        :root {
            --blue: var(--bb-sky);
            --blue-light: #A1CBDF;
            --blue-pale: #D8EDF5;
            --blue-ultra: #EFF7FB;
            --accent: var(--bb-navy);
            --accent-hover: #13354B;
            --dark: #2e2e2e;
            --mid: #646464;
            --white: #FFFFFF;
            --cream: #faf9f7;
            --bg-main: #F0F8FC;
            --border: rgba(121, 181, 209, 0.18);
            --radius-sm: 16px;
            --radius-md: 24px;
            --radius-lg: 32px;
        }

        /* ─── UNIFIED CONTENT CONTAINER (added 2026-05-11) ───
           Centers section content to a single 1200px column with fluid padding.
           Each section wraps its content in <div class="container">…</div>;
           full-bleed backgrounds remain on the <section>. */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 52px);
            width: 100%;
            box-sizing: border-box;
        }
        @media (max-width: 768px) {
            .container { padding: 0 16px; }
        }

        /* Section-specific layouts moved off <section> onto the inner .container */
        .offer-section .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .trust-section .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
        }
        @media (max-width: 900px) {
            .offer-section .container { grid-template-columns: 1fr; gap: 40px; }
            .trust-section .container { flex-direction: column; gap: 32px; text-align: center; }
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--dark);
            background: var(--bg-main);
            overflow-x: hidden;
            position: relative;
        }

        /* ─── BLOBS ─── */
        .blob-container {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .bg-blob {
            position: absolute;
            filter: blur(100px);
            border-radius: 50%;
            opacity: 0.55;
            animation: floatBlob 25s infinite alternate ease-in-out;
        }

        .bg-blob.b1 {
            top: -10%;
            left: -10%;
            width: 55vw;
            height: 55vw;
            background: rgba(161, 203, 223, 0.4);
        }

        .bg-blob.b2 {
            top: 30%;
            right: -15%;
            width: 45vw;
            height: 45vw;
            background: rgba(210, 125, 103, 0.12);
            animation-delay: -7s;
        }

        .bg-blob.b3 {
            bottom: -10%;
            left: 10%;
            width: 60vw;
            height: 60vw;
            background: rgba(121, 181, 209, 0.3);
            animation-delay: -14s;
        }

        @keyframes floatBlob {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(6%, 10%) scale(1.15);
            }
        }

        /* ─── ORGANIC SHAPES ─── */
        .organic-shape {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            transition: border-radius 1.5s ease-in-out;
        }

        .organic-shape:hover,
        *:hover>.organic-shape {
            border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
        }

        /* ─── SCROLL PROGRESS ─── */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--accent);
            z-index: 1000;
            transition: width 0.1s;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            padding: 0 52px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            mix-blend-mode: normal;
            transition: all 0.3s ease;
        }

        header .header-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 500;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.04em;
            transition: color 0.3s;
        }

        .logo em {
            font-style: italic;
        }

        header.scrolled .logo {
            color: var(--dark);
        }

        header.scrolled .logo em {
            color: var(--blue);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.2s;
        }

        header.scrolled .nav-link {
            color: var(--dark);
        }

        .nav-link:hover {
            color: var(--blue-light);
        }

        header.scrolled .nav-link:hover {
            color: var(--accent);
        }

        /* FIX 11: Кнопка в хедере — прозрачная на светлом фоне */
        .nav-btn {
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            border: 1.5px solid rgba(255, 255, 255, 0.7);
            background: transparent;
            color: white;
            text-decoration: none;
            transition: all 0.25s;
            cursor: pointer;
            text-transform: uppercase;
        }

        .nav-btn:hover {
            background: white;
            color: var(--accent);
            border-color: white;
        }

        header.scrolled .nav-btn {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 4px 16px rgba(30, 77, 107, 0.3);
        }

        header.scrolled .nav-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(30, 77, 107, 0.4);
        }

        /* ─── BURGER MENU (FIX 4) ─── */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 600;
            /* a11y: ensure 44x44pt touch target (Apple HIG) */
            min-width: 44px;
            min-height: 44px;
            align-items: center;
            justify-content: center;
        }

        .burger span {
            width: 24px;
            height: 2px;
            background: white;
            transition: all 0.3s;
            display: block;
            transform-origin: center;
        }

        header.scrolled .burger span {
            background: var(--dark);
        }

        .burger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background: var(--dark);
        }

        .burger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .burger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background: var(--dark);
        }

        .mobile-nav {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 499;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .mobile-nav.open {
            transform: translateY(0);
        }

        .mobile-nav a {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 400;
            color: var(--dark);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .mobile-nav .mobile-nav-btn {
            margin-top: 16px;
            padding: 16px 40px;
            background: var(--accent);
            color: white;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            letter-spacing: 0.06em;
        }

        /* ─── HERO ─── */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-photo {
            position: absolute;
            inset: 0;
            background-image: url('/image/catalog/home/hero.jpg?v=old');
            background-size: cover;
            background-position: center;
            transform: scale(1.05);
            will-change: transform;
            /* FIX 5: placeholder цвет до загрузки */
            background-color: var(--dark);
        }

        .hero-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            /* Текст слева на светлом фото — оверлей плотнее со стороны контента (2026-05-25). */
            background: linear-gradient(100deg, rgba(15, 25, 35, 0.78) 0%, rgba(15, 25, 35, 0.55) 45%, rgba(20, 30, 40, 0.2) 100%);
        }

        /* ===== 2026-07-14: hero atmosphere (glow + grain + vignette + parallax) ===== */
        .hero-glow {
            position: absolute; inset: 0; pointer-events: none;
            z-index: 2; opacity: 0.9;
            mix-blend-mode: soft-light;
            will-change: transform, opacity;
        }
        .hero-glow-top {
            background: radial-gradient(52% 46% at 78% 20%,
                rgba(255, 220, 180, 0.55) 0%,
                rgba(255, 220, 180, 0) 68%);
            animation: bb-hero-glow-a 22s ease-in-out infinite;
        }
        .hero-glow-bottom {
            background: radial-gradient(58% 55% at 16% 82%,
                rgba(140, 190, 230, 0.6) 0%,
                rgba(140, 190, 230, 0) 70%);
            animation: bb-hero-glow-b 26s ease-in-out infinite;
        }
        @keyframes bb-hero-glow-a {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1);    opacity: 0.75; }
            50%      { transform: translate3d(-4%, 3%, 0) scale(1.08); opacity: 1;    }
        }
        @keyframes bb-hero-glow-b {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1);    opacity: 0.75; }
            50%      { transform: translate3d(5%, -4%, 0) scale(1.1); opacity: 1;    }
        }
        .hero-grain {
            position: absolute; inset: 0; pointer-events: none; z-index: 2;
            opacity: 0.05;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
            background-size: 180px 180px;
        }
        .hero-vignette {
            position: absolute; inset: 0; pointer-events: none; z-index: 2;
            background: radial-gradient(120% 90% at 50% 42%,
                transparent 55%,
                rgba(10, 15, 20, 0.32) 100%);
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-glow { animation: none !important; }
            .hero-photo { transform: scale(1.05) !important; }
        }
        /* ===== /hero atmosphere ===== */

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 0 52px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 40px;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
        }

        .hero-tag::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--accent);
        }

        h1.hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 400;
            line-height: 1.05;
            color: white;
            letter-spacing: -0.01em;
            margin-bottom: 28px;
            max-width: 800px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
        }

        h1.hero-title em {
            font-style: italic;
            font-weight: 400;
            color: var(--blue-pale);
        }

        .hero-desc {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            max-width: 480px;
            margin-bottom: 40px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
        }

        .hero-desc strong {
            color: white;
            font-weight: 500;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.04em;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-family: 'Manrope', sans-serif;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 8px 32px rgba(30, 77, 107, 0.3);
        }

        .hero-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(30, 77, 107, 0.5);
        }

        .hero-cta-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 260px;
            line-height: 1.4;
        }

        .hero-trust-badges {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 999px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 13px;
            color: white;
            font-weight: 500;
        }

        .hero-trust-badge strong {
            font-weight: 700;
            color: white;
        }

        .hero-trust-badge .stars {
            color: #f5c842;
            font-size: 14px;
            letter-spacing: 1px;
            line-height: 1;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.6);
            z-index: 3;
        }

        .scroll-mouse {
            width: 24px;
            height: 36px;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            border-radius: var(--r-s);
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 6px;
            background: var(--accent);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s infinite ease-in-out;
        }

        @keyframes scrollWheel {
            0% {
                top: 6px;
                opacity: 1;
            }

            100% {
                top: 20px;
                opacity: 0;
            }
        }

        /* ─── STRIP / MARQUEE removed 2026-05-20 ─── */

        /* ─── TRUST SECTION ─── */
        .trust-section {
            padding: 64px 0;
            background: var(--blue);
        }

        .trust-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 3.5vw, 52px);
            font-weight: 300;
            line-height: 1.05;
            color: white;
            flex-shrink: 0;
            max-width: 360px;
        }

        .trust-headline em {
            font-style: italic;
            color: var(--blue-ultra);
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            flex: 1;
            max-width: 680px;
        }

        .trust-stat {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* FIX 8: счётчики — задаём data-target */
        .trust-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 4vw, 56px);
            font-weight: 400;
            color: white;
            line-height: 1;
            display: block;
        }

        .trust-stat-label {
            font-size: 13px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 8px;
            line-height: 1.4;
            display: block;
        }

        /* ─── PROCEDURES (Horizontal Scroll) ─── */
        .proc-section {
            padding: 64px 0;
            background: transparent;
        }

        .proc-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .proc-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            color: var(--dark);
            margin-bottom: 40px;
            line-height: 1.05;
        }

        .proc-title em {
            font-style: italic;
            color: var(--blue);
        }

        .proc-grid {
            display: flex;
            flex-direction: row;
            gap: 32px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 32px;
            scrollbar-width: thin;
            scrollbar-color: var(--blue-light) transparent;
            -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
            mask-image: linear-gradient(to right, black 85%, transparent 100%);
        }

        .proc-grid::-webkit-scrollbar {
            height: 6px;
        }

        .proc-grid::-webkit-scrollbar-track {
            background: rgba(121, 181, 209, 0.1);
            border-radius: 4px;
        }

        .proc-grid::-webkit-scrollbar-thumb {
            background: var(--blue-light);
            border-radius: 4px;
        }

        .proc-card {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            background: #FFFFFF;
            border: none;
            padding: 0;
            box-shadow: 0 4px 16px rgba(121, 181, 209, 0.08);
            transition: box-shadow 0.3s ease;
            flex: 0 0 380px;
            scroll-snap-align: start;
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .proc-card:hover {
            transform: none;
            box-shadow: 0 8px 24px rgba(121, 181, 209, 0.16);
            background: #FFFFFF;
            border-color: transparent;
        }

        .proc-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            padding: 24px;
        }

        .proc-visual {
            width: 100%;
            aspect-ratio: 16/9;
            background-color: var(--blue-ultra);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 0;
            overflow: hidden;
        }

        .proc-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(20, 30, 60, 0.05) 0%, rgba(20, 30, 60, 0.35) 100%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .proc-visual.with-photo::after {
            opacity: 1;
        }

        .proc-visual svg {
            width: 100px;
            height: 100px;
            color: var(--blue);
            stroke-width: 1px;
            transition: transform 0.5s ease;
        }

        .proc-visual.with-photo svg {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 36px;
            height: 36px;
            padding: 9px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--accent);
            border-radius: 50%;
            box-shadow: 0 4px 14px rgba(20, 30, 60, 0.18);
            stroke-width: 1.6px;
            backdrop-filter: blur(4px);
            z-index: 2;
        }

        /* hover-zoom (background-size: 105%) removed 2026-05-20 — фото не сужается */

        .proc-name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(21px, 1.55vw, 25px);
            font-weight: 400;
            color: var(--dark);
            line-height: 1.15;
            overflow-wrap: anywhere;
            hyphens: auto;
        }

        .proc-desc {
            font-size: 15px;
            color: var(--mid);
            line-height: 1.6;
        }

        .proc-tag {
            align-self: flex-start;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(30, 77, 107, 0.1);
            padding: 8px 16px;
            border-radius: var(--r-m);
        }

        /* C.4 — индикатор листабельности карусели методик */
        .proc-grid-wrap {
            position: relative;
        }
        .proc-scroll-next {
            position: absolute;
            top: 50%;
            right: -8px;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bb-sky);
            color: #FFFFFF;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(121, 181, 209, 0.45);
            z-index: 5;
            transition: background 0.3s ease, transform 0.3s ease;
            animation: proc-scroll-hint 2.2s ease-in-out infinite;
        }
        .proc-scroll-next:hover {
            background: #A1CBDF;
            animation: none;
        }
        .proc-scroll-next svg {
            width: 22px;
            height: 22px;
        }
        @keyframes proc-scroll-hint {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50%      { transform: translateY(-50%) translateX(8px); }
        }
        @media (prefers-reduced-motion: reduce) {
            .proc-scroll-next { animation: none; }
        }
        @media (max-width: 768px) {
            .proc-scroll-next { right: 0; width: 40px; height: 40px; }
            .proc-scroll-next svg { width: 18px; height: 18px; }
        }

        /* ─── OFFER ─── */
        .offer-section {
            background: transparent;
            padding: 88px 0;
        }

        .offer-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .offer-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            line-height: 1.05;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .offer-title em {
            font-style: italic;
            color: var(--blue);
        }

        .offer-desc {
            font-size: 15px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--mid);
            max-width: 440px;
            margin-bottom: 28px;
        }

        .offer-list {
            list-style: none;
            padding: 0;
            margin: 0 0 36px;
            max-width: 460px;
        }
        .offer-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 14px;
            font-size: 15px;
            line-height: 1.55;
            color: var(--dark);
            font-family: 'Manrope', sans-serif;
        }
        .offer-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 18px;
            height: 18px;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%2379B5D1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 9.5l3.5 3.5L14.5 5.5'/></svg>");
            background-repeat: no-repeat;
            background-size: contain;
        }

        .offer-badge {
            display: inline-flex;
            align-items: center;
            gap: 24px;
            background: white;
            border-radius: var(--radius-md);
            padding: 24px 32px;
            box-shadow: 0 12px 32px rgba(121, 181, 209, 0.1);
            border: 1px solid var(--border);
        }

        .offer-price {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 500;
            color: var(--accent);
            line-height: 1;
        }

        .offer-price-desc {
            font-size: 13px;
            color: var(--mid);
            line-height: 1.5;
            max-width: 160px;
        }

        .offer-price-desc strong {
            color: var(--dark);
            font-weight: 600;
            display: block;
            margin-bottom: 2px;
        }

        .offer-visual-wrap {
            position: relative;
            width: 100%;
            max-width: 460px;
            margin: 0 auto;
        }

        /* FIX 5: placeholder и аккуратные углы вместо овала */
        .offer-visual {
            position: relative;
            background-image: url('/image/catalog/home/offer-model.png');
            background-color: var(--blue-pale);
            background-size: cover;
            background-position: top center;
            overflow: hidden;
            width: 100%;
            aspect-ratio: 4/5;
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
            z-index: 1;
            border-radius: var(--radius-lg);
        }

        .offer-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(46, 46, 46, 0.5) 0%, transparent 40%);
        }

        .offer-tag {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .offer-tag-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .offer-tag-icon svg {
            width: 24px;
            height: 24px;
            stroke-width: 1.5px;
        }

        .offer-tag-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.3;
        }

        .offer-tag-text span {
            display: block;
            font-size: 12px;
            color: var(--mid);
            font-weight: 400;
            margin-top: 2px;
        }

        /* ─── PRICING ─── */
        .pricing-section {
            padding: 88px 0;
            background: transparent;
            border-top: none;
        }

        .pricing-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 16px;
            text-align: center;
        }

        .pricing-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            color: var(--dark);
            line-height: 1.05;
            text-align: center;
            margin-bottom: 64px;
        }

        .pricing-title em {
            font-style: italic;
            color: var(--blue);
        }

        .pricing-note {
            text-align: center;
            font-size: 13px;
            color: var(--muted, #7a7a7a);
            margin-top: 24px;
            font-style: italic;
            line-height: 1.5;
        }

        /* ─── STICKY MOBILE CTA BAR (T1) ─── */
        .sticky-cta { display: none; }

        @media (max-width: 768px) {
            .sticky-cta {
                display: flex;
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                gap: 10px;
                padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
                background: rgba(250, 249, 247, 0.96);
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                border-top: 1px solid var(--border);
                box-shadow: 0 -8px 24px rgba(46, 46, 46, 0.08);
                z-index: 90;
                transform: translateY(110%);
                transition: transform 0.32s ease;
                pointer-events: none;
            }
            .sticky-cta.visible {
                transform: translateY(0);
                pointer-events: auto;
            }

            .sticky-cta-city {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                padding: 10px 14px;
                border-radius: 30px;
                background: #fff;
                border: 1px solid var(--border);
                color: var(--dark);
                font-size: 12px;
                font-weight: 500;
                font-family: 'Manrope', sans-serif;
                cursor: pointer;
                flex: 0 0 auto;
                white-space: nowrap;
            }
            .sticky-cta-city svg {
                width: 14px;
                height: 14px;
                stroke: var(--accent);
            }

            .sticky-cta-btn {
                flex: 1 1 auto;
                padding: 12px 16px;
                border-radius: 30px;
                background: var(--accent);
                color: #fff;
                border: none;
                font-size: 13px;
                font-weight: 700;
                font-family: 'Manrope', sans-serif;
                cursor: pointer;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                box-shadow: 0 6px 18px rgba(30, 77, 107, 0.32);
            }
            .sticky-cta-btn .price-tag {
                font-size: 11px;
                background: rgba(255, 255, 255, 0.2);
                padding: 3px 8px;
                border-radius: var(--r-s);
                letter-spacing: 0;
            }

            .city-widget-btn { display: none !important; }
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .price-card {
            background: var(--cream);
            border-radius: var(--radius-md);
            padding: 40px 28px;
            border: 1px solid var(--border);
            text-align: relative;
            transition: all 0.3s;
            position: relative;
        }

        .pc-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--accent);
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
            padding: 5px 10px;
            border-radius: var(--r-s);
            box-shadow: 0 4px 10px rgba(30, 77, 107, 0.25);
            z-index: 2;
        }

        .pc-badge.soft {
            background: var(--blue-pale);
            color: var(--accent);
            box-shadow: none;
        }

        .pc-price-old {
            color: rgba(70, 70, 70, 0.5);
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }
        .pc-price-old s { text-decoration: line-through; }

        .price-card.popular {
            border-color: var(--blue-light);
            background: var(--blue-ultra);
            position: relative;
            margin-top: 14px;
            box-shadow: 0 48px 40px rgba(121, 181, 209, 0.15);
            box-sizing: border-box;
            width: 100%;
        }

        .price-card.popular::before {
            content: 'Выбор клиентов';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: var(--r-m);
        }

        .pc-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .pc-price {
            font-size: 40px;
            font-weight: 300;
            color: var(--dark);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .pc-sub {
            font-size: 13px;
            color: var(--mid);
            margin-bottom: 32px;
            min-height: 40px;
        }

        .pc-btn {
            display: block;
            width: 100%;
            padding: 16px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--dark);
            color: var(--dark);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .price-card.popular .pc-btn {
            background: var(--dark);
            color: white;
        }

        .pc-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        /* ─── BEFORE/AFTER ─── */
        .ba-section {
            padding: 88px 0;
            background: transparent;
            overflow: hidden;
            text-align: center;
        }

        .ba-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .ba-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.05;
        }

        .ba-title em {
            font-style: italic;
            color: var(--blue);
        }

        .ba-sub {
            font-size: 15px;
            color: var(--mid);
            margin: 0 auto 56px;
            max-width: 560px;
            line-height: 1.6;
        }

        .ba-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .ba-card {
            position: relative;
            overflow: hidden;
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: 0 4px 18px rgba(20, 30, 60, 0.06);
            display: flex;
            flex-direction: column;
            text-align: left;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .ba-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(20, 30, 60, 0.12);
        }

        .ba-img-wrap {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            background: var(--blue-ultra);
        }

        /* FIX 5: placeholder для before/after */
        .ba-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-color: var(--blue-pale);
            transition: transform 0.6s ease;
        }

        .ba-card:hover .ba-img {
            transform: scale(1.06);
        }

        .ba-img-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(20, 30, 60, 0.55) 0%, rgba(20, 30, 60, 0.0) 45%);
            pointer-events: none;
        }

        .ba-proc {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--dark);
            background: rgba(255, 255, 255, 0.92);
            padding: 6px 10px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
        }

        .ba-result {
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 14px;
            z-index: 2;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.15;
            color: #fff;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        .ba-info {
            padding: 14px 18px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            gap: 12px;
        }

        .ba-sessions {
            font-size: 12px;
            color: var(--mid);
            letter-spacing: 0.02em;
        }

        .ba-sessions span {
            color: var(--dark);
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .ba-track {
                grid-template-columns: repeat(2, 1fr);
                max-width: 720px;
            }
        }

        @media (max-width: 600px) {
            .ba-section {
                padding: 90px 20px;
            }

            .ba-track {
                grid-template-columns: 1fr;
                max-width: 380px;
                gap: 20px;
            }

            .ba-result {
                font-size: 20px;
            }
        }


        /* ─── RESULTS SLIDER (ported from city pages) ─── */
        .results {
            padding: 88px 0;
            background: transparent;
            overflow: hidden;
            text-align: center;
        }

        .results .slider-wrapper {
            position: relative;
            margin-top: 48px;
        }

        .results .slider-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 10px 0 30px;
            -webkit-overflow-scrolling: touch;
        }

        .results .slider-track::-webkit-scrollbar { height: 4px; }
        .results .slider-track::-webkit-scrollbar-thumb {
            background: var(--blue);
            border-radius: var(--r-s);
        }

        .results .results-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(121,181,209,0.25);
            background: rgba(255,255,255,0.85);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            color: var(--bb-teal-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 18px -8px rgba(57,90,106,0.30);
            transition: background .2s, transform .2s, opacity .2s;
        }
        .results .results-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
        .results .results-nav:disabled { opacity: 0.35; cursor: default; }
        .results .results-nav--prev { left: 8px; }
        .results .results-nav--next { right: 8px; }
        @media (min-width: 768px) {
            .results .results-nav--prev { left: 16px; }
            .results .results-nav--next { right: 16px; }
        }
        @media (max-width: 480px) {
            .results .results-nav { width: 38px; height: 38px; }
        }

        .results .results-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 16px;
        }
        .results .results-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: none;
            background: rgba(121,181,209,0.30);
            cursor: pointer;
            padding: 0;
            transition: background .2s, transform .2s, width .25s;
        }
        .results .results-dot.is-active {
            background: var(--blue);
            width: 22px;
            border-radius: 999px;
        }

        .results .result-slide {
            min-width: 85%;
            scroll-snap-align: center;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 40px rgba(121, 181, 209, 0.12);
        }
        @media (min-width: 768px) {
            .results .result-slide { min-width: 450px; }
        }
        .results .result-slide img {
            height: 450px;
            width: 100%;
            object-fit: cover;
            display: block;
        }
        .results .result-label {
            position: absolute;
            bottom: 24px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--dark);
            box-shadow: 0 4px 12px rgba(57, 90, 106, 0.05);
        }
        .results .label-before { left: 24px; }
        .results .label-after  { right: 24px; color: var(--accent); }

        @media (max-width: 600px) {
            .results { padding: 64px 0; }
        }

        /* ─── REVIEWS ─── */
        .reviews-section {
            padding: 88px 0;
            background: transparent;
        }

        .reviews-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
        }

        .reviews-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .reviews-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            color: var(--dark);
            line-height: 1.05;
        }

        .reviews-title em {
            font-style: italic;
            color: var(--blue);
        }

        .reviews-rating {
            text-align: right;
        }

        .reviews-stars {
            font-size: 24px;
            letter-spacing: 4px;
            color: #FFB800;
        }

        .reviews-rating-num {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 400;
            color: var(--dark);
            line-height: 1;
            margin-top: 4px;
        }

        .reviews-rating-sub {
            font-size: 13px;
            color: var(--mid);
            margin-top: 8px;
        }

        .reviews-grid {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 4px 4px 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #c8d8e2 transparent;
        }
        .reviews-grid::-webkit-scrollbar { height: 8px; }
        .reviews-grid::-webkit-scrollbar-thumb { background: #c8d8e2; border-radius: 4px; }
        .reviews-grid::-webkit-scrollbar-track { background: transparent; }

        .review-card {
            background: var(--cream);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: box-shadow 0.3s, transform 0.3s;
            flex: 0 0 360px;
            scroll-snap-align: start;
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

        .review-card:hover {
            box-shadow: 0 16px 40px rgba(121, 181, 209, 0.1);
            transform: translateY(-4px);
            background: white;
        }

        .review-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .review-stars {
            color: #FFB800;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .review-date {
            font-size: 12px;
            color: #aaa;
        }

        .review-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--dark);
            flex: 1;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--blue-ultra);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: var(--blue);
            flex-shrink: 0;
            overflow: hidden;
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark);
        }

        .review-city {
            font-size: 13px;
            color: var(--mid);
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .yandex-badge {
            font-size: 10px;
            font-weight: bold;
            background: #FF0000;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .twogis-badge {
            font-size: 10px;
            font-weight: bold;
            background: #A3C936;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        /* ─── CERTIFICATES ─── */
        .cert-section {
            padding: 48px 0;
        }

        .cert-banner {
            background: var(--accent);
            border-radius: var(--radius-lg);
            padding: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cert-banner::before {
            content: '';
            position: absolute;
            right: -10%;
            top: -50%;
            width: 50%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .cert-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 300;
            color: white;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .cert-info p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 400px;
            line-height: 1.6;
        }

        .cert-btn {
            padding: 18px 40px;
            border-radius: 40px;
            background: white;
            color: var(--dark);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .cert-btn:hover {
            background: var(--accent);
            color: white;
            transform: scale(1.05);
        }

        /* ─── QUIZ ─── */
        .quiz-section {
            padding: 88px 0;
            background: transparent;
            position: relative;
            overflow: hidden;
            border-bottom: none;
        }

        .quiz-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .quiz-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .quiz-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            line-height: 1.05;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .quiz-title em {
            font-style: italic;
            color: var(--blue);
        }

        .quiz-desc {
            font-size: 15px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--mid);
            max-width: 400px;
        }

        .quiz-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: 0 24px 64px rgba(121, 181, 209, 0.1);
        }

        .quiz-step {
            display: none;
        }

        .quiz-step.active {
            display: block;
            animation: fadeUpCard 0.4s ease forwards;
        }

        @keyframes fadeUpCard {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* FIX 7: shake animation */
        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-8px);
            }

            75% {
                transform: translateX(8px);
            }
        }

        .quiz-card.shake {
            animation: shake 0.3s ease;
        }

        .quiz-step-label {
            font-size: 12px;
            color: var(--mid);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 24px;
            letter-spacing: 0.05em;
        }

        .quiz-q {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 500;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 32px;
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 40px;
        }

        .quiz-option {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 24px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: white;
            cursor: pointer;
            font-size: 15px;
            color: var(--dark);
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .quiz-option:hover {
            background: var(--blue-ultra);
            border-color: var(--blue-light);
            transform: translateX(4px);
        }

        .quiz-option.selected {
            background: var(--blue-ultra);
            border-color: var(--accent);
        }

        .quiz-option-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #ccc;
            flex-shrink: 0;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quiz-option.selected .quiz-option-dot {
            border-color: var(--accent);
            background: var(--accent);
        }

        .quiz-option.selected .quiz-option-dot::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }

        .quiz-progress {
            display: flex;
            gap: 8px;
            margin-bottom: 32px;
        }

        .quiz-progress-dot {
            height: 4px;
            flex: 1;
            border-radius: 2px;
            background: var(--border);
            transition: background 0.3s;
        }

        .quiz-progress-dot.done {
            background: var(--accent);
        }

        .quiz-nav {
            display: none;
        }

        .quiz-btn-next {
            padding: 16px 36px;
            border-radius: 40px;
            background: var(--dark);
            color: white;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .quiz-btn-next:hover {
            background: var(--accent);
            box-shadow: 0 12px 32px rgba(30, 77, 107, 0.3);
        }

        /* FIX 1: Форма в квизе */
        .quiz-result {
            display: none;
            text-align: center;
        }

        .quiz-result.active {
            display: block;
            animation: fadeUpCard 0.4s ease forwards;
        }

        .qr-icon {
            width: 64px;
            height: 64px;
            background: var(--accent);
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .qr-icon svg {
            width: 32px;
            height: 32px;
        }

        .quiz-result-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .quiz-result-sub {
            font-size: 15px;
            color: var(--mid);
            margin-bottom: 32px;
            line-height: 1.6;
            max-width: 360px;
            margin-inline: auto;
        }

        /* Форма телефона в квизе */
        .quiz-phone-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 360px;
            margin: 0 auto 24px;
        }

        .quiz-phone-input {
            width: 100%;
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--cream);
            font-size: 16px;
            font-family: 'Manrope', sans-serif;
            outline: none;
            transition: all 0.3s;
        }

        .quiz-phone-input:focus {
            border-color: var(--accent);
            background: white;
            box-shadow: 0 0 0 4px rgba(30, 77, 107, 0.1);
        }

        .quiz-phone-input::placeholder {
            color: #aaa;
        }

        .quiz-submit-btn {
            width: 100%;
            padding: 18px;
            border-radius: 40px;
            background: var(--accent);
            color: white;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-family: 'Manrope', sans-serif;
            transition: all 0.3s;
            box-shadow: 0 8px 32px rgba(30, 77, 107, 0.25);
        }

        .quiz-submit-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(30, 77, 107, 0.4);
        }

        .quiz-skip-link {
            font-size: 13px;
            color: var(--mid);
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .quiz-skip-link:hover {
            color: var(--accent);
        }

        .quiz-sent-msg {
            display: none;
            text-align: center;
            padding: 20px;
            background: rgba(30, 77, 107, 0.06);
            border-radius: var(--radius-sm);
        }

        .quiz-sent-msg p {
            font-size: 15px;
            color: var(--accent);
            font-weight: 500;
        }

        /* ─── FAQ ─── (audit 2026-05-25: на 3 вопроса 2-колоночный layout смотрелся тонко) */
        .faq-section {
            padding: 56px 0;
            background: transparent;
        }

        .faq-inner {
            display: block;
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-inner > .faq-left { text-align: center; margin-bottom: 32px; }
        .faq-inner > .faq-left .faq-desc { max-width: 560px; margin-left: auto; margin-right: auto; }

        .faq-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 16px;
        }

        .faq-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            color: var(--dark);
            line-height: 1.05;
            margin-bottom: 24px;
        }

        .faq-title em {
            font-style: italic;
            color: var(--blue);
        }

        .faq-desc {
            font-size: 15px;
            color: var(--mid);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 28px 0;
            cursor: pointer;
            gap: 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            transition: color 0.2s;
        }

        .faq-q:hover {
            color: var(--accent);
        }

        .faq-q.open {
            color: var(--accent);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
            color: var(--dark);
        }

        .faq-q.open .faq-icon {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            transform: rotate(45deg);
        }

        .faq-a {
            font-size: 15px;
            line-height: 1.8;
            color: var(--mid);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            padding: 0 48px 0 0;
        }

        .faq-a.open {
            max-height: 400px;
            padding-bottom: 28px;
        }

        /* ─── FOOTER (2026-06-26: compact, all 14 cities) ─── */
        .site-footer {
            padding: 48px 52px 24px;
            background: var(--dark);
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .footer-cities-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 10px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-cities-row a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            padding: 7px 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            transition: background 0.18s, color 0.18s, border-color 0.18s;
            white-space: nowrap;
        }
        .footer-cities-row a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.25);
        }
        .footer-nav-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
        }
        .footer-nav-row a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color 0.18s;
        }
        .footer-nav-row a:hover { color: #fff; }
        .footer-contacts-inline {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-contacts-inline a {
            color: inherit;
            text-decoration: none;
            transition: color 0.18s;
        }
        .footer-contacts-inline a:hover { color: #fff; }

        .footer-cities-btn {
            align-self: flex-start;
            font-family: inherit;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            padding: 10px 18px;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }

        .footer-cities-btn:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        .footer-brand .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 400;
            color: white;
            letter-spacing: 0.04em;
        }

        .footer-brand .footer-logo em {
            font-style: italic;
            color: var(--blue-pale);
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 16px;
            line-height: 1.6;
            max-width: 300px;
        }

        .footer-col-title {
            font-size: 11px;
            letter-spacing: 0.16em;
            font-weight: 600;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 24px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.65);
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }

        .footer-socials a:hover {
            color: #fff;
        }

        .footer-socials a[data-brand="vk"]:hover {
            background: #0077FF;
        }

        .footer-socials a[data-brand="tg"]:hover {
            background: #229ED9;
        }

        .footer-socials a[data-brand="max"]:hover {
            background: #FF1F8E;
        }

        .footer-socials svg {
            width: 22px;
            height: 22px;
        }

        .footer-bottom {
            padding: 24px 52px;
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ─── MOBILE STICKY CTA ─── */
        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 16px 20px;
            border-top: 1px solid var(--border);
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.05);
            padding-bottom: calc(16px + env(safe-area-inset-bottom));
        }

        .msc-info {
            display: flex;
            flex-direction: column;
        }

        .msc-price {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
        }

        .msc-desc {
            font-size: 11px;
            font-weight: 500;
            color: var(--mid);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 2px;
        }

        .msc-btn {
            padding: 14px 28px;
            background: var(--dark);
            color: white;
            font-weight: 600;
            font-size: 13px;
            border: none;
            border-radius: 40px;
            text-transform: uppercase;
            flex-shrink: 0;
            cursor: pointer;
        }

        /* ─── GEO TOAST ─── */
        .geo-toast {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 9900;
            background: white;
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--border);
            transform: translateY(150%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            max-width: 360px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .geo-toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .geo-toast-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.3;
        }

        .geo-toast-btns {
            display: flex;
            gap: 12px;
        }

        .gt-btn {
            padding: 12px 20px;
            border-radius: var(--r-m);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
            text-align: center;
            border: none;
        }

        .gt-btn.primary {
            background: var(--accent);
            color: white;
        }

        .gt-btn.primary:hover {
            background: var(--accent-hover);
            box-shadow: 0 8px 24px rgba(30, 77, 107, 0.3);
        }

        .gt-btn.secondary {
            background: var(--cream);
            color: var(--dark);
            border: 1px solid var(--border);
        }

        .gt-btn.secondary:hover {
            background: var(--blue-ultra);
            border-color: var(--blue-light);
        }

        /* ─── MODAL ─── */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 9990;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 600px;
            padding: 24px 48px 40px;
            position: relative;
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.3s ease;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }

        .modal-overlay.open .modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            cursor: pointer;
            color: var(--dark);
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--blue-ultra);
            color: var(--accent);
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 500;
            color: var(--dark);
            margin: 0 0 16px;
            line-height: 40px;
            min-height: 40px;
            text-align: center;
            padding: 0 56px;
        }

        /* ── inline lead form внутри city-modal (audit 2026-05-25) ── */
        .modal-lead-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }
        .modal-lead-form .modal-lead-city,
        .modal-lead-form .modal-lead-submit { grid-column: 1 / -1; }
        .modal-lead-input {
            width: 100%;
            padding: 13px 14px;
            border: 1px solid #d6dee4;
            border-radius: var(--r-s);
            font-size: 14px;
            font-family: 'Manrope', sans-serif;
            color: var(--dark);
            background: #fff;
            transition: border-color .15s;
        }
        .modal-lead-input:focus {
            outline: none;
            border-color: var(--accent);
        }
        select.modal-lead-input {
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23395A6A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;
        }
        .modal-lead-submit {
            padding: 14px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Manrope', sans-serif;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .2s;
        }
        .modal-lead-submit:hover { background: var(--accent-hover); }
        .modal-lead-submit:disabled { opacity: 0.6; cursor: wait; }
        .modal-lead-status {
            grid-column: 1 / -1;
            min-height: 18px;
            font-size: 13px;
            color: #888;
            text-align: center;
        }
        .modal-lead-status.ok    { color: #2c9966; font-weight: 500; }
        .modal-lead-status.err   { color: #d35; }
        .modal-lead-form.submitted .modal-lead-input,
        .modal-lead-form.submitted .modal-lead-submit { display: none; }
        .modal-lead-consent {
            grid-column: 1 / -1;
            margin: 6px 0 0;
            font-size: 12px;
            line-height: 1.5;
            color: #94A3B8;
            text-align: center;
        }
        .modal-lead-consent a {
            color: var(--bb-sky);
            text-decoration: none;
            border-bottom: 1px dotted rgba(121, 181, 209, 0.5);
        }

        @media (max-width: 600px) {
            .modal-lead-form { grid-template-columns: 1fr; gap: 8px; }
        }

        .modal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            overflow-y: auto;
            /* 2026-07-21: запас сверху/снизу — иначе hover-подъём карточки (translateY -2px + тень)
               обрезался краем скролл-контейнера у первого и последнего ряда.
               Отрицательные margin гасят запас, чтобы отступы модалки не изменились. */
            padding: 6px 8px 10px 0;
            margin: -6px -8px -10px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--blue-light) transparent;
        }

        .modal-grid::-webkit-scrollbar {
            width: 4px;
        }

        .modal-grid::-webkit-scrollbar-track {
            background: rgba(121, 181, 209, 0.1);
            border-radius: 4px;
        }

        .modal-grid::-webkit-scrollbar-thumb {
            background: var(--blue-light);
            border-radius: 4px;
        }

        .modal-search-wrapper {
            position: relative;
            margin-bottom: 16px;
        }

        .modal-search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: var(--mid);
            transition: color 0.3s;
            pointer-events: none;
        }

        .modal-search-wrapper:focus-within .modal-search-icon {
            color: var(--accent);
        }

        .modal-search {
            width: 100%;
            padding: 16px 20px 16px 48px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--cream);
            font-size: 15px;
            transition: all 0.3s;
            outline: none;
            font-family: 'Manrope', sans-serif;
        }

        .modal-search:focus {
            border-color: var(--accent);
            background: white;
            box-shadow: 0 0 0 4px rgba(30, 77, 107, 0.1);
        }

        .modal-city-btn {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            padding: 16px 20px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: white;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-city-btn:hover {
            background: var(--blue-ultra);
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(121, 181, 209, 0.15);
        }

        .modal-city-btn.disabled {
            opacity: 0.6;
            cursor: default;
            background: var(--cream);
            border-color: transparent;
        }

        .modal-city-btn.disabled:hover {
            transform: none;
            box-shadow: none;
            border-color: transparent;
        }

        .mcb-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mcb-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .mcb-arrow {
            color: var(--accent);
            opacity: 0.45;
            transform: translateX(0);
            transition: all 0.3s;
            font-size: 20px;
        }

        .modal-city-btn:hover:not(.disabled) .mcb-arrow {
            opacity: 1;
            transform: translateX(4px);
        }

        .mcb-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 32px;
            color: var(--mid);
            font-size: 14px;
        }

        .mcb-tag-soon {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.06);
            color: var(--mid);
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: 0.05em;
        }

        .mcb-tag-geo {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            background: rgba(30, 77, 107, 0.1);
            color: var(--accent);
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: 0.05em;
        }

        .modal-section-title {
            grid-column: 1 / -1;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--mid);
            letter-spacing: 0.15em;
            margin-top: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }

        /* ─── MOBILE ─── */
        @media (max-width: 900px) {
            header {
                padding: 0 20px;
            }

            .nav-link {
                display: none;
            }

            .nav-btn {
                display: none;
            }

            .burger {
                display: flex;
            }

            /* hero height fix 2026-05-25: на телефоне hero заполняет видимый экран.
               svh — small viewport height, учитывает мобильные браузерные панели; vh — фолбэк. */
            .hero {
                height: auto;
                min-height: 100vh;
                min-height: 100svh;
                padding: 56px 0 48px;
                align-items: center;
            }

            .hero-content {
                padding: 0 20px;
                margin-top: 0;
                text-align: left;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-tag {
                margin: 0 0 14px;
                font-size: 10px;
                letter-spacing: 0.18em;
            }

            .hero-tag::before {
                display: inline-block;
            }

            .hero-actions {
                justify-content: flex-start;
                gap: 10px;
                margin-bottom: 8px;
            }

            .hero-trust-badges {
                justify-content: flex-start;
                gap: 8px;
                max-width: 340px;
                margin-bottom: 18px;
            }

            .hero-title {
                font-size: clamp(34px, 9.5vw, 44px);
                margin-bottom: 18px;
                max-width: 620px;
                line-height: 1.1;
            }

            .hero-desc {
                margin-bottom: 20px;
                font-size: 17px;
                line-height: 1.6;
            }

            .hero-cta {
                padding: 16px 28px;
            }

            .hero-cta-sub {
                max-width: 220px;
                font-size: 12px;
                line-height: 1.35;
                text-align: left;
            }

            .hero-trust-badge {
                padding: 8px 12px;
                gap: 6px;
                font-size: 11px;
                line-height: 1.2;
            }

            .tags-strip {
                padding: 20px 0;
            }

            .tags-strip::after {
                width: 40px;
            }

            .tag-chip {
                font-size: 12px;
                padding: 8px 16px;
            }

            .trust-section {
                flex-direction: column;
                padding: 40px 20px;
                gap: 32px;
                text-align: center;
            }

            /* mobile audit 2026-05-25: 3 числа в ряд вместо столбца — −250px скролла */
            .trust-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                width: 100%;
            }
            .trust-stat { padding: 12px 4px; }
            .trust-stat-num { font-size: clamp(26px, 8vw, 36px) !important; }
            .trust-stat-label { font-size: 11px !important; line-height: 1.3 !important; }

            .proc-section {
                padding: 40px 0;
            }

            .proc-eyebrow,
            .proc-title {
                padding: 0 20px;
            }

            .proc-grid {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 0 20px 24px 20px;
                overflow-x: visible;
                scroll-snap-type: none;
                -webkit-mask-image: none;
                mask-image: none;
                touch-action: pan-y;
            }

            .proc-card {
                flex: 1 1 auto;
                width: 100%;
                max-width: 100%;
                gap: 20px;
                scroll-snap-align: none;
            }

            .proc-scroll-next { display: none !important; }

            .proc-visual {
                width: 100%;
                aspect-ratio: 16/9;
            }

            .proc-name {
                font-size: 22px;
            }

            .offer-section {
                grid-template-columns: 1fr;
                padding: 40px 20px;
                gap: 32px;
            }

            .offer-badge {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                width: 100%;
            }

            .offer-visual-wrap {
                max-width: 320px;
            }

            .pricing-section {
                padding: 40px 20px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .ba-section {
                padding: 40px 20px;
            }

            .ba-track {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                margin: 0 -20px;
                padding: 0 20px 24px;
                scrollbar-width: none;
            }

            .ba-track::-webkit-scrollbar {
                display: none;
            }

            .ba-card {
                min-width: 86vw;
                max-width: 360px;
                scroll-snap-align: center;
            }

            /* (removed 2026-05-25) mobile .cities-section / .cs-* — секция удалена */

            .reviews-section {
                padding: 40px 20px;
            }

            .reviews-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .reviews-rating {
                text-align: left;
            }

            /* mobile audit 2026-05-25: 6 отзывов в столбец = ~1200px, превращаем в горизонтальный скролл */
            .reviews-grid {
                display: flex;
                grid-template-columns: none;
                gap: 12px;
                overflow-x: auto;
                overflow-y: hidden;
                padding: 4px 4px 14px;
                margin: 0 -20px;
                padding-left: 20px;
                padding-right: 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
                scrollbar-color: #c8d8e2 transparent;
            }
            .reviews-grid::-webkit-scrollbar { height: 6px; }
            .reviews-grid::-webkit-scrollbar-thumb { background: #c8d8e2; border-radius: 3px; }
            .reviews-grid > .review-card {
                flex: 0 0 84vw;
                max-width: 320px;
                scroll-snap-align: start;
            }

            .cert-section {
                padding: 20px;
            }

            .cert-banner {
                padding: 40px 24px;
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .cert-banner::before {
                display: none;
            }

            .quiz-section {
                padding: 40px 20px;
            }

            .quiz-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .quiz-card {
                /* 2026-06-23: убираем 'окошко в окошке' на моб — опции лежат прямо на bg секции */
                background: transparent;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                padding: 0;
            }

            .faq-section {
                padding: 40px 20px;
            }

            .faq-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .site-footer {
                padding: 36px 20px 20px;
                gap: 24px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-cities-row { padding-top: 20px; gap: 6px 8px; }
            .footer-cities-row a { font-size: 12px; padding: 6px 12px; }

            .footer-bottom {
                padding: 24px 20px calc(24px + 60px);
                flex-direction: column;
                gap: 8px;
            }

            .mobile-sticky-cta {
                display: flex;
            }

            .geo-toast {
                bottom: calc(20px + 70px);
                left: 20px;
                right: 20px;
                max-width: none;
            }

            .modal-content {
                max-width: min(92vw, 420px);
                padding: 18px 14px 14px;
                border-radius: var(--r-m);
                max-height: 82vh;
            }

            .modal-grid {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 6px 0 10px;
                margin: -6px 0 -10px;
            }

            .modal-close {
                top: 10px;
                right: 10px;
                width: 44px;
                height: 44px;
            }

            /* tappability fix 2026-05-25: крестик 32px не дотягивал до 44×44. */
            .city-modal-close {
                top: 10px;
                right: 10px;
                width: 44px;
                height: 44px;
                font-size: 22px;
            }

            .modal-title {
                font-size: 26px;
                margin-bottom: 14px;
                padding-right: 40px;
                text-align: left;
            }

            .modal-search-wrapper {
                margin-bottom: 14px;
            }

            .modal-search {
                padding: 14px 16px 14px 42px;
                font-size: 14px;
                border-radius: var(--r-s);
            }

            .modal-search-icon {
                left: 14px;
                width: 18px;
                height: 18px;
            }

            .modal-city-btn {
                padding: 14px 16px;
                border-radius: var(--r-s);
            }

            .modal-city-btn .mcb-name {
                font-size: 15px;
            }

            .modal-city-btn .mcb-tag-soon {
                font-size: 12px;
            }
        }

        /* ─── ANIMATIONS ─── */
        .fade-in {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
            filter: blur(12px);
            transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform, filter;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .fade-in.visible .proc-card,
        .fade-in.visible .price-card,
        .fade-in.visible .ba-card,
        .fade-in.visible .review-card {
            animation: organicCascade 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            opacity: 0;
            transform: translateY(30px);
            filter: blur(8px);
        }

        @keyframes organicCascade {
            0% {
                opacity: 0;
                transform: translateY(30px);
                filter: blur(8px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .fade-in.visible>*:nth-child(1) {
            animation-delay: 0.1s;
        }

        .fade-in.visible>*:nth-child(2) {
            animation-delay: 0.2s;
        }

        .fade-in.visible>*:nth-child(3) {
            animation-delay: 0.3s;
        }

        .fade-in.visible>*:nth-child(4) {
            animation-delay: 0.4s;
        }

        /* ─── DECORATIONS (local accents) ─── */
        .deco-host {
            position: relative;
            isolation: isolate;
        }

        .deco-host>*:not(.deco-blob-l):not(.deco-dots):not(.deco-grid):not(.deco-quote):not(.deco-numeral):not(.deco-wave-top):not(.deco-wave-bottom):not(.deco-spark) {
            position: relative;
            z-index: 1;
        }

        .deco-blob-l {
            position: absolute;
            border-radius: 50%;
            filter: blur(50px);
            pointer-events: none;
            z-index: 0;
            opacity: 0.55;
        }

        .deco-blob-l.l-blue {
            background: rgba(121, 181, 209, 0.45);
        }

        .deco-blob-l.l-pale {
            background: rgba(216, 237, 245, 0.9);
        }

        .deco-blob-l.l-cream {
            background: rgba(250, 240, 220, 0.7);
        }

        .deco-blob-l.l-accent {
            background: rgba(30, 77, 107, 0.16);
        }

        .deco-dots {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(30, 77, 107, 0.12) 1px, transparent 1.4px);
            background-size: 22px 22px;
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            pointer-events: none;
            z-index: 0;
            opacity: 0.6;
        }

        .deco-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(30, 77, 107, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 77, 107, 0.06) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        .deco-quote {
            position: absolute;
            top: 28px;
            right: 32px;
            font-family: 'Playfair Display', serif;
            font-size: clamp(160px, 22vw, 320px);
            line-height: 1;
            font-weight: 500;
            color: var(--blue);
            opacity: 0.12;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        .deco-numeral {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            line-height: 0.85;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(30, 77, 107, 0.16);
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        .deco-wave-top,
        .deco-wave-bottom {
            position: absolute;
            left: 0;
            right: 0;
            width: 100%;
            height: 80px;
            display: block;
            pointer-events: none;
            z-index: 0;
        }

        .deco-wave-top {
            top: -1px;
        }

        .deco-wave-bottom {
            bottom: -1px;
            transform: scaleY(-1);
        }

        .deco-spark {
            position: absolute;
            width: 14px;
            height: 14px;
            opacity: 0.5;
            pointer-events: none;
            z-index: 0;
            animation: decoTwinkle 4s infinite ease-in-out;
        }

        @keyframes decoTwinkle {

            0%,
            100% {
                opacity: 0.2;
                transform: scale(0.85);
            }

            50% {
                opacity: 0.7;
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .deco-blob-l {
                filter: blur(40px);
                opacity: 0.4;
            }

            .deco-quote {
                font-size: 140px;
                top: 16px;
                right: 12px;
                opacity: 0.09;
            }

            .deco-numeral {
                display: none;
            }

            .deco-wave-top,
            .deco-wave-bottom {
                height: 50px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .deco-spark {
                animation: none;
            }
        }

        /* ── Планшеты 768-900px (промежуточный брейкпоинт) ── */
        @media (max-width: 900px) and (min-width: 768px) {
            .proc-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ba-track {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        /* ── Мобильные до 480px: уменьшить горизонтальные отступы ── */
        @media (max-width: 480px) {

            .offer-section,
            .proc-section,
            .ba-section,
            .pricing-section,
            .cert-section,
            .cities-section,
            .trust-section,
            .reviews-section {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }


        /* MOBILE OVERFLOW FIXES */
        @media (max-width: 480px) {

            .btn,
            button.btn,
            a.btn {
                white-space: normal !important;
                word-break: break-word;
                text-align: center;
                padding-left: 16px !important;
                padding-right: 16px !important;
            }

            .popular-badge,
            [class*="badge"] {
                white-space: normal !important;
                max-width: 90% !important;
            }

            .hero-offer-badge,
            [class*="offer-badge"] {
                flex-wrap: wrap !important;
                max-width: 100% !important;
                white-space: normal !important;
            }

            .offer-text-badge,
            [class*="offer-text"] {
                white-space: normal !important;
                word-break: break-word;
            }

            img,
            video,
            iframe {
                max-width: 100% !important;
                height: auto;
            }
        }


        /* CITY PICKER MODAL */
        .city-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(20, 30, 40, 0.6);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: cmFadeIn 0.3s ease;
        }

        @keyframes cmFadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        .city-modal {
            background: #fff;
            border-radius: var(--r-l);
            padding: 40px 36px 32px;
            width: 100%;
            max-width: 580px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
            animation: cmSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes cmSlideUp {
            from {
                transform: translateY(30px);
                opacity: 0
            }

            to {
                transform: translateY(0);
                opacity: 1
            }
        }

        .city-modal-close {
            position: absolute;
            top: 16px;
            right: 18px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(121, 181, 209, 0.3);
            background: none;
            cursor: pointer;
            font-size: 18px;
            color: #aaa;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .city-modal-close:hover {
            background: #eff7fb;
            color: #464646;
        }

        .city-modal-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--bb-sky);
            margin-bottom: 10px;
        }

        .city-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 400;
            color: #464646;
            line-height: 1.15;
            margin-bottom: 6px;
        }

        .city-modal-title em {
            font-style: italic;
            color: var(--bb-sky);
        }

        .city-modal-sub {
            font-size: 14px;
            color: #999;
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .city-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .city-list-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            border-radius: var(--r-s);
            border: 1.5px solid rgba(121, 181, 209, 0.2);
            background: var(--bb-bg);
            cursor: pointer;
            text-decoration: none;
            color: #464646;
            transition: all 0.2s;
        }

        .city-list-item:hover {
            border-color: var(--bb-sky);
            background: #eff7fb;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(121, 181, 209, 0.15);
        }

        .city-list-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--bb-sky);
            flex-shrink: 0;
            margin-top: 5px;
        }

        .city-list-name {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.2;
        }

        .city-list-addr {
            font-size: 12px;
            color: #999;
            line-height: 1.3;
            margin-top: 2px;
        }

        .city-modal-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #bbb;
        }

        @media (max-width: 480px) {
            .city-modal {
                padding: 28px 20px 24px;
            }

            .city-list {
                grid-template-columns: 1fr;
            }

            .city-modal-title {
                font-size: 24px;
            }
        }


        /* CITY WIDGET */
        .city-widget-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 8888;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--bb-sky);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 8px 32px rgba(121, 181, 209, 0.4);
            transition: all 0.25s;
        }

        .city-widget-btn:hover {
            background: var(--bb-teal);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(121, 181, 209, 0.5);
        }

        .city-widget-btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .city-widget-btn {
                bottom: 80px;
                right: 16px;
                padding: 11px 16px;
                font-size: 13px;
            }
        }

        .city-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(20, 30, 40, 0.65);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .city-modal-overlay.active {
            display: flex;
            animation: cmFadeIn 0.25s ease;
        }

        @keyframes cmFadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        .city-modal {
            background: #fff;
            border-radius: var(--r-l);
            padding: 40px 36px 32px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
            animation: cmSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes cmSlideUp {
            from {
                transform: translateY(24px);
                opacity: 0
            }

            to {
                transform: translateY(0);
                opacity: 1
            }
        }

        .city-modal-close {
            position: absolute;
            top: 16px;
            right: 18px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(121, 181, 209, 0.3);
            background: none;
            cursor: pointer;
            font-size: 20px;
            color: #aaa;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .city-modal-close:hover {
            background: #eff7fb;
            color: #464646;
        }

        .city-modal-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--bb-sky);
            margin-bottom: 10px;
        }

        .city-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 400;
            color: #464646;
            line-height: 1.15;
            margin-bottom: 6px;
        }

        .city-modal-title em {
            font-style: italic;
            color: var(--bb-sky);
        }

        .city-modal-sub {
            font-size: 14px;
            color: #999;
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .city-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .city-list-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            border-radius: var(--r-s);
            border: 1.5px solid rgba(121, 181, 209, 0.2);
            background: var(--bb-bg);
            cursor: pointer;
            text-decoration: none;
            color: #464646;
            transition: all 0.2s;
        }

        .city-list-item:hover {
            border-color: var(--bb-sky);
            background: #eff7fb;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(121, 181, 209, 0.15);
        }

        .city-list-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--bb-sky);
            flex-shrink: 0;
            margin-top: 5px;
        }

        .city-list-name {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.2;
        }

        .city-list-addr {
            font-size: 12px;
            color: #999;
            line-height: 1.3;
            margin-top: 2px;
        }

        .city-modal-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #bbb;
        }

        @media (max-width: 480px) {
            .city-modal {
                padding: 28px 20px 24px;
                border-radius: var(--r-m);
            }

            .city-list {
                grid-template-columns: 1fr;
            }

            .city-modal-title {
                font-size: 24px;
            }
        }

        /* (removed 2026-05-25) старый MOBILE TRUST-STATS FIX перебивал актуальную раскладку
           «3 числа в ряд» с !important и возвращал столбец. Раскладка теперь — в основном
           мобильном блоке выше (см. .trust-stats на ~3052). */

        /* (removed 2026-05-25) дубль .city-widget-btn{display:none} — перебивался
           более поздним display:flex !important на ~4288, был мёртвым кодом. */

        /* MARKERS FIX — крупнее и читабельнее */
        @keyframes cmPulse {

            0%,
            100% {
                r: 18;
                opacity: 0.5;
            }

            50% {
                r: 26;
                opacity: 0.15;
            }
        }

        .cm-ring {
            animation: cmPulse 2.5s ease-in-out infinite;
        }

        .cm-dot {
            r: 9 !important;
            stroke-width: 2 !important;
        }

        .cm:hover .cm-dot {
            r: 11 !important;
        }

        .cm-lbl {
            font-size: 11px !important;
            font-weight: 600 !important;
            fill: #fff !important;
            paint-order: stroke;
            stroke: #1a3a4a;
            stroke-width: 3px;
            stroke-linejoin: round;
        }


        /* Скрыть подписи городов на карте */
        .cm-lbl {
            display: none !important;
        }

        /* MARKERS BRIGHT — меньше но ярче */
        .cm-ring {
            fill: rgba(121, 181, 209, 0.15) !important;
            animation: cmPulse2 2.5s ease-in-out infinite !important;
        }

        @keyframes cmPulse2 {

            0%,
            100% {
                r: 12;
                opacity: 0.4;
            }

            50% {
                r: 18;
                opacity: 0.1;
            }
        }

        .cm-dot {
            fill: #3a9fd4 !important;
            stroke: #ffffff !important;
            stroke-width: 2.5 !important;
            r: 6 !important;
            filter: drop-shadow(0 0 4px rgba(58, 159, 212, 0.8));
        }

        .cm:hover .cm-dot {
            fill: #1a7ab5 !important;
            r: 8 !important;
            filter: drop-shadow(0 0 8px rgba(26, 122, 181, 1));
        }


        /* SOCIAL ICONS */
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #EFF7FB;
            transition: all 0.2s;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--bb-sky);
        }

        .social-link:hover svg path {
            fill: #fff;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .header-socials {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-socials {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 16px 0;
        }


        /* FIX: скрыть sticky-полоску 990р на главной странице */
        .mobile-sticky-cta {
            display: none !important;
        }


        /* Показать кнопку "Выбрать город" на мобилке */
        @media (max-width: 900px) {
            .city-widget-btn {
                display: flex !important;
                bottom: 20px !important;
                right: 16px !important;
                padding: 10px 16px !important;
                font-size: 13px !important;
                z-index: 8888 !important;
            }
        }


        /* PRICING FIX FINAL — карточки одинакового размера на мобилке */
        @media (max-width: 900px) {

            /* Скрыть sticky-полоску на главной */
            .mobile-sticky-cta {
                display: none !important;
            }
        }
    
        /* Floating city switcher (mobile only, scroll-triggered) */
        .city-widget-btn { display: none; }
        @media (max-width: 900px) {
            .city-widget-btn {
                display: flex;
                position: fixed;
                bottom: 16px;
                right: 16px;
                z-index: 8888;
                align-items: center;
                gap: 8px;
                padding: 11px 16px;
                background: var(--bb-sky);
                color: #fff;
                border: none;
                border-radius: 50px;
                font-family: 'Manrope', sans-serif;
                font-size: 13px;
                font-weight: 500;
                cursor: pointer;
                white-space: nowrap;
                box-shadow: 0 8px 32px rgba(121, 181, 209, 0.4);
                transform: translateY(80px);
                opacity: 0;
                pointer-events: none;
                transition: transform 0.3s, opacity 0.3s;
            }
            .city-widget-btn.visible {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            .city-widget-btn svg {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
            }
        }

        /* MOBILE CTA CLEANUP — оставляем синюю плавающую "Выбрать город" + bottom sticky CTA bar.
           2026-06-26: убран форс-hide .sticky-cta (UX-аудит — нужна быстрая запись на мобиле). */
        @media (max-width: 900px) {
            .mobile-sticky-cta { display: none !important; }
        }

        /* ===== Block C — Аппаратные методики fixes (2026-05-21) ===== */

        /* C.1 — никаких transform/morph на hover у фото внутри карточки */
        .proc-card .proc-visual,
        .proc-card .proc-visual.organic-shape,
        .proc-card:hover .proc-visual,
        .proc-card:hover .proc-visual.organic-shape,
        .proc-visual.organic-shape:hover,
        *:hover > .proc-visual.organic-shape {
            transform: none;
        }

        /* C.2 — фото не должно резаться органичной формой;
                 прямоугольник со скруглением, фото cover-центром */
        .proc-card .proc-visual.organic-shape,
        .proc-card .proc-visual.organic-shape:hover,
        *:hover > .proc-card .proc-visual.organic-shape {
            border-radius: 12px !important;
            transition: none;
        }
        .proc-card .proc-visual {
            background-size: cover;
            background-position: center;
        }

        /* C.3 — больше воздуха между текстом и краем карточки */
        .proc-card .proc-content {
            padding: 28px;
        }

        /* C.4 — 4-я карточка больше не "обрезается":
                 убираем fade-out mask, оставляем существующий chevron-индикатор */
        .proc-grid {
            -webkit-mask-image: none;
            mask-image: none;
        }

        /* ===== Block C — повтор (2026-05-21):
                 1) полностью гасим любой hover-эффект на .proc-card / фото
                 2) "До и после": фото должно быть видно целиком, без обрезки рамкой ===== */

        /* C.A — выключаем все transitions, чтобы при hover нечему было анимироваться */
        .proc-card,
        .proc-card .proc-visual,
        .proc-card .proc-visual.organic-shape,
        .proc-card .proc-visual.with-photo,
        .proc-card .proc-content {
            transition: none !important;
        }

        /* C.B — фиксируем .proc-card на hover в base-state (без подъёма, без тени-роста) */
        .proc-card:hover {
            transform: none !important;
            box-shadow: 0 4px 16px rgba(121, 181, 209, 0.08) !important;
            background: #FFFFFF !important;
        }
        .proc-card:hover .proc-visual,
        .proc-card:hover .proc-visual.organic-shape,
        .proc-card:hover .proc-visual.with-photo,
        .proc-visual:hover,
        .proc-visual.organic-shape:hover,
        *:hover > .proc-visual.organic-shape {
            transform: none !important;
            border-radius: 12px !important;
        }

        /* C.C — "До и после": показать фото целиком (contain),
                 без обрезки и без hover-зума */
        .ba-img {
            background-size: contain !important;
            background-repeat: no-repeat;
            background-position: center;
            transform: none !important;
            transition: none !important;
        }
        .ba-card,
        .ba-card .ba-img-wrap {
            transition: none !important;
        }
        .ba-card:hover {
            transform: none !important;
            box-shadow: 0 4px 18px rgba(20, 30, 60, 0.06) !important;
        }
        .ba-card:hover .ba-img {
            transform: none !important;
        }
    
        /* ===== BLOCK F — Unified CTA buttons (2026-05-21) =====
           Primary: bg var(--bb-sky), white text; hover bg #A1CBDF, no transform.
           Secondary: transparent + var(--bb-sky) border; hover inverts. */
        .hero-cta,
        .cert-btn,
        .quiz-btn-next,
        .gt-btn.primary {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: var(--bb-navy) !important;
            color: #FFFFFF !important;
            border: none !important;
            border-radius: 999px !important;
            padding: 14px 32px !important;
            font-family: 'Manrope', sans-serif !important;
            font-weight: 600 !important;
            font-size: 14px !important;
            line-height: 1.2 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
            box-shadow: 0 8px 24px rgba(30, 77, 107, 0.28) !important;
            transform: none !important;
            transition: background-color 0.2s ease !important;
            text-decoration: none !important;
            cursor: pointer !important;
        }
        .hero-cta:hover,
        .cert-btn:hover,
        .quiz-btn-next:hover,
        .gt-btn.primary:hover {
            background: #13354B !important;
            color: #FFFFFF !important;
            border: none !important;
            transform: none !important;
            box-shadow: 0 10px 28px rgba(30, 77, 107, 0.36) !important;
        }
        .gt-btn.secondary {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: transparent !important;
            color: var(--bb-navy) !important;
            border: 1px solid var(--bb-navy) !important;
            border-radius: 999px !important;
            padding: 14px 32px !important;
            font-family: 'Manrope', sans-serif !important;
            font-weight: 600 !important;
            font-size: 14px !important;
            line-height: 1.2 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
            box-shadow: none !important;
            transform: none !important;
            transition: background-color 0.2s ease, color 0.2s ease !important;
            text-decoration: none !important;
            cursor: pointer !important;
        }
        .gt-btn.secondary:hover {
            background: var(--bb-navy) !important;
            color: #FFFFFF !important;
            border: 1px solid var(--bb-navy) !important;
            transform: none !important;
            box-shadow: none !important;
        }
    
        /* 2026-06-23: убираем peek-обрез у contentful каруселей (не для netx-carousel — у неё свои prev/next) */
        .proc-grid {
            display: grid !important;
            /* 2026-06-24: 4-col на desktop (было 3-col → 3+1 одинокая карточка с 4 техниками) */
            grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
            gap: 20px !important;
            overflow: visible !important;
        }
        .proc-grid > .proc-card { flex: 0 1 auto !important; min-width: 0 !important; }
        .reviews-grid {
            display: grid !important;
            grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
            gap: 24px !important;
            overflow: visible !important;
            margin: 0 !important;
            padding: 0 !important;
            scroll-snap-type: none !important;
        }
        .reviews-grid > .review-card { flex: 0 1 auto !important; min-width: 0 !important; }
        @media (max-width: 1024px) {
            .proc-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
        }
        @media (max-width: 768px) {
            .proc-grid, .reviews-grid { grid-template-columns: 1fr !important; }
            .reviews-grid > .review-card { max-width: 100% !important; }
        }


        /* ===== CC-HOME-UIFIX-20260723 : центровка карточек + декор внутри экрана ===== */
        .deco-host { overflow-x: clip; }
        @media (max-width: 768px) {
          .proc-grid, .reviews-grid { justify-items: stretch !important; }
          .proc-grid > .proc-card,
          .reviews-grid > .review-card {
            width: 100% !important;
            max-width: none !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            justify-self: stretch !important;
          }
        }

        /* CC-HERO-UIFIX-20260723 : плашка-оффер над кнопкой + чипы доверия */
        .hero-offer-badge {
          display: inline-flex; align-items: center; gap: 9px;
          max-width: 100%; box-sizing: border-box;
          background: rgba(24, 40, 54, 0.40); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
          border: 1px solid rgba(255,255,255,0.22);
          color: #fff; font-size: 14px; line-height: 1.35; font-weight: 500;
          padding: 10px 16px; border-radius: var(--r-s); margin-bottom: 18px;
        }
        .hero-offer-badge b { font-weight: 700; }
        .hero-offer-badge > span { min-width: 0; }
        .hero-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
        .hero-trust-chips .htc {
          display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
          background: rgba(24, 40, 54, 0.34); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
          border: 1px solid rgba(255,255,255,0.20);
          color: rgba(255,255,255,0.92); font-size: 13px; font-weight: 500;
          padding: 7px 13px; border-radius: 999px;
        }
        .hero-trust-chips .htc b { color: #fff; font-weight: 700; }

        /* CC-HERO-PAY-20260723 */
        .hero-pay { margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,0.82); font-weight: 500; }
        .hero-pay b { color: #fff; font-weight: 600; }
/* BB CITIES v3 */
        .bb-cities-section {
            padding: 88px 52px;
            background: #f4f9fc;
        }

        .bb-cities-head {
            text-align: center;
            margin-bottom: 48px;
        }

        .bb-cities-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--bb-sky);
            margin-bottom: 10px;
        }

        .bb-cities-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 400;
            color: #464646;
            line-height: 1.2;
        }

        .bb-cities-title em {
            font-style: italic;
            color: var(--bb-sky);
        }

        /* Layout */
        .bb-cities-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        /* Список */
        .bb-city-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .bb-city-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: var(--r-s);
            border: 1.5px solid transparent;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s;
        }

        .bb-city-item:hover {
            border-color: rgba(121, 181, 209, 0.4);
            background: #eff7fb;
        }

        .bb-city-item.active {
            border-color: var(--bb-sky);
            background: #eff7fb;
            box-shadow: 0 4px 16px rgba(121, 181, 209, 0.2);
        }

        .bb-city-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--bb-sky);
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .bb-city-item.active .bb-city-dot {
            background: var(--bb-teal);
        }

        .bb-city-info {
            flex: 1;
        }

        .bb-city-name {
            font-size: 14px;
            font-weight: 500;
            color: #464646;
            line-height: 1.2;
        }

        .bb-city-addr {
            font-size: 11px;
            color: #999;
            margin-top: 2px;
            line-height: 1.3;
        }

        .bb-city-arrow {
            font-size: 14px;
            color: #ccc;
            transition: color 0.2s, transform 0.2s;
        }

        .bb-city-item:hover .bb-city-arrow,
        .bb-city-item.active .bb-city-arrow {
            color: var(--bb-sky);
            transform: translateX(3px);
        }

        /* Карта */
        .bb-map-side {
            position: relative;
        }

        .bb-map-wrap {
            position: relative;
            border-radius: var(--r-m);
            overflow: hidden;
            background: #1a3a4a;
            box-shadow: 0 24px 80px rgba(26, 58, 74, 0.25);
        }

        .bb-map-inner svg {
            width: 100%;
            height: auto;
            display: block;
            max-height: 420px;
        }

        /* Превью города */
        .bb-map-preview {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 200px;
            background: #fff;
            border-radius: var(--r-s);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.25s, transform 0.25s;
            pointer-events: none;
        }

        .bb-map-preview.vis {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .bb-preview-img {
            width: 100%;
            height: 110px;
            object-fit: cover;
            display: none;
        }

        .bb-preview-nophoto {
            width: 100%;
            height: 110px;
            background: linear-gradient(135deg, #e8f4f9, #a1cbdf);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .bb-preview-info {
            padding: 12px 14px 14px;
        }

        .bb-preview-name {
            font-family: 'Playfair Display', serif;
            font-size: 17px;
            color: #464646;
            margin-bottom: 3px;
        }

        .bb-preview-addr {
            font-size: 11px;
            color: #999;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .bb-preview-btn {
            display: block;
            text-align: center;
            padding: 8px 12px;
            background: var(--bb-sky);
            color: #fff;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
        }

        .bb-preview-btn:hover {
            background: var(--bb-teal);
        }

        /* Маркеры на карте */
        .cm {
            cursor: pointer;
        }

        .cm-ring-v3 {
            fill: rgba(121, 181, 209, 0.2);
        }

        .cm.active-marker .cm-ring-v3 {
            fill: rgba(121, 181, 209, 0.5);
            animation: cmPulseV3 1.5s ease-in-out infinite;
        }

        @keyframes cmPulseV3 {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 0.2;
            }
        }

        .cm-dot-v3 {
            fill: var(--bb-sky);
            stroke: #fff;
            stroke-width: 2;
            transition: fill 0.2s;
        }

        .cm.active-marker .cm-dot-v3 {
            fill: #1a7ab5;
        }

        .cm:hover .cm-dot-v3 {
            fill: var(--bb-teal);
        }

        /* Мобильный */
        @media (max-width: 900px) {
            .bb-cities-layout {
                grid-template-columns: 1fr;
            }

            .bb-city-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
        }

        @media (max-width: 480px) {
            .bb-cities-section {
                padding: 64px 20px;
            }

            .bb-city-list {
                grid-template-columns: 1fr;
            }

            .bb-map-preview {
                display: none;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE SAFETY LAYER
           Plugs the gaps between existing breakpoints (1024/900/768/600/480)
           so content never overlaps or overflows on intermediate widths.
           Added 2026-05-11.
           ═══════════════════════════════════════════════════════════ */

        /* ─── Global overflow guards ─── */
        html, body { max-width: 100vw; overflow-x: hidden; }
        img, video, iframe { max-width: 100%; height: auto; }
        .cert-banner, .faq-inner, .quiz-inner, .offer-section,
        .cities-showcase, .site-footer, .footer-bottom { min-width: 0; }
        .cs-name, .footer-links a, .hero-desc, .cert-info p, .faq-a,
        .quiz-section p, .modal-city-btn { overflow-wrap: anywhere; }

        /* ─── TABLET BRIDGE: 768-1024px ───
           Many sections only switch to mobile layout at 900px, leaving
           tablet width (768-900) with crammed desktop layout. Bridge here. */
        @media (max-width: 1024px) {
            /* Prepay/cert banner — wrap on tablet so heading doesn't squeeze button */
            .cert-section { padding: 32px 32px; }
            .cert-banner {
                flex-wrap: wrap;
                gap: 24px;
                padding: 48px 40px;
            }
            .cert-info { flex: 1 1 320px; }
            .cert-info h2 { font-size: clamp(32px, 4.5vw, 44px); }
            .cert-info p { max-width: 100%; }

            /* FAQ — drop side-by-side at 1024 (was only at 900) */
            .faq-inner { grid-template-columns: 1fr; gap: 40px; }
            .faq-section { padding: 72px 32px; }

            /* Quiz — same */
            .quiz-inner { grid-template-columns: 1fr; gap: 40px; }
            .quiz-section { padding: 72px 32px; }

            /* Offer — collapse before 900 */
            .offer-section { padding: 72px 32px; }

            /* Footer — compact 2026-06-26 */
            .site-footer { padding: 40px 32px 24px; gap: 24px; }
            .footer-bottom { padding: 20px 32px; }

            /* Page-wide content padding adapts */
            header { padding: 0 32px; }
        }

        /* ─── NARROW PHONE: ≤380px ───
           iPhone SE / 360px Androids — reduce padding so content fits. */
        @media (max-width: 380px) {
            header { padding: 0 16px; }
            .hero-content { padding: 0 16px; }
            .hero-cta { padding: 16px 28px; font-size: 13px; }
            .hero-cta-sub { max-width: 100%; }

            .cert-section { padding: 16px; }
            .cert-banner { padding: 32px 20px; }
            .cert-info h2 { font-size: 32px; }
            .cert-info p { font-size: 14px; }
            .cert-btn { padding: 14px 24px; font-size: 12px; width: 100%; }

            .faq-section, .quiz-section, .pricing-section, .reviews-section,
            .offer-section, .cities-section, .ba-section, .proc-section,
            .trust-section {
                padding-left: 16px;
                padding-right: 16px;
            }
            .faq-q { font-size: 14px; gap: 12px; }

            .site-footer { padding: 56px 16px 24px; }
            .footer-bottom { padding: 20px 16px calc(20px + 60px); }

            .modal-content { padding: 18px 16px 28px; }
            .modal-title { font-size: 20px; line-height: 36px; min-height: 36px; padding: 0 48px; }
            .modal-city-btn { padding: 16px 18px; }

            .geo-toast { padding: 18px; }
        }

        /* ─── EXTRA-WIDE SCREENS: ≥1600px ───
           Stop full-width sections from stretching to ultra-wide. */
        @media (min-width: 1600px) {
            .hero-content, .faq-inner, .quiz-inner, .cert-banner,
            .pricing-grid, .ba-track, .proc-grid, .cities-showcase {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* ============= ВЕКТОР 2 «РИТУАЛ» — 2026-05-14 =============
           Универсальные тёплые штрихи: «луна» на hero, дрейф
           существующих blob'ов, тёплая линия над wave-divider.
           Не дублируем существующий deco-host — только дополняем. */
        :root {
            --ritual-honey: #E8C9A4;
            --ritual-amber: #D9B689;
            --ritual-cream: #F5EBDC;
            --ritual-glow:  rgba(217, 182, 137, 0.5);
        }
        @keyframes ritual-breath {
            0%, 100% { transform: scale(1);    opacity: 0.85; }
            50%      { transform: scale(1.07); opacity: 1; }
        }
        @keyframes ritual-drift-a {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50%      { transform: translate(22px, -16px) scale(1.05); }
        }
        @keyframes ritual-drift-b {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50%      { transform: translate(-18px, 14px) scale(1.04); }
        }

        /* Тёплая «лунная» точка на hero — намёк на вечер/интимность */
        .hero { position: relative; }
        .hero::after {
            content: '';
            position: absolute;
            top: 120px;
            right: 8%;
            width: 88px;
            height: 88px;
            pointer-events: none;
            z-index: 4;
            background: radial-gradient(circle at 50% 50%,
                rgba(245, 235, 220, 0.55) 0%,
                rgba(232, 201, 164, 0.30) 40%,
                transparent 70%);
            border-radius: 50%;
            filter: blur(2px);
            animation: ritual-breath 7s ease-in-out infinite;
        }
        @media (max-width: 768px) {
            .hero::after { top: 90px; right: 4%; width: 56px; height: 56px; }
        }

        /* Тёплая линия-намёк на wave-divider (если есть) */
        .wave-divider { position: relative; }
        .wave-divider::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(232, 201, 164, 0.50) 50%,
                transparent 100%);
            pointer-events: none;
            z-index: 3;
        }

        /* Медленный дрейф существующих deco-blob — секции «дышат» */
        .deco-blob-l,
        .deco-blob-l.l-blue,
        .deco-blob-l.l-pale,
        .deco-blob-l.l-cream {
            animation: ritual-drift-a 28s ease-in-out infinite;
            will-change: transform;
        }
        .deco-host:nth-of-type(odd) .deco-blob-l {
            animation-name: ritual-drift-b;
            animation-duration: 32s;
        }
        .deco-blob-l.l-accent {
            animation: ritual-breath 9s ease-in-out infinite;
        }

        /* Точка «свечного» сигнала на популярной карточке прайса:
           тёплое мягкое свечение под бейджем «Выбор клиентов». */
        .price-card.popular {
            box-shadow:
                0 48px 40px rgba(121, 181, 209, 0.15),
                0 0 40px rgba(232, 201, 164, 0.18);
        }

        /* Доступность — без анимаций при reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .hero::after,
            .deco-blob-l { animation: none !important; }
        }

        /* ─── N) БОКОВЫЕ КОЛОННЫ-ЛИСТЬЯ removed 2026-05-20 ─── */

        /* Hover-tilt на карточках removed 2026-05-20 — 3D-наклон/scale/box-shadow убраны */
        .review-card {
            transition: box-shadow 0.3s ease;
        }
        .review-card:hover {
            box-shadow: 0 8px 24px rgba(121,181,209,0.16);
        }

    
        /* ==========================================================
           BLOCKS G + H — UNIFIED TYPOGRAPHY + VERTICAL RHYTHM
           Single source of truth for headline scale and section spacing.
           ========================================================== */

        :root {
            --bb-eyebrow-color: var(--bb-sky);
            --bb-section-gap: 80px;
            --bb-section-gap-mobile: 56px;
            --bb-head-gap: 48px;
            --bb-head-gap-mobile: 32px;
            --bb-card-gap: 24px;
        }

        /* H1 — hero only */
        h1.hero-title {
            font-family: 'Playfair Display', serif !important;
            font-weight: 300 !important;
            font-size: 56px !important;
            line-height: 1.08 !important;
            letter-spacing: -0.01em !important;
        }

        /* H2 — section titles */
        .offer-title,
        .proc-title,
        .ba-title,
        .cities-title,
        .reviews-title,
        .quiz-title,
        .faq-title,
        .cert-banner h2,
        .trust-headline,
        .network-title {
            font-family: 'Playfair Display', serif !important;
            font-weight: 300 !important;
            font-size: 40px !important;
            line-height: 1.12 !important;
            letter-spacing: -0.005em !important;
        }

        /* H3 — card titles */
        .network-card-title,
        .proc-card-title,
        .ba-card-title,
        .cs-name,
        .review-name,
        .faq-q,
        .quiz-step-title {
            font-family: 'Playfair Display', serif !important;
            font-weight: 300 !important;
            font-size: 24px !important;
            line-height: 1.2 !important;
        }

        /* Eyebrow (caps above H2) */
        .hero-tag,
        .offer-eyebrow,
        .proc-eyebrow,
        .ba-eyebrow,
        .cities-eyebrow,
        .reviews-eyebrow,
        .network-eyebrow {
            font-family: 'Manrope', sans-serif !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            letter-spacing: 0.15em !important;
            text-transform: uppercase !important;
            color: var(--bb-eyebrow-color) !important;
        }

        /* Vertical rhythm — section padding */
        .offer-section,
        .proc-section,
        .ba-section,
        .cert-section,
        .cities-section,
        .trust-section,
        .reviews-section,
        .quiz-section,
        .faq-section,
        .network-section {
            padding-top: var(--bb-section-gap) !important;
            padding-bottom: var(--bb-section-gap) !important;
        }

        /* Vertical rhythm — title → content gap */
        .offer-title,
        .proc-title,
        .ba-title,
        .cities-head,
        .reviews-title,
        .quiz-title,
        .faq-title,
        .trust-headline,
        .network-head,
        .cert-info > h2 {
            margin-bottom: var(--bb-head-gap) !important;
        }

        /* Cards grid gap */
        .network-grid,
        .trust-stats,
        .proc-grid,
        .ba-grid,
        .reviews-grid,
        .cs-list {
            gap: var(--bb-card-gap) !important;
        }

        @media (max-width: 768px) {
            h1.hero-title { font-size: 38px !important; line-height: 1.1 !important; }

            .offer-title, .proc-title, .ba-title, .cities-title,
            .reviews-title, .quiz-title, .faq-title,
            .cert-banner h2, .trust-headline, .network-title {
                font-size: 28px !important;
            }

            .network-card-title, .proc-card-title, .ba-card-title,
            .cs-name, .review-name, .faq-q, .quiz-step-title {
                font-size: 20px !important;
            }

            .offer-section, .proc-section, .ba-section, .cert-section,
            .cities-section, .trust-section, .reviews-section,
            .quiz-section, .faq-section, .network-section {
                padding-top: var(--bb-section-gap-mobile) !important;
                padding-bottom: var(--bb-section-gap-mobile) !important;
            }

            .offer-title, .proc-title, .ba-title, .cities-head,
            .reviews-title, .quiz-title, .faq-title,
            .trust-headline, .network-head, .cert-info > h2 {
                margin-bottom: var(--bb-head-gap-mobile) !important;
            }
        }

        /* ==========================================================
           BLOCK I — NETWORK SECTION («Сеть студий Body Bliss»)
           ========================================================== */
        .network-section {
            background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFD 100%);
            position: relative;
        }
        .network-head {
            max-width: 760px;
        }
        .network-eyebrow { display: block; margin-bottom: 16px; }
        .network-title em {
            font-style: italic;
            color: var(--bb-sky);
            font-weight: 300;
        }
        .network-lead {
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            line-height: 1.55;
            color: #4A5563;
            margin-top: 20px;
            max-width: 640px;
        }
        /* (removed 2026-05-25) старые .network-grid / .network-card / .network-card-num*
           удалены — блок переделан в интерактивный city explorer (см. .netx-* ниже).
           .network-deco-numeral тоже снят: декоративная цифра не использовалась в markup. */

        .network-section { background: linear-gradient(180deg, #FFFFFF 0%, var(--bb-bg) 100%) !important; }
        .network-section .container { position: relative; z-index: 1; }

        /* ─── CITY CAROUSEL (2026-06-02) ─── replaces chips/single-card city explorer */
        .netx-carousel-wrap {
            position: relative;
            margin-top: 48px;
        }
        .netx-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 0 0 24px;
        }
        .netx-chip {
            display: inline-flex;
            align-items: center;
            padding: 10px 18px;
            font-family: 'Manrope', sans-serif;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.2;
            color: var(--accent);
            background: #fff;
            border: 1px solid #D8EDF5;
            border-radius: 999px;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
        }
        .netx-chip:hover:not(.is-active) {
            border-color: var(--bb-sky);
            background: rgba(216, 237, 245, 0.4);
        }
        .netx-chip.is-active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 6px 18px rgba(30, 77, 107, 0.25);
        }
        .netx-chip:focus-visible {
            outline: 2px solid var(--bb-sky);
            outline-offset: 2px;
        }
        .netx-carousel {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding: 8px 4px 18px;
        }
        .netx-carousel::-webkit-scrollbar { display: none; }
        .netx-card-item {
            flex: 0 0 340px;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid #E8EEF3;
            border-radius: var(--r-m);
            box-shadow: 0 14px 38px rgba(30, 77, 107, 0.07);
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .netx-card-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 50px rgba(30, 77, 107, 0.12);
        }
        .netx-card-photo-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            background: #f3f7fa;
            overflow: hidden;
        }
        .netx-card-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .netx-card-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 22px 22px 14px;
            flex: 1;
        }
        .netx-card-eyebrow {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--bb-sky);
        }
        .netx-card-city {
            font-family: 'Playfair Display', serif !important;
            font-weight: 400 !important;
            font-size: 30px !important;
            line-height: 1.1 !important;
            margin: 0 0 4px !important;
            color: var(--accent);
            letter-spacing: -0.01em;
        }
        .netx-card-row {
            display: inline-flex;
            align-items: flex-start;
            gap: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 14px;
            line-height: 1.45;
            color: #4A5563;
            text-decoration: none;
            transition: color 0.18s;
        }
        .netx-card-row svg {
            width: 17px;
            height: 17px;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--bb-sky);
        }
        .netx-card-row:hover { color: var(--accent); }
        .netx-card-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 0 22px 22px;
        }
        .netx-card-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 18px;
            min-height: 44px;
            font-family: 'Manrope', sans-serif;
            font-size: 13.5px;
            font-weight: 600;
            letter-spacing: 0.02em;
            border-radius: 40px;
            border: 1px solid transparent;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s;
        }
        .netx-card-cta.primary {
            background: var(--accent);
            color: #fff;
        }
        .netx-card-cta.primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }
        .netx-card-cta.secondary {
            background: #fff;
            color: var(--accent);
            border-color: #D8EDF5;
        }
        .netx-card-cta.secondary:hover {
            background: rgba(216, 237, 245, 0.5);
            border-color: var(--bb-sky);
        }

        /* Prev/Next arrows */
        .netx-nav {
            position: absolute;
            top: 38%;
            transform: translateY(-50%);
            z-index: 3;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid #D8EDF5;
            background: #fff;
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 26px rgba(30, 77, 107, 0.12);
            transition: background 0.18s, border-color 0.18s, opacity 0.18s, transform 0.18s;
        }
        .netx-nav:hover:not([disabled]) {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .netx-nav[disabled] {
            opacity: 0.35;
            cursor: default;
        }
        .netx-nav--prev { left: -22px; }
        .netx-nav--next { right: -22px; }
        .netx-nav:focus-visible {
            outline: 2px solid var(--bb-sky);
            outline-offset: 2px;
        }


        /* Tablet */
        @media (max-width: 900px) {
            .netx-carousel-wrap { margin-top: 36px; }
            .netx-card-item { flex-basis: 300px; }
            .netx-nav { width: 44px; height: 44px; }
            .netx-nav--prev { left: -10px; }
            .netx-nav--next { right: -10px; }
        }

        /* Phone */
        @media (max-width: 600px) {
            .netx-carousel {
                gap: 16px;
                margin: 0 -20px;
                padding: 6px 20px 16px;
            }
            .netx-card-item {
                flex-basis: 82%;
                max-width: 320px;
                border-radius: var(--r-m);
            }
            .netx-card-city { font-size: 26px !important; }
            .netx-card-body { padding: 18px 18px 12px; }
            .netx-card-actions { padding: 0 18px 18px; }
            .netx-chips {
                flex-wrap: nowrap;
                overflow-x: auto;
                margin: 0 -20px 18px;
                padding: 4px 20px 10px;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
            }
            .netx-chips::-webkit-scrollbar { display: none; }
            .netx-chip {
                scroll-snap-align: center;
                padding: 11px 16px;
                font-size: 13px;
                min-height: 44px;
            }
            .netx-nav { display: none; }
        }

        /* ============================================
           MOBILE READABILITY FIX (2026-05-22)
           Reduce dead vertical space, bump tiny text,
           tame oversized decorative numerals.
           ============================================ */
        @media (max-width: 480px) {

            /* Сжимаем избыточные вертикальные паддинги секций (64-88px → 36-40px) */
            .offer-section,
            .proc-section,
            .ba-section,
            .pricing-section,
            .cert-section,
            .cities-section,
            .trust-section,
            .reviews-section,
            .quiz-section,
            .faq-section,
            .network-section {
                padding-top: 40px !important;
                padding-bottom: 40px !important;
            }

            /* Заголовки секций — крупнее и плотнее */
            .offer-title,
            .proc-title,
            .ba-title,
            .cert-title,
            .trust-title,
            .reviews-title,
            .quiz-title,
            .faq-title,
            .network-title,
            .cities-title {
                font-size: 30px !important;
                line-height: 1.1 !important;
                margin-bottom: 12px !important;
            }

            /* Эйбрау/мелкие подписи 10-12px → 13px */
            .offer-eyebrow,
            .proc-eyebrow,
            .ba-eyebrow,
            .cert-eyebrow,
            .trust-eyebrow,
            .reviews-eyebrow,
            .quiz-eyebrow,
            .faq-eyebrow,
            .network-eyebrow,
            .cities-eyebrow {
                font-size: 13px !important;
                letter-spacing: 0.12em !important;
            }

            /* Подзаголовки/лиды 14-15px → 16px */
            .offer-lead,
            .proc-lead,
            .ba-lead,
            .cert-lead,
            .trust-lead,
            .reviews-lead,
            .quiz-lead,
            .faq-lead,
            .network-lead,
            .cities-lead,
            .offer-text,
            .proc-text,
            .section-lead {
                font-size: 16px !important;
                line-height: 1.55 !important;
            }

            /* Гигантские декоративные цифры/кавычки (140-180px) на мобильном — умеренные */
            .deco-numeral,
            .network-deco-numeral {
                font-size: 96px !important;
            }
            .deco-quote {
                font-size: 96px !important;
            }

            /* HERO trust badge 11px → 13px */
            .hero-trust-badge,
            .hero-trust-badge * {
                font-size: 13px !important;
            }
            .hero-cta-sub {
                font-size: 13px !important;
                line-height: 1.4 !important;
            }

            /* NAV 12px → 13.5px */
            .nav-link,
            .nav-btn {
                font-size: 13.5px !important;
            }

            /* NETWORK cards: подпись к большой цифре */
            .network-card-num-sub {
                font-size: 13px !important;
            }
            .network-card-text {
                font-size: 15px !important;
                line-height: 1.5 !important;
            }
            .network-card-title {
                font-size: 18px !important;
            }
            .network-section {
                gap: 16px;
            }
            .network-card {
                padding: 24px 22px !important;
            }

            /* PROC / tech tags 11px → 13px */
            .proc-tag {
                font-size: 12.5px !important;
            }
            .proc-card-title {
                font-size: 17px !important;
            }
            .proc-card-text {
                font-size: 14.5px !important;
                line-height: 1.5 !important;
            }

            /* BA / results: подписи процедур 10px → 12.5px */
            .ba-proc {
                font-size: 12.5px !important;
            }
            .ba-card-title,
            .ba-meta {
                font-size: 14.5px !important;
            }

            /* CERT */
            .cert-section p,
            .cert-text {
                font-size: 15px !important;
                line-height: 1.55 !important;
            }

            /* TRUST: укротить гигантскую статистику и поднять подписи */
            .trust-stat-num,
            .trust-number {
                font-size: 64px !important;
                line-height: 1 !important;
            }
            .trust-stat-label,
            .trust-stat-sub {
                font-size: 13.5px !important;
            }

            /* REVIEWS — самый длинный блок, нужна плотность */
            .reviews-section {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }
            .reviews-rating-sub {
                font-size: 13.5px !important;
            }
            .review-date {
                font-size: 12.5px !important;
            }
            .review-text {
                font-size: 14.5px !important;
                line-height: 1.5 !important;
            }
            .review-author {
                font-size: 14.5px !important;
            }
            .yandex-badge {
                font-size: 11px !important;
            }
            .reviews-track,
            .reviews-grid {
                gap: 14px !important;
            }

            /* QUIZ */
            .quiz-step-label {
                font-size: 13px !important;
            }
            .quiz-section p,
            .quiz-question,
            .quiz-option {
                font-size: 15px !important;
            }

            /* FAQ */
            .faq-q {
                font-size: 15.5px !important;
                line-height: 1.4 !important;
            }
            .faq-a {
                font-size: 14.5px !important;
                line-height: 1.55 !important;
            }

            /* FOOTER читабельность */
            .footer-col-title {
                font-size: 13px !important;
            }
            .footer-copy {
                font-size: 13px !important;
                line-height: 1.5 !important;
            }
            .footer-copy + .footer-copy,
            .footer-copy small {
                font-size: 12.5px !important;
            }
            .site-footer {
                padding: 40px 20px 28px !important;
            }

            /* Sticky CTA */
            .sticky-cta-btn {
                font-size: 14px !important;
            }

        }

        /* Очень узкие экраны 380px и меньше */
        @media (max-width: 380px) {
            .offer-title,
            .proc-title,
            .ba-title,
            .cert-title,
            .trust-title,
            .reviews-title,
            .quiz-title,
            .faq-title,
            .network-title {
                font-size: 26px !important;
            }
            .deco-numeral,
            .network-deco-numeral,
            .deco-quote {
                font-size: 80px !important;
            }
            .trust-stat-num,
            .trust-number {
                font-size: 54px !important;
            }
        }
        /* ============ END MOBILE FIX ============ */


        /* ─── MOBILE FIXES 2026-06-02 ─── */
        @media (max-width: 600px) {
            .results .result-slide { background: #EAF2F7; }
            .results .result-slide img {
                height: auto;
                width: 100%;
                max-height: 80vh;
                object-fit: contain;
                background: #EAF2F7;
            }
            .results .slider-track { padding: 10px 16px 24px; }

            .cert-section { padding: 16px; }
            .cert-banner { padding: 28px 20px; gap: 18px; border-radius: var(--r-l); }
            .cert-info h2 { font-size: clamp(26px, 7vw, 32px) !important; margin-bottom: 10px !important; line-height: 1.15 !important; }
            .cert-info p { font-size: 14px !important; line-height: 1.5 !important; }
            .cert-info { flex: 0 0 auto !important; }
            .cert-btn { padding: 14px 28px; font-size: 13px; width: 100%; }

            .trust-section { padding: 36px 16px !important; gap: 24px !important; }
            .trust-headline { font-size: clamp(28px, 8vw, 36px) !important; max-width: 100% !important; }
            .trust-stats { gap: 6px !important; }
            .trust-stat { padding: 16px 6px !important; border-radius: var(--r-s); }
            .trust-stat-num { font-size: clamp(28px, 9vw, 38px) !important; }
            .trust-stat-label { font-size: 10.5px !important; line-height: 1.25 !important; }
        }
        /* ─── END MOBILE FIXES 2026-06-02 ─── */
/* 2026-06-24: Option #1 центрированной карусели (карточка ~85%, peek=0, + счётчик). */
@media (max-width: 768px) {
  .loyalty-block .loyalty-track,
  .rh-track,
  .procedures-grid,
  .proc-grid,
  .reviews-grid {
    scroll-padding-inline: 7.5% !important;
  }
  .loyalty-block .loyalty-slide,
  .rh-track > .rh-card,
  .procedures-grid > .proc-card,
  .proc-grid > .proc-card,
  .reviews-grid > .review-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    max-width: 85% !important;
    min-width: 0 !important;
    scroll-snap-align: center !important;
  }
  .loyalty-block .loyalty-track::before, .loyalty-block .loyalty-track::after,
  .rh-track::before, .rh-track::after,
  .procedures-grid::before, .procedures-grid::after,
  .proc-grid::before, .proc-grid::after,
  .reviews-grid::before, .reviews-grid::after {
    content: '' !important;
    display: block !important;
    flex: 0 0 7.5% !important;
    min-width: 7.5% !important;
  }
  .loyalty-block .loyalty-track,
  .rh-track,
  .procedures-grid,
  .proc-grid,
  .reviews-grid { scrollbar-width: none !important; }
  .loyalty-block .loyalty-track::-webkit-scrollbar,
  .rh-track::-webkit-scrollbar,
  .procedures-grid::-webkit-scrollbar,
  .proc-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
}
.bb-slide-counter { display: none; text-align: center; font-size: 13px; color: #7a8c95; margin-top: 10px; font-variant-numeric: tabular-nums; letter-spacing: 0.5px; }
@media (max-width: 768px) { .bb-slide-counter { display: block; } }
/* Кнопки и поля не наследуют шрифт по умолчанию — браузер подставлял Arial. */
button, input, select, textarea { font-family: inherit; }
/* Нижняя граница кегля: ниже 11px подписи нечитаемы. */
.bw-date-mon { font-size: 11px !important; }
.bw-sum-label, .twogis-badge, .mc-stat-label, .hero-cta-gift-sub { font-size: 11px !important; }
/* Кнопка в две строки на 1.2 читается слипшейся. */
button, .btn, .hero-cta, .netx-card-cta, .modal-city-btn { line-height: 1.3 !important; }
/* Проза в карточках шла на 1.35–1.36 — ниже нижней границы читаемости для 12–14px. */
.proc-desc, .bw-service-desc, .netx-card-row span, .rh-txt { line-height: 1.55 !important; }
/* ── Подвал 2026-07-21: колоночная сетка ─────────────────────────── */
.bbf { background: var(--bb-ink); color: rgba(255,255,255,.82); padding: 64px 0 28px; }
.bbf-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 52px); }
.bbf-cols { display: grid; grid-template-columns: 1.4fr 1.2fr 1fr 1.2fr; gap: 40px; }
.bbf-col { min-width: 0; }
.bbf-brand { display: inline-block; font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; text-decoration: none; margin-bottom: 8px; }
.bbf-brand i { font-style: italic; color: var(--bb-sky); }
.bbf-tag { margin: 0 0 18px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.bbf-phone { display: inline-block; font-size: 24px; font-weight: 600; color: #fff; text-decoration: none; letter-spacing: .01em; }
.bbf-phone:hover { color: var(--bb-sky); }
.bbf-hours { margin: 8px 0 20px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65); }
.bbf-h { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; font-weight: 600; }
.bbf-h-second { margin-top: 26px; }
.bbf-address { margin: 0 0 12px; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.9); }
.bbf-route { list-style: none; margin: 0 0 14px; padding: 0; }
.bbf-route li { position: relative; padding-left: 14px; margin-bottom: 6px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65); }
.bbf-route li::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--bb-sky); }
.bbf-link-out { display: block; font-size: 14px; line-height: 1.7; color: var(--bb-sky); text-decoration: none; }
.bbf-link-out:hover { text-decoration: underline; }
.bbf-nav { list-style: none; margin: 0; padding: 0; }
.bbf-nav li { margin-bottom: 10px; }
.bbf-nav a { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.78); text-decoration: none; }
.bbf-nav a:hover { color: var(--bb-sky); }
.bbf-socials { display: flex; gap: 12px; }
.bbf-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85); transition: .2s; }
.bbf-socials a:hover { background: var(--bb-sky); border-color: var(--bb-sky); color: #fff; }
.bbf-socials svg { width: 20px; height: 20px; }
.bbf-map { margin-top: 44px; border-radius: var(--r-m); overflow: hidden; height: 260px; }
.bbf-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15); }
.bbf-legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; }
.bbf-legal-meta, .bbf-copy { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.45); }

@media (max-width: 1024px) {
    .bbf-cols { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
}
@media (max-width: 640px) {
    .bbf { padding: 48px 0 24px; }
    .bbf-cols { grid-template-columns: 1fr; gap: 30px; }
    .bbf-map { height: 220px; margin-top: 32px; }
    .bbf-legal { flex-direction: column; gap: 8px; }
}

/* Подвал главной: колонка городов делится надвое, чтобы 15 ссылок не тянулись вниз. */
.bbf-cols-home { grid-template-columns: 1.3fr 1fr 1.5fr 1.2fr; }
.bbf-cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.bbf-mail { margin: 8px 0 0; font-size: 14px; }
.bbf-mail a { color: rgba(255,255,255,.72); text-decoration: none; }
.bbf-mail a:hover { color: var(--bb-sky); }
.bbf .bbf-phone-small { color: #fff !important; text-decoration: none !important; }
.bbf .bbf-phone-small:hover { color: var(--bb-sky) !important; }
.bbf .bbf-nav a, .bbf .bbf-brand { text-decoration: none !important; }
@media (max-width: 1024px) { .bbf-cols-home { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bbf-cols-home { grid-template-columns: 1fr; } }
/* Зажатая шапка на узком десктопе (1024–1180): телефон в 2 строки, меню вплотную к логотипу. */
@media (min-width: 1024px) and (max-width: 1180px) {
    .nav-menu { gap: 16px !important; }
    .nav-menu a, .cp-nav a { font-size: 13px !important; letter-spacing: .04em !important; }
    .header-phone { font-size: 15px !important; white-space: nowrap !important; }
    .logo { font-size: 1.35rem !important; }
    .header-socials { display: none !important; } /* в подвале соцсети есть */
    .header-actions { gap: 14px !important; }
}
@media (hover:hover) and (pointer:fine){
  .is-magnetic{ transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, filter .22s ease; will-change: transform; }
  .hero-cta:hover, .netx-card-cta.primary:hover, .sticky-cta-btn:hover, .nav-btn:hover, .mobile-nav-btn:hover{ box-shadow:0 14px 30px -8px rgba(57,90,106,.4); filter:brightness(1.03); }
  .hero-cta, .netx-card-cta.primary, .sticky-cta-btn, .nav-btn{ transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, filter .22s ease, background-color .2s ease; }
}
@media (max-width:768px){ .hero{ min-height:auto !important; padding-top:90px !important; padding-bottom:44px !important; align-items:flex-start !important; } }
.hero-moat{ margin-top:14px; font-family:'Manrope',sans-serif; font-size:13px; letter-spacing:.02em; color:rgba(255,255,255,.85); display:inline-flex; align-items:center; gap:7px; }
.hero-moat::before{ content:'✓'; display:inline-flex; align-items:center; justify-content:center; width:18px; height:18px; border-radius: 50%; background:var(--bb-sky); color:#15181C; font-size:11px; font-weight:800; }
@media(max-width:768px){ .hero-moat{ font-size:12px; } }
/* === Дизайн-система кнопок === */
.hero-cta, .hero-cta-primary, .btn.btn-primary, .bb-prepay-cta, .bw-service-pick,
.netx-card-cta.primary, .cert-btn, .quiz-cta, .city-modal-cta, .lead-submit{
  background:var(--bb-teal) !important; color:#fff !important; border:0 !important;
  border-radius: 999px !important; font-family:'Manrope',sans-serif !important;
  font-weight:700 !important; letter-spacing:.01em !important; box-shadow:none !important; }
.hero-cta:hover, .hero-cta-primary:hover, .btn.btn-primary:hover, .bb-prepay-cta:hover,
.bw-service-pick:hover, .netx-card-cta.primary:hover, .cert-btn:hover, .quiz-cta:hover,
.city-modal-cta:hover, .lead-submit:hover{ background:#3B7189 !important; }
/* secondary = контур */
.netx-card-cta.secondary{ background:transparent !important; color:var(--bb-teal) !important;
  border:1.5px solid var(--bb-teal) !important; border-radius: 999px !important; font-weight:600 !important; }
.netx-card-cta.secondary:hover{ background:rgba(78,143,170,.08) !important; }
/* Ритм по золотому сечению/Фибоначчи (16 · 24 · 40 · 96) */
.network-section, .offer-section, .proc-section, .results, .trust-section, .reviews-section, .quiz-section, .faq-section{ padding-top:96px !important; padding-bottom:96px !important; }
.network-eyebrow, .offer-eyebrow, .proc-eyebrow, .ba-eyebrow, .quiz-eyebrow, .faq-eyebrow, .trust-eyebrow{ margin:0 0 16px !important; }
.network-title, .offer-title, .proc-title, .ba-title, .quiz-title, .faq-title, .trust-title{ margin:0 0 24px !important; }
.network-lead, .offer-desc, .quiz-desc, .faq-desc{ max-width:620px; line-height:1.6; }
@media (max-width:768px){
  .network-section, .offer-section, .proc-section, .results, .trust-section, .reviews-section, .quiz-section, .faq-section{ padding-top:56px !important; padding-bottom:56px !important; }
  .network-eyebrow, .offer-eyebrow, .proc-eyebrow, .ba-eyebrow, .quiz-eyebrow, .faq-eyebrow, .trust-eyebrow{ margin:0 0 12px !important; }
  .network-title, .offer-title, .proc-title, .ba-title, .quiz-title, .faq-title, .trust-title{ margin:0 0 18px !important; }
}
.bbf-col-brand{ max-width:360px; }
.bbf-about{ margin:0 0 18px !important; line-height:1.65 !important; font-size:14px !important; color:rgba(255,255,255,.66) !important; }
.bbf-phone-small{ display:inline-block !important; font-size:18px !important; font-weight:600 !important; letter-spacing:.01em; margin:0 !important; }
.bbf-mail{ margin:12px 0 0 !important; }
@media(max-width:768px){ .bbf-col-brand{ max-width:none; } .bbf-about{ margin-bottom:16px !important; } }
.deco-wave-top,.deco-wave-bottom{ display:none !important; }
.hero-trustline{ margin-top:18px; font-family:'Manrope',sans-serif; font-size:14px; color:rgba(255,255,255,.82); letter-spacing:.01em; }
.hero-cta-sub{ margin-top:12px; }
@media(max-width:768px){ .hero-trustline{ font-size:13px; } }
@media (max-width: 768px){
  .proc-grid, .reviews-grid, .procedures-grid { justify-items: stretch !important; }
  .procedures-grid > .proc-card,
  .proc-grid > .proc-card,
  .reviews-grid > .review-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    scroll-snap-align: none !important;
  }
  .bb-slide-counter { display: none !important; }
}
@media(max-width:768px){.bw-service-more{min-height:44px;padding-top:10px;padding-bottom:10px;}.bw-task-chip{min-height:44px;}.bw-cal-cell{min-height:44px;}.bw-cal-nav{min-width:44px;min-height:44px;}.results-nav{min-width:44px;min-height:44px;}.results-dot{min-width:44px;min-height:44px;padding:18px;box-sizing:border-box;background-clip:content-box;}.hero-cta-slot{display:inline-flex !important;align-items:center;min-height:44px !important;}.bbc-taxi{display:inline-flex !important;align-items:center;min-height:44px !important;}.bbf-phone-small{display:inline-flex !important;align-items:center;min-height:44px !important;}.pf-close{min-width:44px !important;min-height:44px !important;}.bb-sticky-cta-btn{min-height:44px !important;}.bbf li>a{display:inline-flex !important;align-items:center;min-height:44px !important;}.bbc-links a{display:inline-flex !important;align-items:center;min-height:44px !important;}}
/* Блок «приложение + рекомендации». Перенесён с городских лендингов; заголовки
   переведены на Playfair Display — шрифт заголовков главной. */
.bbref { padding: 96px 0; background: #fbfaf7; }
.bbref-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bbref-card { min-width: 0; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: var(--r-m); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.bbref-card--cashback { background: linear-gradient(160deg, #eef3f5 0%, #fff 60%); border-color: rgba(57, 90, 106, .12); }
.bbref-card--app { background: linear-gradient(160deg, #eef0e9 0%, #fff 60%); border-color: rgba(57, 90, 106, .12); }
.bbref-card--referral { background: linear-gradient(160deg, #f5f0e8 0%, #fff 60%); border-color: rgba(57, 90, 106, .12); }
.bbref-eyebrow { display: inline-flex; align-items: center; font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--bb-teal-deep); background: rgba(57, 90, 106, .08); padding: 6px 12px; border-radius: 999px; align-self: flex-start; }
.bbref-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; line-height: 1.2; color: #1e1e1e; margin: 0; text-wrap: balance; }
.bbref-title i { font-style: italic; color: var(--bb-teal-deep); }
.bbref-lead { text-align: left; font-family: 'Manrope', sans-serif; font-size: .98rem; line-height: 1.5; color: #4a4a4a; margin: 0; }
.bbref-note { font-family: 'Manrope', sans-serif; font-size: .82rem; line-height: 1.45; color: #8a8a8a; margin: -4px 0 0; }
.bbref-cta { display: inline-flex; align-items: center; align-self: flex-start; margin-top: auto; padding: 12px 22px; background: var(--bb-teal-deep); color: #fff; text-decoration: none; border-radius: 999px; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .94rem; transition: background .18s ease, transform .18s ease; }
.bbref-cta:hover { background: #2a4553; transform: translateY(-1px); }
.bbref-link { display: inline-flex; align-items: center; align-self: flex-start; margin-top: auto; padding: 12px 18px; background: transparent; color: var(--bb-teal-deep); text-decoration: none; border: 1px solid rgba(57, 90, 106, .3); border-radius: 999px; font-family: 'Manrope', sans-serif; font-size: .92rem; transition: background .18s ease, border-color .18s ease; }
.bbref-link:hover { background: rgba(57, 90, 106, .06); border-color: rgba(57, 90, 106, .5); }
@media (max-width: 980px) {
  .bbref-inner { grid-template-columns: 1fr 1fr; }
  .bbref-card--referral { grid-column: 1 / -1; }
  .bbref-title { font-size: 1.45rem; }
  .bbref-card { padding: 26px 22px; }
}
@media (max-width: 768px) {
  .bbref { padding: 56px 0; }
  .bbref-inner { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
  .bbref-card { padding: 24px 22px; }
  .bbref-title { font-size: 1.4rem; }
  /* тап-таргет 44px, как у остальных ссылок главной (cc-tap44) */
  .bbref-cta, .bbref-link { min-height: 44px; }
}
/* Цена первого визита рядом с составом визита: до этого рублей на главной не было
   вовсе, кроме бонусных. Вилка — из price_first конфигов городов. */
.offer-price { margin: 18px 0 24px; font-family: 'Manrope', sans-serif; font-size: 1.02rem; line-height: 1.5; color: #2c2c2c; }
.offer-price strong { font-weight: 700; white-space: nowrap; }
.offer-price span { display: block; margin-top: 4px; font-size: .88rem; line-height: 1.45; color: #7a7a7a; }

/* Подводка «что это вообще» перед списком техник — до неё сразу шли термины. */
.proc-intro { max-width: 760px; margin: 0 auto 40px; text-align: center; font-family: 'Manrope', sans-serif; font-size: 1.02rem; line-height: 1.6; color: #4a4a4a; text-wrap: pretty; }
.proc-intro a { color: var(--bb-teal-deep); text-decoration: none; border-bottom: 1px solid rgba(57, 90, 106, .35); white-space: nowrap; }
.proc-intro a:hover { border-bottom-color: var(--bb-teal-deep); }

/* Зона съёмки под парой до/после: раньше подпись была только «До / После курса». */
.result-caption { display: block; margin-top: 10px; font-family: 'Manrope', sans-serif; font-size: .9rem; line-height: 1.4; color: #6b6b6b; text-align: center; }

@media (max-width: 768px) {
  .proc-intro { margin-bottom: 28px; font-size: .98rem; text-align: left; }
  .offer-price { margin: 14px 0 20px; }
  .result-caption { font-size: .85rem; }
}

/* cc-buttons-unified 2026-08-02: тот же вид кнопок, что на страницах городов.
   !important — потому что тут тоже наслоение стилей из разных волн правок. */
body .btn-primary,
body .btn.btn-primary,
body .hero-cta,
body .bb-cta,
body .city-cta{
  background: var(--bb-teal) !important;
  color: #fff !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
body .btn-primary:hover,body .hero-cta:hover,body .bb-cta:hover,body .city-cta:hover{
  background: var(--bb-teal-deep) !important;
}
@media (max-width:640px){
  body .btn-primary,body .btn.btn-primary,body .hero-cta,body .bb-cta,body .city-cta{ min-height:50px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   Секретный подарок — панель обратного отсчёта (14.08.2026)
   Блок держим ПОСЛЕДНИМ в файле: в landing.css ранние правила
   перебиваются только финальным блоком (урок 24.07 по .proc-card).
   z-index 95 — выше липкой .bb-sticky-cta (90), ниже поп-апов (999+).
   На ≤768 наша панель подменяет .bb-sticky-cta через body.bb-bonus-on,
   иначе внизу экрана оказались бы две панели друг на друге.
   ═══════════════════════════════════════════════════════════════════ */
.bb-bonus {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 95;
    background: var(--bb-navy, #1E4D6B);
    color: #fff;
    box-shadow: 0 -8px 28px rgba(31, 42, 51, .22);
    transform: translateY(110%);
    opacity: 0;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .22s ease;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.bb-bonus.is-visible { transform: translateY(0); opacity: 1; }

.bb-bonus-track { display: block; height: 4px; background: rgba(255, 255, 255, .18); overflow: hidden; }
.bb-bonus-fill {
    display: block; height: 100%; width: 100%;
    transform-origin: left center;
    background: linear-gradient(90deg, #FFC46B, #FF6B5B);
}
.bb-bonus.is-done .bb-bonus-fill { background: #7ED9A6; }

.bb-bonus-row {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px 12px;
}
.bb-bonus-gift { flex: none; font-size: 22px; line-height: 1; }
.bb-bonus-text { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bb-bonus-title { font-size: 15px; font-weight: 600; line-height: 1.25; }
.bb-bonus-sub { font-size: 13px; line-height: 1.3; color: rgba(255, 255, 255, .78); }
.bb-bonus-sub b { font-weight: 700; color: #FFC46B; font-variant-numeric: tabular-nums; }

.bb-bonus-btn {
    flex: none; border: 0; cursor: pointer;
    background: #fff; color: var(--bb-navy, #1E4D6B);
    font: inherit; font-size: 15px; font-weight: 600;
    padding: 11px 22px; border-radius: 999px;
    transition: box-shadow .2s ease;
}
.bb-bonus-btn:hover, .bb-bonus-btn:focus-visible { box-shadow: 0 8px 22px rgba(0, 0, 0, .28); }
.bb-bonus-close {
    flex: none; width: 34px; height: 34px; padding: 0;
    border: 0; border-radius: 50%; cursor: pointer;
    background: rgba(255, 255, 255, .12); color: #fff;
    font-size: 19px; line-height: 1;
    transition: background .2s ease;
}
.bb-bonus-close:hover, .bb-bonus-close:focus-visible { background: rgba(255, 255, 255, .24); }

@media (max-width: 768px) {
    body.bb-bonus-on .bb-sticky-cta { display: none !important; }
    .bb-bonus-row { padding: 10px 12px 11px; gap: 10px; }
    .bb-bonus-gift { font-size: 20px; }
    .bb-bonus-title { font-size: 13.5px; }
    .bb-bonus-sub { font-size: 12px; }
    .bb-bonus-btn { padding: 10px 16px; font-size: 14px; }
}
@media (max-width: 380px) {
    .bb-bonus-gift { display: none; }
    .bb-bonus-title { font-size: 13px; }
    .bb-bonus-btn { padding: 10px 14px; }
}
@media (prefers-reduced-motion: reduce) {
    .bb-bonus { transition: none; }
    .bb-bonus-fill { transition: none !important; }
}

/* ─── cc-ownerfix-20260814 ─────────────────────────────────────────────
   Подвал с телефона был вытянут в башню: тап-таргет 44px + margin 10px
   давали шаг 54px на пункт, при 8 пунктах меню и 14 городах подвал занимал
   1424px = 1.7 экрана. Ставим двухколоночную сетку (бренд и города — во всю
   ширину), шаг пункта 34px, отбивки секций 24px. Тап-таргет остаётся ≥34px.
*/
@media (max-width: 640px) {
    .bbf { padding: 40px 0 20px; }
    .bbf-cols, .bbf-cols-home { grid-template-columns: 1fr 1fr; gap: 24px 18px; align-items: start; }
    .bbf-col { order: 2; }
    .bbf-col-brand { order: 1; grid-column: 1 / -1; }
    /* города — в конец и во всю ширину, иначе они разрывают ряд
       «меню | документы» и подвал снова вытягивается в столбик */
    .bbf-col-cities { order: 3; grid-column: 1 / -1; }
    .bbf-cities-grid { grid-template-columns: 1fr 1fr; column-gap: 14px; }
    .bbf-h { margin: 0 0 8px; }
    .bbf-nav li { margin-bottom: 0; }
    /* пункт может переноситься на 2 строки — держим ритм паддингом,
       иначе перенос слипается со следующей ссылкой */
    .bbf-nav a, .bbf-cities-grid a { display: flex; align-items: center;
        min-height: 34px; padding: 5px 0; line-height: 1.3; }
    .bbf li > a { min-height: 34px !important; }
    .bbf-legal { margin-top: 22px; padding-top: 16px; }
}
