        :root {
            --bg-color: #f5f2f9;
            --surface-color: #f5f6f8;
            --surface-border: #e6e6eb;
            --divider: #efeff4;
            --text-primary: #1c1c1e;
            --text-secondary: #3a3a40;
            --text-tertiary: #6b6b6f;
            --accent-main: #7b61ff;
            --accent-success: #34c759;
            --accent-warning: #ff9500;
            --accent-danger: #ff3b30;
        }

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

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

        .page-top-anchor {
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 1px;
            margin: 0;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
            scroll-margin-top: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: transparent;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            z-index: 1000;
            padding: 10px 18px;
            background: #582c77;
            color: #ffffff;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 16px;
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            overflow: visible;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(14px);
            -webkit-backdrop-filter: saturate(180%) blur(14px);
            border-bottom: 1px solid var(--surface-border);
        }

        .site-header .container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 32px;
            overflow: visible;
            padding-top: 16px;
            padding-bottom: 16px;
        }

        .site-header .header-logo {
            justify-self: start;
            font-family: 'Outfit', sans-serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: #582c77;
            letter-spacing: -0.04em;
            text-decoration: none;
            line-height: 1;
        }

        .site-header .header-logo .plus {
            color: #a18ab6;
        }

        .brand-logo {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1;
            white-space: nowrap;
            color: #582c77;
        }

        .brand-logo .plus {
            color: #a18ab6;
        }

        .brand-logo--inline {
            display: inline;
            font-size: 1em;
            vertical-align: baseline;
        }

        .solution-card--featured .brand-logo,
        .impl-deadline .brand-logo {
            color: #ffffff;
        }

        .site-header nav {
            display: flex;
            gap: 32px;
            align-items: center;
            justify-content: center;
            justify-self: center;
            overflow: visible;
            padding-block: 6px;
        }

        .site-header nav a {
            display: inline-flex;
            align-items: flex-start;
            padding-top: 6px;
            padding-bottom: 2px;
            color: #1c1c1e;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: color 0.14s ease-out;
        }

        .site-header nav .header-nav-text {
            position: relative;
            top: 0;
            display: inline-block;
            transition: top 0.2s cubic-bezier(0.2, 0.85, 0.25, 1);
        }

        .site-header nav a:hover,
        .site-header nav a:focus-visible {
            color: #582c77;
        }

        .site-header nav a:hover .header-nav-text,
        .site-header nav a:focus-visible .header-nav-text {
            top: -2px;
        }

        .site-header nav a:focus-visible {
            outline: 2px solid rgba(88, 44, 119, 0.35);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .site-header .header-logo {
            transition: color 0.22s ease, transform 0.22s ease;
        }

        .site-header .header-logo:hover,
        .site-header .header-logo:focus-visible {
            color: #6b3690;
            transform: translateY(-1px);
        }

        .site-header .header-logo:focus-visible {
            outline: 2px solid rgba(88, 44, 119, 0.45);
            outline-offset: 4px;
            border-radius: 6px;
        }

        .site-header .header-cta {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-self: end;
        }

        .site-header .header-cta .btn {
            min-height: 42px;
            padding: 0 20px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.2;
            border-radius: 12px;
            border-width: 1px;
            border-style: solid;
            box-sizing: border-box;
        }

        .site-header .header-cta button.btn {
            font-family: inherit;
            margin: 0;
            appearance: none;
            -webkit-appearance: none;
        }

        .header-cta .btn-ic {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .header-cta .btn-ic svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        .header-cta-phone,
        .header-cta-demo {
            gap: 8px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            white-space: nowrap;
        }

        .btn-ghost {
            color: #582c77;
            background: transparent;
            border-color: rgba(88, 44, 119, 0.2);
        }

        .btn-ghost:hover {
            background: rgba(88, 44, 119, 0.06);
            border-color: rgba(88, 44, 119, 0.4);
        }

        .btn-primary {
            color: #ffffff;
            background: #582c77;
            border-color: #582c77;
        }

        .btn-primary:hover {
            background: #6b3690;
            border-color: #6b3690;
            transform: translateY(-1px);
        }

        @media (max-width: 960px) {
            .site-header .container {
                grid-template-columns: auto minmax(0, 1fr) auto;
                grid-template-rows: auto;
                column-gap: 8px;
                padding-top: 10px;
                padding-bottom: 10px;
            }

            .site-header .header-logo {
                grid-column: 1;
                grid-row: 1;
                font-size: 2rem;
                justify-self: start;
            }

            .site-header nav {
                grid-column: 2;
                grid-row: 1;
                justify-self: center;
                justify-content: center;
                width: max-content;
                max-width: 100%;
                gap: 10px;
                min-width: 0;
                margin: 0;
                padding: 0;
            }

            .site-header .header-cta {
                grid-column: 3;
                grid-row: 1;
                justify-self: end;
                gap: 6px;
            }

            .site-header nav a {
                flex: 0 0 auto;
                text-align: center;
                text-transform: none;
                letter-spacing: 0.02em;
                font-size: clamp(11.5px, 3.1vw, 13.5px);
                padding: 6px 9px 2px;
                margin: 0;
                border-radius: 8px;
                min-height: 0;
                white-space: nowrap;
                display: inline-flex;
                align-items: flex-start;
                justify-content: center;
            }

            .site-header nav a:hover,
            .site-header nav a:focus-visible {
                color: #582c77;
                background: transparent;
            }

            .site-header nav a:hover .header-nav-text,
            .site-header nav a:focus-visible .header-nav-text {
                top: -2px;
            }

            .header-cta .btn-label {
                display: none;
            }

            .header-cta-phone,
            .header-cta-demo {
                display: inline-grid !important;
                place-items: center;
                width: 40px !important;
                min-width: 40px !important;
                max-width: 40px !important;
                height: 40px !important;
                min-height: 40px !important;
                max-height: 40px !important;
                padding: 0 !important;
                gap: 0 !important;
                border-radius: 11px;
            }

            .header-cta .btn-ic {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 480px) {
            .site-header .header-logo {
                font-size: 1.75rem;
            }

            .site-header nav a {
                padding: 6px 2px;
            }

            .header-cta-phone,
            .header-cta-demo {
                width: 36px !important;
                min-width: 36px !important;
                max-width: 36px !important;
                height: 36px !important;
                min-height: 36px !important;
                max-height: 36px !important;
            }

            .header-cta .btn-ic {
                width: 16px;
                height: 16px;
            }
        }

        /* Footer */
        .site-footer {
            background: #1c1c1e;
            color: #d1d1d6;
            padding: 72px 0 32px 0;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr;
            gap: 48px;
            align-items: start;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-col__title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: #6b6b6f;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .footer-col--brand {
            gap: 16px;
        }

        .footer-col--brand .footer-logo {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.04em;
            line-height: 1;
            display: inline-block;
        }

        .footer-col--brand .footer-logo .plus {
            color: #a18ab6;
        }

        .footer-col--brand p {
            color: #9a9aa0;
            font-size: 0.95rem;
            max-width: 320px;
            line-height: 1.5;
        }

        .footer-col--nav a {
            color: #d1d1d6;
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-col--nav a:hover {
            color: #ffffff;
        }

        .footer-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .footer-item__label {
            font-size: 0.78rem;
            color: #6b6b6f;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .footer-item a,
        .footer-item > span:not(.footer-item__label) {
            color: #ffffff;
            font-size: 1rem;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .footer-item a:hover {
            opacity: 0.7;
        }

        .footer-partners {
            margin-top: 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            padding: 28px 32px;
            background: #ffffff;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
        }

        .footer-partners__title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: #6b6b6f;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .footer-partners__img {
            display: block;
            max-width: 720px;
            width: 100%;
            height: auto;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 40px;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 32px;
            color: #6b6b6f;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .footer-bottom__copy {
            max-width: 720px;
        }

        .footer-bottom__links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            flex-shrink: 0;
        }

        .footer-bottom__links a {
            color: #8a8a92;
            text-decoration: none;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .footer-bottom__links a:hover {
            color: #ffffff;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 56px 0 28px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
            }
        }

        /* Глобальный задник: сетка 56×56 + лёгкое синее свечение сверху */
        .site-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background-color: var(--bg-color);
            background-image:
                radial-gradient(ellipse 90% 60% at 50% -8%,
                    rgba(45, 91, 255, 0.07) 0%,
                    transparent 55%),
                linear-gradient(to right, rgba(232, 233, 236, 0.55) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(232, 233, 236, 0.55) 1px, transparent 1px);
            background-size: 100% 100%, 56px 56px, 56px 56px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: inherit;
            line-height: 1.2;
            color: var(--text-primary);
            font-weight: 600;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .card-solid {
            background: #ffffff;
            border: none;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-solid:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        /* FAQ Section — фон прозрачный, чтобы показывалась общая .site-bg сетка */
        .faq {
            position: relative;
            background: transparent;
            border-top: 1px solid var(--divider);
            border-bottom: 1px solid var(--divider);
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .faq-item[open] {
            border-color: rgba(88, 44, 119, 0.3);
            box-shadow: 0 8px 24px rgba(88, 44, 119, 0.08);
        }
        .faq-item__q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            list-style: none;
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
            transition: color 0.2s ease;
        }
        .faq-item__q::-webkit-details-marker { display: none; }
        .faq-item__q:hover { color: #582c77; }
        .faq-item__icon {
            position: relative;
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(88, 44, 119, 0.08);
            transition: background 0.25s ease, transform 0.3s ease;
        }
        .faq-item__icon::before,
        .faq-item__icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            background: #582c77;
            border-radius: 1px;
            transition: transform 0.3s ease, opacity 0.25s ease;
        }
        .faq-item__icon::before {
            width: 10px;
            height: 2px;
            transform: translate(-50%, -50%);
        }
        .faq-item__icon::after {
            width: 2px;
            height: 10px;
            transform: translate(-50%, -50%);
        }
        .faq-item[open] .faq-item__icon {
            background: #582c77;
            transform: rotate(180deg);
        }
        .faq-item[open] .faq-item__icon::before { background: #ffffff; }
        .faq-item[open] .faq-item__icon::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
        .faq-item__a {
            padding: 0 24px 22px 24px;
            color: var(--text-secondary);
            line-height: 1.65;
            font-size: 1rem;
        }
        .faq-item__a p { margin: 0; }
        .faq-item__a p + p { margin-top: 12px; }
        @media (max-width: 600px) {
            .faq-item__q { padding: 16px 18px; font-size: 0.98rem; }
            .faq-item__a { padding: 0 18px 18px 18px; }
        }

        /* Breadcrumbs — visually hidden, остаются в DOM для SEO/JSON-LD согласованности */
        .breadcrumb {
            display: none;
        }
        .breadcrumb-list-original-styles {
            background: #f3edff;
            padding: 12px 0;
            border-bottom: 1px solid rgba(88, 44, 119, 0.08);
            font-size: 0.82rem;
        }
        .breadcrumb-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px;
        }
        .breadcrumb-item {
            display: inline-flex;
            align-items: center;
            color: var(--text-tertiary);
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            color: rgba(88, 44, 119, 0.35);
            margin: 0 8px;
            font-weight: 500;
        }
        .breadcrumb-item a {
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .breadcrumb-item a:hover {
            color: #582c77;
        }
        .breadcrumb-item:last-child a {
            color: #582c77;
            font-weight: 600;
            pointer-events: none;
        }
        @media (max-width: 600px) {
            .breadcrumb {
                padding: 10px 0;
                font-size: 0.75rem;
            }
            .breadcrumb-item:not(:last-child)::after {
                margin: 0 6px;
            }
        }

        /* Hero Section (new layout — text left, phones right) */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 56px 0 96px;
            background:
                linear-gradient(180deg, #ebe1f7 0%, #dccbed 55%, #cebde3 100%);
            border-bottom: 1px solid var(--divider);
        }

        .pill {
            display: inline-block;
            padding: 8px 16px;
            background: #582c77;
            border: none;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Global */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 16px;
        }

        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .split-section>* {
            min-width: 0;
        }

        /* Problem Section */
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            min-width: 0;
        }

        .problem-grid > * {
            min-width: 0;
        }

        .problem .card-solid {
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .problem-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .problem .card-solid {
                padding: 28px 22px;
            }

            .problem .card-solid::before {
                left: 22px;
                right: 22px;
            }
        }

        .problem .card-solid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 40px;
            right: 40px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: #582c77;
            color: #ffffff;
        }

        .problem .card-solid h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            font-weight: 600;
            line-height: 1.25;
        }

        .problem .card-solid p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        /* ============ Implementation / Process ============ */
        .implementation {
            padding: 100px 0;
        }

        .impl-flow {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .impl-card {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 24px;
            padding: 48px 56px;
            display: grid;
            grid-template-columns: minmax(120px, auto) 1fr;
            gap: 56px;
            align-items: start;
            overflow: hidden;
        }

        .impl-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 56px;
            right: 56px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .impl-card__num {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(4rem, 7vw, 5.5rem);
            font-weight: 700;
            color: #582c77;
            letter-spacing: -0.04em;
            line-height: 0.9;
            opacity: 0.25;
        }

        .impl-card__content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.4rem, 2vw, 1.7rem);
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 14px 0;
            letter-spacing: -0.01em;
            line-height: 1.25;
        }

        .impl-card__content > p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 24px 0;
        }

        /* Phase 1: list of audiences */
        .impl-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .impl-list li {
            position: relative;
            overflow: hidden;
            background: #ffffff;
            padding: 20px 24px;
            border-radius: 14px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            border: 1px solid var(--surface-border);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .impl-list li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 24px;
            right: 24px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .impl-list li strong {
            color: var(--text-primary);
            display: block;
            margin-bottom: 6px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
        }

        /* Phase 2: 5 step flow */
        .impl-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 4px;
        }

        .impl-step {
            display: grid;
            grid-template-columns: 40px 1fr;
            gap: 18px;
            padding: 18px 24px;
            background: #ffffff;
            border-radius: 14px;
            align-items: center;
            border: 1px solid var(--surface-border);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .impl-step__num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #582c77;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            line-height: 1;
        }

        .impl-step__text {
            color: var(--text-primary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Phase 3: format options (2x2) */
        .impl-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .impl-option {
            background: linear-gradient(135deg, #582c77 0%, #6e3a93 60%, #8b5fb0 100%);
            color: #ffffff;
            border-radius: 16px;
            padding: 24px 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .impl-option strong {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .impl-option span {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Launch deadline banner */
        .impl-deadline {
            position: relative;
            background: linear-gradient(135deg, #582c77 0%, #6e3a93 60%, #8b5fb0 100%);
            color: #ffffff;
            border-radius: 24px;
            padding: 44px 56px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 56px;
            align-items: center;
            overflow: hidden;
        }

        .impl-deadline::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 85% 25%,
                    rgba(255, 255, 255, 0.18) 0%,
                    transparent 55%);
            pointer-events: none;
        }

        .impl-deadline__label {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .impl-deadline__value {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -0.04em;
            color: #ffffff;
        }

        .impl-deadline__text {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.1rem, 1.6vw, 1.45rem);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .impl-deadline__hint {
            display: block;
            font-family: var(--font-body, inherit);
            font-weight: 400;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 8px;
            line-height: 1.5;
            letter-spacing: 0;
        }

        @media (max-width: 980px) {
            .impl-card {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 36px 28px;
            }

            .impl-card::before {
                left: 28px;
                right: 28px;
            }

            .impl-card__num {
                font-size: 3.5rem;
            }

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

            .impl-options {
                grid-template-columns: 1fr;
            }

            .impl-deadline {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 32px 28px;
            }
        }

        /* ============ Cases ============ */
        .cases {
            padding: 100px 0;
        }

        .cases-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .case-card {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 24px;
            padding: 48px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
            align-items: center;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.35s ease;
        }

        .case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 48px;
            right: 48px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .case-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 60px rgba(88, 44, 119, 0.12),
                        0 6px 18px rgba(0, 0, 0, 0.04);
        }

        .case-card--reverse {
            grid-template-columns: 0.8fr 1.2fr;
        }

        .case-card--reverse .case-visual {
            order: -1;
        }

        .case-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.4rem, 2.2vw, 1.75rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin: 0 0 18px 0;
            color: var(--text-primary);
        }

        .case-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 28px 0;
        }

        /* Problem / Solution blocks inside a case-card (styled like .solution-card) */
        .case-issue {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 18px;
            padding: 26px 28px 24px 28px;
            margin: 0 0 14px 0;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.3s ease,
                        border-color 0.25s ease;
        }
        .case-issue::before {
            content: '';
            position: absolute;
            top: 0;
            left: 28px;
            right: 28px;
            height: 3px;
            border-radius: 0 0 3px 3px;
        }
        .case-issue--pain::before {
            background: linear-gradient(90deg, #a0a0a8 0%, #d0d0d8 100%);
        }
        .case-issue--solve::before {
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
        }
        .case-issue:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(88, 44, 119, 0.08);
        }
        .case-issue--solve:hover {
            border-color: rgba(88, 44, 119, 0.25);
        }
        .case-issue__label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 12px;
        }
        .case-issue--pain .case-issue__label { color: #6b6b6f; }
        .case-issue--solve .case-issue__label { color: #582c77; }
        .case-issue__label svg { flex-shrink: 0; }
        .case-issue p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .case-issue p + p { margin-top: 12px; }
        .case-issue strong { color: var(--text-primary); font-weight: 600; }
        .case-issue--solve + .case-description {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--surface-border);
        }
        .case-issue--solve + .case-description strong { color: var(--text-primary); font-weight: 600; }
        @media (max-width: 768px) {
            .case-issue { padding: 22px 22px 20px 22px; }
            .case-issue::before { left: 22px; right: 22px; }
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .case-metric {
            background: linear-gradient(135deg, #582c77 0%, #6e3a93 60%, #8b5fb0 100%);
            border-radius: 14px;
            padding: 20px 18px;
            border: none;
            color: #ffffff;
        }

        .case-metric__value {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.5rem, 2.2vw, 1.85rem);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .case-metric__label {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.82rem;
            line-height: 1.4;
        }

        /* Visual side with carousel */
        .case-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
        }

        .case-visual .carousel-wrapper {
            padding: 0 36px;
            max-width: 100%;
        }

        .case-visual .carousel-track {
            gap: 16px;
        }

        .case-phone {
            width: 240px;
            height: 490px;
            background: #ffffff;
            border: 9px solid #1c1c1e;
            border-radius: 40px;
            box-shadow: 0 22px 50px rgba(88, 44, 119, 0.2),
                        0 8px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            flex-shrink: 0;
        }

        .case-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 92px;
            height: 20px;
            background: #1c1c1e;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            z-index: 5;
        }

        .case-phone__screen {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 32px 20px;
        }

        .case-phone__screen img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-phone__label {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }

        .case-phone__hint {
            color: var(--text-tertiary);
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Per-case color theme on the phone screens */
        .case-card[data-theme="purple"] .case-phone__screen {
            background: linear-gradient(160deg, #f5f0ff 0%, #e6dcf5 100%);
        }

        .case-card[data-theme="blue"] .case-phone__screen {
            background: linear-gradient(160deg, #ecf3ff 0%, #d6e0ff 100%);
        }

        .case-card[data-theme="green"] .case-phone__screen {
            background: linear-gradient(160deg, #ecfff3 0%, #c8e8d2 100%);
        }

        @media (max-width: 980px) {
            .case-card,
            .case-card--reverse {
                grid-template-columns: 1fr;
                gap: 36px;
                padding: 36px 28px;
            }

            .case-card--reverse .case-visual {
                order: 0;
            }

            .case-card::before {
                left: 28px;
                right: 28px;
            }

            .case-metrics {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 540px) {
            .case-card {
                padding: 28px 20px;
            }

            .case-phone {
                width: 200px;
                height: 410px;
                border-width: 8px;
                border-radius: 36px;
            }
        }

        /* ============ Formats / Delivery ============ */
        .formats {
            padding: 100px 0;
        }

        .formats-switcher {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 64px;
            align-items: center;
            margin-top: 16px;
        }

        .formats-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .format-tab {
            position: relative;
            display: block;
            padding: 26px 28px;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 18px;
            text-align: left;
            cursor: pointer;
            font: inherit;
            color: inherit;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                        border-color 0.3s ease,
                        box-shadow 0.3s ease,
                        background 0.3s ease,
                        color 0.3s ease;
            width: 100%;
        }

        .format-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: 28px;
            right: 28px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
            opacity: 1;
        }

        .format-tab:hover {
            border-color: rgba(88, 44, 119, 0.35);
            transform: translateX(4px);
        }

        .format-tab.active {
            background: linear-gradient(135deg, #582c77 0%, #6e3a93 60%, #8b5fb0 100%);
            color: #ffffff;
            border-color: #582c77;
            box-shadow: 0 18px 42px rgba(88, 44, 119, 0.28);
            transform: translateX(0);
        }

        .format-tab.active::before {
            display: none;
        }

        .format-tab h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 8px 0;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }

        .format-tab p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0;
            transition: color 0.3s ease;
        }

        .format-tab.active h3 {
            color: #ffffff;
        }

        .format-tab.active p {
            color: rgba(255, 255, 255, 0.88);
        }

        .format-tab.active strong {
            color: #ffffff;
        }

        /* Phone mockup on the right */
        .formats-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .format-phone {
            width: 300px;
            height: 610px;
            background: #ffffff;
            border: 10px solid #1c1c1e;
            border-radius: 44px;
            box-shadow: 0 30px 80px rgba(88, 44, 119, 0.22),
                        0 10px 24px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .format-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 24px;
            background: #1c1c1e;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            z-index: 5;
        }

        .format-phone .format-screen {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 32px 24px;
            color: #582c77;
            font-weight: 600;
            font-size: 1rem;
        }

        .format-phone .format-screen.active {
            opacity: 1;
        }

        .format-phone .format-screen img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .format-screen--0 {
            background: linear-gradient(160deg, #f5f0ff 0%, #e6dcf5 100%);
        }

        .format-screen--1 {
            background: linear-gradient(160deg, #ecf3ff 0%, #d6e0ff 100%);
        }

        .format-screen--2 {
            background: linear-gradient(160deg, #fff5ec 0%, #ffe2c4 100%);
        }

        .format-screen--3 {
            background: linear-gradient(160deg, #ecfff3 0%, #c8e8d2 100%);
        }

        .format-screen__label {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            color: var(--text-primary);
            margin-bottom: 4px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .format-screen__hint {
            color: var(--text-tertiary);
            font-size: 0.85rem;
            font-weight: 500;
        }

        @media (max-width: 980px) {
            .formats-switcher {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .formats-visual {
                order: -1;
            }

            .format-phone {
                width: 240px;
                height: 490px;
                border-width: 8px;
                border-radius: 36px;
            }
        }

        @media (max-width: 540px) {
            .format-tab {
                padding: 20px 22px;
                gap: 16px;
            }

            .format-num {
                font-size: 1.6rem;
            }
        }

        /* ============ Solution manifesto cards ============ */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .solution-card {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            padding: 36px 32px 32px 32px;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.35s ease,
                        border-color 0.3s ease;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 32px;
            right: 32px;
            height: 3px;
            background: linear-gradient(90deg, #582c77, #a18ab6);
            opacity: 1;
        }

        .solution-card__num {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            color: #582c77;
            letter-spacing: -0.04em;
            margin-bottom: 20px;
            display: inline-block;
        }

        .solution-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 14px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .solution-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Featured first card spans full width */
        .solution-card--featured {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #582c77 0%, #6e3a93 60%, #8b5fb0 100%);
            color: #ffffff;
            border: none;
            padding: 48px 56px;
            display: block;
        }

        .solution-card--featured::before {
            display: none;
        }

        .solution-card--featured::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: radial-gradient(circle at 80% 20%,
                    rgba(255, 255, 255, 0.15) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .solution-card--featured:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 60px rgba(88, 44, 119, 0.35);
        }

        .solution-card--featured .solution-card__num {
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.25);
            margin: 0;
        }

        .solution-card--featured h3 {
            font-family: 'Outfit', sans-serif;
            color: #ffffff;
            font-size: clamp(1.5rem, 2.4vw, 1.85rem);
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .solution-card--featured p {
            color: rgba(255, 255, 255, 0.88);
            font-size: 1.05rem;
            font-weight: 400;
        }

        .solution-card--featured strong {
            color: #ffffff;
            font-weight: 700;
        }

        @media (max-width: 980px) {
            .solution-grid {
                grid-template-columns: 1fr;
            }

            .solution-card--featured {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 36px 28px;
                text-align: left;
            }

            .solution-card--featured .solution-card__num {
                font-size: 4.5rem;
            }
        }

        /* Solution Section */
        .solution-content,
        .audience-content {
            padding: 60px;
        }

        .solution-text h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .solution-text p.lead {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .highlight-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .highlight-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 24px;
            background: var(--surface-color);
            border-radius: 12px;
            border: none;
        }



        .highlight-item strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .highlight-item p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Audience Section */
        .arch-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 24px;
            background: #ffffff;
            border: none;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease;
        }

        .step:hover {
            transform: translateX(8px);
        }

        .step-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #582c77;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .step-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin: 0;
        }

        /* ROI Section — нижняя половина общего градиента, продолжает .demo сверху */
        .roi {
            background: linear-gradient(180deg, #dccbed 0%, #cebde3 100%);
            border-bottom: 1px solid var(--divider);
            position: relative;
            overflow: hidden;
        }
        .roi::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(88, 44, 119, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(88, 44, 119, 0.08) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
            z-index: 0;
        }

        .roi .container {
            position: relative;
            z-index: 2;
        }

        .roi-face {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            pointer-events: none;
            z-index: 1;
            opacity: 0.9;
        }

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

        .roi-card {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            padding: 36px 28px 32px 28px;
            text-align: left;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.35s ease,
                        border-color 0.3s ease;
        }

        .roi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 28px;
            right: 28px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .roi-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 50px rgba(88, 44, 119, 0.15),
                        0 6px 16px rgba(0, 0, 0, 0.05);
            border-color: rgba(88, 44, 119, 0.25);
        }

        .roi-card__num {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #d9c9eb;
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 16px;
        }

        .roi-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .roi-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0 0 24px 0;
            flex-grow: 1;
        }

        .roi-card__metric {
            border-top: 1px solid var(--surface-border);
            padding-top: 20px;
            margin-top: auto;
        }

        .roi-card__value {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 3vw, 2.6rem);
            font-weight: 700;
            color: #582c77;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .roi-card__label {
            color: var(--text-tertiary);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            line-height: 1.4;
        }

        @media (max-width: 1100px) {
            .roi-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .roi-face {
                display: none;
            }

            .roi {
                overflow: hidden;
            }
        }

        /* legacy compatibility (unused now) */
        .roi-card .icon-wrapper {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px auto;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Carousel Styles */
        .carousel-wrapper {
            position: relative;
            padding: 0 40px;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            /* Firefox */
            gap: 20px;
            padding: 10px 0;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
            /* Chrome */
        }

        .carousel-slide {
            flex: 0 0 100%;
            scroll-snap-align: center;
            display: flex;
            justify-content: center;
        }

        .mobile-mockup {
            width: 280px;
            height: 580px;
            background: #f5f6f8;
            border: 10px solid #e6e6eb;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 1.1rem;
            font-weight: 500;
            text-align: center;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .mobile-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 24px;
            background: #e6e6eb;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            z-index: 2;
        }

        .mobile-mockup img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            z-index: 10;
            color: var(--text-primary);
            transition: all 0.2s;
        }

        .carousel-btn:hover {
            background: #f1f5f9;
            border-color: #94a3b8;
        }

        .carousel-btn.prev {
            left: -10px;
        }

        .carousel-btn.next {
            right: -10px;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 960px) {
            .split-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .solution-content,
            .audience-content {
                padding: 40px 24px;
            }

            .roi-grid {
                grid-template-columns: 1fr;
            }

            .audience-visual {
                grid-row: 2;
            }
        }

        /* ========================================================
           HERO — NEW LAYOUT
           Left column: copy. Right column: phone stage.
           Stays two-column down to 900px so the layout holds on
           MacBook Air 13" (~1280–1440px viewport).
           ======================================================== */

        .hero .container { position: relative; z-index: 2; }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.55;
            pointer-events: none;
            z-index: 0;
        }
        .hero-orb--a {
            width: 460px;
            height: 460px;
            background: #a18ab6;
            top: -120px;
            left: -120px;
        }
        .hero-orb--b {
            width: 520px;
            height: 520px;
            background: #cfb7ff;
            bottom: -180px;
            right: -180px;
            opacity: 0.5;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(88, 44, 119, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(88, 44, 119, 0.08) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 56px;
            align-items: center;
            min-height: 620px;
        }

        /* ===== Copy column ===== */
        .hero-copy {
            text-align: left;
            max-width: 580px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px 8px 14px;
            background: rgba(255, 255, 255, 0.72);
            -webkit-backdrop-filter: blur(12px);
                    backdrop-filter: blur(12px);
            border: 1px solid rgba(88, 44, 119, 0.15);
            border-radius: 999px;
            font-size: 0.82rem;
            color: #582c77;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 28px;
        }
        .hero-eyebrow__dot {
            width: 8px;
            height: 8px;
            background: #582c77;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(88, 44, 119, 0.18);
            animation: hero-pulse 2.4s ease-in-out infinite;
        }
        @keyframes hero-pulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(88, 44, 119, 0.18); }
            50%      { box-shadow: 0 0 0 9px rgba(88, 44, 119, 0.04); }
        }

        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.4rem, 4.4vw, 4rem);
            line-height: 1.04;
            letter-spacing: -0.03em;
            color: #1c1c1e;
            margin: 0 0 28px 0;
            font-weight: 700;
        }
        .hero-title .accent {
            color: #582c77;
        }

        .hero-lead {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.15rem, 1.7vw, 1.4rem);
            line-height: 1.4;
            color: #1c1c1e;
            font-weight: 600;
            margin: 0 0 16px 0;
        }
        .hero-lead .accent { color: #582c77; }

        .hero-body {
            font-size: clamp(1rem, 1.2vw, 1.1rem);
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0 0 28px 0;
            max-width: 540px;
        }
        .hero-body .accent-soft { color: #582c77; font-weight: 600; }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 14px;
            margin: 0 0 36px 0;
        }
        .hero-tags__label {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 700;
        }
        .hero-tags__list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .hero-tags__list li {
            display: inline-block;
            padding: 8px 16px;
            background: #582c77;
            border: none;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
        }
        .hero-tags__list li:hover {
            transform: translateY(-2px);
            background: #6b3690;
            box-shadow: 0 8px 18px rgba(88, 44, 119, 0.28);
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }
        .hero-cta__primary {
            padding: 15px 26px;
            font-size: 1rem;
            border-radius: 14px;
            box-shadow: 0 14px 30px rgba(88, 44, 119, 0.28);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
        }
        .hero-cta__primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(88, 44, 119, 0.34);
        }
        .hero-cta__arrow {
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .hero-cta__primary:hover .hero-cta__arrow { transform: translateX(4px); }

        .hero-cta__secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #582c77;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 8px 4px;
            position: relative;
        }
        .hero-cta__secondary::after {
            content: '';
            position: absolute;
            left: 4px;
            right: 24px;
            bottom: 4px;
            height: 1.5px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.32s ease;
            opacity: 0;
        }
        .hero-cta__secondary:hover::after,
        .hero-cta__secondary:focus-visible::after {
            transform: scaleX(1);
            opacity: 1;
        }
        .hero-cta__icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .hero-cta__secondary:hover .hero-cta__icon { transform: translateX(3px); }

        /* ===== Stage column (phones) ===== */
        .hero-stage {
            position: relative;
            width: 100%;
            min-height: 580px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-stage__glow {
            position: absolute;
            inset: 8% 0;
            background: radial-gradient(ellipse at center, rgba(138, 95, 192, 0.4) 0%, transparent 65%);
            filter: blur(30px);
            pointer-events: none;
        }

        .hero-stage__ring {
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            border: 1px dashed rgba(88, 44, 119, 0.22);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: hero-spin 45s linear infinite;
            pointer-events: none;
        }
        @keyframes hero-spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hero-phone {
            position: absolute;
            background: #ffffff;
            border: 9px solid #1c1c1e;
            border-radius: 38px;
            overflow: hidden;
            box-shadow:
                0 24px 56px rgba(88, 44, 119, 0.22),
                0 8px 18px rgba(0, 0, 0, 0.10);
            transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.5s ease;
        }
        .hero-phone__notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 88px;
            height: 20px;
            background: #1c1c1e;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            z-index: 2;
        }
        .hero-phone__screen {
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 50%),
                linear-gradient(165deg, #f4eeff 0%, #e3d5f7 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8a5fc0;
            font-size: 0.92rem;
            font-weight: 500;
            text-align: center;
            padding: 28px 16px;
        }
        .hero-phone__label { letter-spacing: 0.02em; }

        .hero-phone--front {
            width: 240px;
            height: 480px;
            z-index: 3;
            transform: translateY(0);
            box-shadow:
                0 32px 72px rgba(88, 44, 119, 0.28),
                0 10px 24px rgba(0, 0, 0, 0.12);
        }
        .hero-phone--back { width: 210px; height: 430px; z-index: 1; opacity: 0.96; }
        .hero-phone--left {
            transform: translateX(-145px) translateY(20px) rotate(-9deg);
            transform-origin: bottom right;
        }
        .hero-phone--right {
            transform: translateX(145px) translateY(20px) rotate(9deg);
            transform-origin: bottom left;
        }

        .hero-stage:hover .hero-phone--front {
            transform: translateY(-10px);
            box-shadow:
                0 40px 90px rgba(88, 44, 119, 0.34),
                0 14px 30px rgba(0, 0, 0, 0.15);
        }
        .hero-stage:hover .hero-phone--left {
            transform: translateX(-170px) translateY(12px) rotate(-12deg);
        }
        .hero-stage:hover .hero-phone--right {
            transform: translateX(170px) translateY(12px) rotate(12deg);
        }

        /* Floating chips */
        .hero-chip {
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 14px 30px rgba(88, 44, 119, 0.18),
                        0 2px 6px rgba(0, 0, 0, 0.05);
            font-size: 0.82rem;
            font-weight: 600;
            color: #1c1c1e;
            border: 1px solid rgba(88, 44, 119, 0.08);
            z-index: 4;
            white-space: nowrap;
            animation: hero-float 6s ease-in-out infinite;
        }
        .hero-chip--match {
            top: 12%;
            left: -8px;
            color: #582c77;
        }
        .hero-chip--meet {
            bottom: 12%;
            right: -8px;
            animation-delay: -3s;
        }
        .hero-chip__dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #34c759;
            box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.22);
        }
        .hero-chip__icon {
            display: inline-flex;
            width: 16px;
            height: 16px;
            color: #582c77;
        }
        .hero-chip__icon svg { width: 100%; height: 100%; }

        @keyframes hero-float {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-8px); }
        }

        /* ===== Hero responsive ===== */
        @media (max-width: 1100px) {
            .hero-grid { gap: 32px; }
            .hero-phone--front { width: 220px; height: 440px; }
            .hero-phone--back  { width: 190px; height: 390px; }
            .hero-phone--left  { transform: translateX(-120px) translateY(20px) rotate(-9deg); }
            .hero-phone--right { transform: translateX(120px)  translateY(20px) rotate(9deg); }
            .hero-stage:hover .hero-phone--left  { transform: translateX(-140px) translateY(10px) rotate(-12deg); }
            .hero-stage:hover .hero-phone--right { transform: translateX(140px)  translateY(10px) rotate(12deg); }
            .hero-stage__ring { width: 320px; height: 320px; }
        }

        @media (max-width: 900px) {
            .hero { padding: 36px 0 72px; }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
                min-height: 0;
            }
            .hero-copy {
                max-width: 100%;
                text-align: center;
                margin: 0 auto;
            }
            .hero-body { margin-left: auto; margin-right: auto; }
            .hero-tags { justify-content: center; }
            .hero-cta  { justify-content: center; }
            .hero-stage { min-height: 500px; }
        }

        @media (max-width: 600px) {
            .hero {
                overflow-x: clip;
            }

            .hero-stage {
                overflow: hidden;
                max-width: 100%;
            }

            .hero-phone--front { width: 210px; height: 420px; border-width: 8px; border-radius: 34px; }
            .hero-phone--back  { width: 170px; height: 350px; border-width: 7px; border-radius: 30px; }
            .hero-phone--left  { transform: translateX(-95px) translateY(20px) rotate(-9deg); }
            .hero-phone--right { transform: translateX(95px)  translateY(20px) rotate(9deg); }
            .hero-stage:hover .hero-phone--left  { transform: translateX(-105px) translateY(12px) rotate(-11deg); }
            .hero-stage:hover .hero-phone--right { transform: translateX(105px)  translateY(12px) rotate(11deg); }
            .hero-chip { font-size: 0.75rem; padding: 8px 12px; }
            .hero-chip--match { top: 4%; left: 0; }
            .hero-chip--meet  { bottom: 4%; right: 0; }
            .hero-stage__ring { width: 280px; height: 280px; }
        }

        @media (max-width: 420px) {
            .hero-stage { min-height: 420px; }
            .hero-phone--front { width: 180px; height: 370px; }
            .hero-phone--back  { width: 150px; height: 310px; }
            .hero-phone--left  { transform: translateX(-75px) translateY(16px) rotate(-9deg); }
            .hero-phone--right { transform: translateX(75px)  translateY(16px) rotate(9deg); }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-eyebrow__dot,
            .hero-stage__ring,
            .hero-chip { animation: none; }
        }

        /* Global mobile rhythm */
        @media (max-width: 960px) {
            html {
                scroll-padding-top: 72px;
            }
        }

        @media (max-width: 768px) {
            html {
                scroll-padding-top: 68px;
            }

            section {
                padding: 72px 0;
            }

            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-header h2 {
                font-size: clamp(1.75rem, 6vw, 2.25rem);
            }

            .hero {
                padding: 32px 0 56px;
            }

            .implementation,
            .cases,
            .formats {
                padding: 72px 0;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 56px 0;
            }
        }

        /* Demo / Lead form — верхняя половина общего градиента, единого с .roi ниже */
        .demo {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #ebe1f7 0%, #dccbed 100%);
            border-top: 1px solid var(--divider);
        }
        .demo::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(88, 44, 119, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(88, 44, 119, 0.08) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
            z-index: 0;
        }
        .demo .container {
            position: relative;
            z-index: 2;
        }

        .demo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }

        .demo-info .pill {
            margin-bottom: 20px;
        }

        .demo-info h2 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .demo-lead {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 520px;
        }

        .demo-points {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .demo-points li {
            position: relative;
            padding-left: 36px;
            color: var(--text-primary);
            font-size: 1rem;
            line-height: 1.5;
        }

        .demo-points li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background:
                url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'><path d='M6 11.5l3.2 3.2L16 8' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center / 14px no-repeat,
                linear-gradient(135deg, #582c77 0%, #a18ab6 100%);
        }

        .demo-form {
            background: #ffffff;
            border: 1px solid var(--surface-border);
            border-radius: 24px;
            padding: 36px;
            box-shadow: 0 14px 40px rgba(28, 28, 30, 0.06);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            position: relative;
            overflow: hidden;
        }

        .demo-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 36px;
            right: 36px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .demo-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .demo-field--full {
            grid-column: 1 / -1;
        }

        .demo-field label {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-tertiary);
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .demo-field__hint {
            color: #b0b0b6;
            font-weight: 500;
            text-transform: none;
            letter-spacing: 0.02em;
        }

        .demo-field input,
        .demo-field select {
            width: 100%;
            padding: 13px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 12px;
            background: #f7f7f9;
            font-family: inherit;
            font-size: 0.98rem;
            color: var(--text-primary);
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .demo-field input::placeholder {
            color: #b0b0b6;
        }

        .demo-field input:focus,
        .demo-field select:focus {
            outline: none;
            border-color: #582c77;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(88, 44, 119, 0.12);
        }

        .demo-field select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b6b6f'><path d='M4 6l4 4 4-4'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 14px;
            padding-right: 40px;
            cursor: pointer;
        }

        .demo-consent {
            grid-column: 1 / -1;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--text-tertiary);
            line-height: 1.45;
            cursor: pointer;
        }

        .demo-consent input[type="checkbox"] {
            margin-top: 3px;
            width: 16px;
            height: 16px;
            accent-color: #582c77;
            flex-shrink: 0;
            cursor: pointer;
        }

        .demo-consent a {
            color: #582c77;
            text-decoration: underline;
        }

        .demo-submit {
            grid-column: 1 / -1;
            width: 100%;
            padding: 16px 24px;
            border-radius: 14px;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
            cursor: pointer;
        }

        .demo-submit__arrow {
            transition: transform 0.2s ease;
            font-size: 1.15rem;
            line-height: 1;
        }

        .demo-submit:hover .demo-submit__arrow {
            transform: translateX(4px);
        }

        @media (max-width: 960px) {
            .demo-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 560px) {
            .demo-form {
                padding: 24px;
                grid-template-columns: 1fr;
            }

            .demo-form::before {
                left: 24px;
                right: 24px;
            }
        }

        /* Phone modal (header «Позвонить») */
        .phone-modal {
            --phone-accent: #582c77;
            --phone-accent-dark: #6e3a93;
            --phone-accent-soft: #a18ab6;
            --phone-modal-ease: cubic-bezier(0.2, 0.85, 0.25, 1);
            --phone-modal-duration: 0.38s;
            position: fixed;
            inset: 0;
            z-index: 95;
            display: grid;
            place-items: center;
            padding: clamp(16px, 4vw, 40px);
            pointer-events: none;
            visibility: hidden;
        }

        .phone-modal.is-open {
            pointer-events: auto;
            visibility: visible;
        }

        body.phone-modal-open {
            overflow: hidden;
        }

        .phone-modal__backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            padding: 0;
            margin: 0;
            opacity: 0;
            background:
                radial-gradient(ellipse 80% 60% at 50% 100%, rgba(88, 44, 119, 0), transparent 70%),
                rgba(17, 17, 17, 0);
            backdrop-filter: blur(0);
            -webkit-backdrop-filter: blur(0);
            cursor: pointer;
            transition:
                opacity var(--phone-modal-duration) var(--phone-modal-ease),
                background var(--phone-modal-duration) var(--phone-modal-ease),
                backdrop-filter var(--phone-modal-duration) var(--phone-modal-ease),
                -webkit-backdrop-filter var(--phone-modal-duration) var(--phone-modal-ease);
        }

        .phone-modal.is-open .phone-modal__backdrop {
            opacity: 1;
            background:
                radial-gradient(ellipse 80% 60% at 50% 100%, rgba(88, 44, 119, 0.18), transparent 70%),
                rgba(17, 17, 17, 0.48);
            backdrop-filter: blur(14px) saturate(120%);
            -webkit-backdrop-filter: blur(14px) saturate(120%);
        }

        .phone-modal__card {
            position: relative;
            z-index: 1;
            width: min(520px, calc(100vw - 32px));
            overflow: hidden;
            opacity: 0;
            background: linear-gradient(165deg, #fff 0%, #faf8fc 48%, #f5f2f9 100%);
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 24px;
            box-shadow:
                0 2px 0 rgba(255, 255, 255, 0.9) inset,
                0 32px 80px rgba(20, 20, 30, 0.22),
                0 0 0 1px rgba(88, 44, 119, 0.12);
            text-align: center;
            transform: translateY(16px) scale(0.96);
            transition:
                transform var(--phone-modal-duration) var(--phone-modal-ease),
                opacity var(--phone-modal-duration) var(--phone-modal-ease);
        }

        .phone-modal.is-open .phone-modal__card {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .phone-modal__card::before {
            content: "";
            position: absolute;
            top: -80px;
            right: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(closest-side, rgba(88, 44, 119, 0.22), transparent);
            pointer-events: none;
        }

        .phone-modal__card::after {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--phone-accent) 20%, var(--phone-accent-dark) 50%, var(--phone-accent) 80%, transparent);
            opacity: 0.85;
            pointer-events: none;
        }

        .phone-modal__head {
            position: relative;
            padding: 32px 28px 20px;
        }

        .phone-modal__close {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 5;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.72);
            color: var(--text-tertiary);
            display: grid;
            place-items: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .phone-modal__close svg {
            display: block;
            width: 17px;
            height: 17px;
        }

        .phone-modal__close:hover {
            background: #fff;
            color: var(--phone-accent-dark);
            border-color: rgba(88, 44, 119, 0.28);
            box-shadow: 0 6px 18px rgba(88, 44, 119, 0.16);
        }

        .phone-modal__close:active {
            transform: scale(0.94);
        }

        .phone-modal__badge {
            width: 56px;
            height: 56px;
            margin: 0 auto 14px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(145deg, var(--phone-accent) 0%, var(--phone-accent-dark) 100%);
            box-shadow: 0 10px 28px rgba(88, 44, 119, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
        }

        .phone-modal__badge svg {
            display: block;
            width: 26px;
            height: 26px;
        }

        .phone-modal__title {
            margin: 0;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-tertiary);
        }

        .phone-modal__body {
            position: relative;
            padding: 0 28px 28px;
        }

        .phone-modal__number-wrap {
            margin: 0 0 22px;
            padding: 22px 24px;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
            border: 1px solid rgba(88, 44, 119, 0.14);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.95) inset,
                0 12px 32px rgba(88, 44, 119, 0.08);
        }

        .phone-modal__number {
            margin: 0;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4.2vw, 42px);
            font-weight: 800;
            letter-spacing: 0.06em;
            line-height: 1.08;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }

        .phone-modal__actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .phone-modal__action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 52px;
            padding: 0 18px;
            border-radius: 18px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.01em;
            line-height: 1.2;
            text-decoration: none;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            border: 1px solid transparent;
            transition:
                transform 0.22s ease,
                box-shadow 0.22s ease,
                background 0.22s ease,
                border-color 0.22s ease,
                color 0.22s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .phone-modal__action-ic {
            display: grid;
            place-items: center;
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .phone-modal__action-ic svg {
            display: block;
            width: 20px;
            height: 20px;
        }

        .phone-modal__ic-copy,
        .phone-modal__ic-check {
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .phone-modal__ic-copy[hidden],
        .phone-modal__ic-check[hidden] {
            display: none;
        }

        .phone-modal__action--primary.is-copied .phone-modal__ic-check {
            animation: phone-modal-check-pop 0.35s cubic-bezier(0.2, 0.85, 0.25, 1);
        }

        @keyframes phone-modal-check-pop {
            from { opacity: 0; transform: scale(0.7); }
            to { opacity: 1; transform: scale(1); }
        }

        .phone-modal__action-text {
            white-space: nowrap;
        }

        .phone-modal__action--primary {
            color: #fff;
            background: linear-gradient(145deg, var(--phone-accent) 0%, var(--phone-accent-dark) 100%);
            box-shadow: 0 10px 24px rgba(88, 44, 119, 0.34), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
        }

        .phone-modal__action--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(88, 44, 119, 0.42), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
        }

        .phone-modal__action--primary:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 6px 16px rgba(88, 44, 119, 0.3);
        }

        .phone-modal__action--primary.is-copied {
            background: linear-gradient(145deg, var(--accent-success) 0%, #2d6a3e 100%);
            box-shadow: 0 10px 24px rgba(52, 199, 89, 0.32);
        }

        .phone-modal__action--secondary {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.88);
            border-color: rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 14px rgba(20, 20, 30, 0.06);
        }

        .phone-modal__action--secondary:hover {
            transform: translateY(-2px);
            border-color: rgba(88, 44, 119, 0.35);
            color: var(--phone-accent-dark);
            box-shadow: 0 10px 22px rgba(88, 44, 119, 0.14);
        }

        .phone-modal__action--secondary:active {
            transform: translateY(0) scale(0.98);
        }

        .phone-modal__action:focus-visible {
            outline: 2px solid var(--phone-accent);
            outline-offset: 2px;
        }

        .phone-modal__status {
            margin: 14px 0 0;
            min-height: 18px;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: #2d6a3e;
        }

        .phone-modal__status[hidden] {
            display: block;
            visibility: hidden;
            opacity: 0;
        }

        .phone-modal__status:not([hidden]) {
            animation: phone-modal-status-in 0.35s ease;
        }

        @keyframes phone-modal-status-in {
            from { opacity: 0; transform: translateY(4px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

            .phone-modal__number {
                font-size: clamp(28px, 8vw, 36px);
                letter-spacing: 0.04em;
            }
        }

        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            left: clamp(12px, 2vw, 24px);
            bottom: clamp(12px, 2vw, 24px);
            right: clamp(12px, 2vw, 24px);
            z-index: 70;
            background: rgba(28, 28, 30, 0.92);
            backdrop-filter: blur(22px) saturate(140%);
            -webkit-backdrop-filter: blur(22px) saturate(140%);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 18px 20px;
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow: hidden;
            transform: translateY(calc(100% + 40px));
            opacity: 0;
            transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.35s ease;
            pointer-events: none;
        }

        .cookie-banner[hidden] {
            display: none;
        }

        .cookie-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 24px;
            right: 24px;
            height: 3px;
            background: linear-gradient(90deg, #582c77 0%, #a18ab6 100%);
            border-radius: 0 0 3px 3px;
        }

        .cookie-banner::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(closest-side, rgba(161, 138, 182, 0.22), transparent);
            pointer-events: none;
        }

        .cookie-banner.is-shown {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-banner.is-hiding {
            transform: translateY(calc(100% + 40px));
            opacity: 0;
            pointer-events: none;
        }

        .cb-row {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 14px;
            align-items: flex-start;
            z-index: 1;
        }

        .cb-text {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
            min-width: 0;
        }

        .cb-h {
            font-family: 'Outfit', 'Inter', sans-serif;
            font-size: 15px;
            line-height: 1.3;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: -0.2px;
            margin: 0;
        }

        .cb-h b {
            color: #a18ab6;
            font-weight: 700;
        }

        .cb-txt {
            font-size: 13px;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin: 0;
        }

        .cb-link {
            color: #ffffff;
            text-decoration: underline;
            text-decoration-color: rgba(255, 255, 255, 0.4);
            text-underline-offset: 3px;
            transition: text-decoration-color 0.2s ease, color 0.2s ease;
        }

        .cb-link:hover {
            color: #a18ab6;
            text-decoration-color: #a18ab6;
        }

        .cb-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .cb-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #582c77;
            color: #ffffff;
            border: none;
            cursor: pointer;
            padding: 11px 22px;
            border-radius: 14px;
            font-family: inherit;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: -0.1px;
            transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
        }

        .cb-btn:hover {
            background: #6b3690;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(88, 44, 119, 0.32);
        }

        .cb-btn:focus-visible {
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }

        @media (min-width: 780px) {
            .cookie-banner {
                right: auto;
                width: min(560px, calc(100% - 48px));
                flex-direction: row;
                align-items: center;
                padding: 18px 22px;
                gap: 18px;
            }

            .cb-row {
                flex: 1;
                flex-direction: row;
                align-items: center;
                gap: 18px;
            }

            .cb-actions {
                margin-left: auto;
            }
        }

        /* Feedback form status */
        .demo-form-status {
            grid-column: 1 / -1;
            margin: 0;
            font-size: 13px;
            line-height: 1.45;
        }

        .demo-form-status--error {
            color: #b0532d;
        }

        .demo-form-status--success {
            color: #2d6a3e;
        }

        /* Support chat widget */
        .cw-root {
            position: fixed;
            bottom: clamp(16px, 3vw, 24px);
            right: clamp(16px, 3vw, 24px);
            z-index: 90;
            font-family: inherit;
        }

        .cw-fab {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            background: #582c77;
            color: #fff;
            box-shadow: 0 8px 28px rgba(88, 44, 119, 0.42);
            display: grid;
            place-items: center;
            position: relative;
            transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .cw-fab:hover {
            background: #6e3a93;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(88, 44, 119, 0.5);
        }

        .cw-fab:active {
            transform: translateY(0) scale(0.96);
        }

        .cw-fab::after {
            content: "";
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid #582c77;
            opacity: 0;
            animation: cw-pulse 2.4s ease-out infinite;
            pointer-events: none;
        }

        .cw-root.is-open .cw-fab::after {
            animation: none;
        }

        @keyframes cw-pulse {
            0% { transform: scale(0.92); opacity: 0.75; }
            70% { transform: scale(1.28); opacity: 0; }
            100% { transform: scale(1.28); opacity: 0; }
        }

        .cw-fab-ic {
            position: absolute;
            display: grid;
            place-items: center;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .cw-fab-ic svg {
            display: block;
            width: 26px;
            height: 26px;
        }

        .cw-fab-ic--close {
            opacity: 0;
            transform: rotate(-90deg) scale(0.7);
        }

        .cw-root.is-open .cw-fab-ic--chat {
            opacity: 0;
            transform: rotate(90deg) scale(0.7);
        }

        .cw-root.is-open .cw-fab-ic--close {
            opacity: 1;
            transform: rotate(0) scale(1);
        }

        .cw-panel {
            position: absolute;
            bottom: calc(58px + 14px);
            right: 0;
            width: min(380px, calc(100vw - 32px));
            height: min(520px, calc(100dvh - 110px));
            background: #fff;
            border-radius: 20px;
            border: 1px solid rgba(88, 44, 119, 0.12);
            box-shadow: 0 24px 64px rgba(20, 20, 30, 0.16);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px) scale(0.94);
            transform-origin: bottom right;
            transition: opacity 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.28s;
            pointer-events: none;
        }

        .cw-root.is-open .cw-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        @media (max-width: 480px) {
            .cw-panel {
                right: -8px;
                width: calc(100vw - 32px);
                height: min(68dvh, 520px);
            }
        }

        .cw-head {
            flex-shrink: 0;
            padding: 14px 16px;
            background: linear-gradient(135deg, #582c77 0%, #6e3a93 100%);
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cw-head-av {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.22);
            border: 1px solid rgba(255, 255, 255, 0.35);
            display: grid;
            place-items: center;
            overflow: hidden;
            flex-shrink: 0;
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        .cw-head-av .cw-av-icon {
            width: 22px;
            height: 22px;
            display: block;
        }

        .cw-head-meta {
            flex: 1;
            min-width: 0;
        }

        .cw-head-meta b {
            display: block;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .cw-head-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 500;
            opacity: 0.9;
            margin-top: 2px;
        }

        .cw-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #3ecf8e;
            box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.35);
            animation: cw-online 2s ease-in-out infinite;
        }

        @keyframes cw-online {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.55; }
        }

        .cw-close {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            cursor: pointer;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            transition: background-color 0.22s ease, transform 0.22s ease;
        }

        .cw-close:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .cw-close svg {
            width: 18px;
            height: 18px;
            display: block;
        }

        .cw-msgs {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #f5f3f7;
            scrollbar-width: thin;
        }

        .cw-msg {
            display: flex;
            gap: 8px;
            align-items: flex-end;
            max-width: 92%;
            animation: cw-msg-in 0.35s ease both;
        }

        @keyframes cw-msg-in {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .cw-msg.user {
            align-self: flex-end;
            flex-direction: row-reverse;
        }

        .cw-msg-av {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            overflow: hidden;
        }

        .cw-msg-av .cw-av-icon {
            width: 18px;
            height: 18px;
            display: block;
        }

        .cw-msg-av--agent {
            background: linear-gradient(145deg, rgba(88, 44, 119, 0.14) 0%, rgba(161, 138, 182, 0.28) 100%);
            color: #582c77;
            border: 1px solid rgba(88, 44, 119, 0.16);
            box-shadow: 0 2px 8px rgba(88, 44, 119, 0.1);
        }

        .cw-msg-av--user {
            background: linear-gradient(145deg, #6e3a93 0%, #582c77 100%);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 8px rgba(88, 44, 119, 0.25);
        }

        .cw-msg-bubble {
            padding: 10px 13px;
            border-radius: 14px;
            font-size: 13.5px;
            line-height: 1.5;
            border-top-left-radius: 4px;
        }

        .cw-msg:not(.user) .cw-msg-bubble {
            background: #fff;
            border: 1px solid rgba(88, 44, 119, 0.12);
            color: #1c1c1e;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .cw-msg.user .cw-msg-bubble {
            background: #582c77;
            color: #fff;
            border-top-right-radius: 4px;
            border-top-left-radius: 14px;
        }

        .cw-msg-time {
            font-size: 10px;
            color: #8e8e93;
            margin-top: 4px;
            padding: 0 2px;
        }

        .cw-msg.user .cw-msg-time {
            text-align: right;
        }

        .cw-foot {
            flex-shrink: 0;
            padding: 12px 14px 14px;
            background: #fff;
            border-top: 1px solid rgba(88, 44, 119, 0.12);
        }

        .cw-form {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .cw-form.is-hidden {
            display: none;
        }

        .cw-identify {
            display: grid;
            gap: 10px;
            margin-bottom: 12px;
        }

        .cw-identify.is-collapsing {
            max-height: 0;
            opacity: 0;
            margin-bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .cw-identify-grid {
            display: grid;
            gap: 8px;
        }

        .cw-identify-agree {
            font-size: 12px;
            color: #636366;
            line-height: 1.45;
            display: flex;
            gap: 8px;
            align-items: flex-start;
            cursor: pointer;
        }

        .cw-identify-agree input[type="checkbox"] {
            margin-top: 2px;
            width: 18px;
            height: 18px;
            min-width: 18px;
            flex-shrink: 0;
            accent-color: #582c77;
            cursor: pointer;
        }

        .cw-identify-agree a {
            color: #582c77;
            text-decoration: underline;
        }

        .cw-identify-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 48px;
            margin-top: 4px;
            padding: 12px 20px;
            border: none;
            border-radius: 14px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.01em;
            line-height: 1.2;
            color: #fff;
            cursor: pointer;
            background: linear-gradient(145deg, #582c77 0%, #6e3a93 100%);
            box-shadow: 0 8px 22px rgba(88, 44, 119, 0.32);
            transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .cw-identify-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(88, 44, 119, 0.38);
        }

        .cw-identify-btn:active {
            transform: translateY(0) scale(0.98);
        }

        .cw-identify-btn:focus-visible {
            outline: 2px solid #582c77;
            outline-offset: 2px;
        }

        .cw-identify-btn:disabled {
            opacity: 0.55;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .cw-identify .cw-input {
            display: block;
            width: 100%;
            border-radius: 12px;
            padding: 11px 14px;
        }

        .cw-error {
            margin-top: 8px;
            font-size: 12px;
            line-height: 1.45;
            color: #b0532d;
        }

        .cw-input {
            flex: 1;
            min-width: 0;
            border: 1px solid rgba(88, 44, 119, 0.2);
            border-radius: 999px;
            padding: 11px 16px;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            background: #f9f7fb;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .cw-input:focus {
            border-color: #582c77;
            box-shadow: 0 0 0 3px rgba(88, 44, 119, 0.18);
            background: #fff;
        }

        .cw-send {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            flex-shrink: 0;
            background: #582c77;
            color: #fff;
            display: grid;
            place-items: center;
            transition: transform 0.22s ease, background-color 0.22s ease;
        }

        .cw-send:hover {
            background: #6e3a93;
        }

        .cw-send svg {
            width: 20px;
            height: 20px;
            display: block;
        }
