/*! Mizonin theme - main stylesheet (re-imported with UTF-8) */
        :root {
            --bg: #eef2f5;
            --bg-soft: #f7fafc;
            --surface: rgba(255, 255, 255, 0.94);
            --surface-strong: #ffffff;
            --surface-muted: #e6edf6;
            --text: #0d166b;
            --text-strong: #071045;
            --muted: #667184;
            --line: rgba(13, 22, 107, 0.12);
            --line-strong: rgba(13, 22, 107, 0.18);
            --primary: #46c514;
            --primary-dark: #2f990a;
            --brand: #1a2388;
            --brand-dark: #0d145a;
            --brand-soft: #dfe7ff;
            --brand-soft-2: #f1f5ff;
            --success-soft: rgba(70, 197, 20, 0.14);
            --shadow: 0 28px 70px rgba(17, 35, 88, 0.14);
            --shadow-soft: 0 18px 40px rgba(17, 35, 88, 0.08);
            --radius-xl: 34px;
            --radius-lg: 24px;
            --radius-md: 18px;
            --max-width: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Segoe UI", Arial, sans-serif;
            color: var(--text-strong);
            background:
                radial-gradient(circle at top left, rgba(26, 35, 136, 0.14), transparent 28%),
                radial-gradient(circle at right top, rgba(70, 197, 20, 0.12), transparent 24%),
                linear-gradient(180deg, #edf2f6 0%, #eef3f8 38%, #f7fafc 100%);
            line-height: 1.5;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        h1,
        h2,
        h3,
        p {
            margin: 0;
        }

        h1,
        h2,
        h3,
        .brand,
        .button,
        .button-secondary,
        .chip,
        .scenario-link {
            font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
        }

        .shell {
            width: min(var(--max-width), calc(100% - 32px));
            margin: 0 auto;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(18px);
            background: linear-gradient(180deg, rgba(16, 24, 103, 0.96), rgba(12, 19, 84, 0.94));
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 18px 50px rgba(10, 17, 70, 0.24);
        }

        .topbar-meta {
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
        }

        .topbar-meta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 7px 0;
        }

        .topbar-meta-group {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .topbar-meta-item {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.84rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .topbar-meta-link {
            font-size: 0.86rem;
            font-weight: 700;
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.86);
        }

        .topbar-meta-link span {
            color: rgba(255, 255, 255, 0.62);
            font-weight: 600;
        }

        @media (min-width: 761px) {
            .topbar-meta-link,
            .topbar-phone {
                transition: color 0.18s ease, opacity 0.18s ease, text-decoration-color 0.18s ease;
            }

            .topbar-meta-link:hover,
            .topbar-meta-link:focus-visible,
            .topbar-phone:hover,
            .topbar-phone:focus-visible {
                color: #ffffff;
                opacity: 1;
                text-decoration: underline;
                text-decoration-color: rgba(255, 255, 255, 0.42);
                text-underline-offset: 0.18em;
                text-decoration-thickness: 1px;
            }

            .topbar-meta-link:hover span,
            .topbar-meta-link:focus-visible span {
                color: rgba(255, 255, 255, 0.82);
            }
        }

        .topbar-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 28px;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #fff;
            font-weight: 800;
            letter-spacing: 0.02em;
        }

        .brand-lockup {
            display: grid;
            gap: 2px;
            min-width: 0;
        }

        .brand-title {
            color: #fff;
            font-size: 0.98rem;
            line-height: 1;
            white-space: nowrap;
        }

        .brand-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.76rem;
            font-weight: 600;
            line-height: 1.15;
            white-space: nowrap;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 13px;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(135deg, #4ed717, #25940e);
            box-shadow: 0 16px 26px rgba(70, 197, 20, 0.28);
        }

        .brand-note,
        .subtle,
        .muted {
            color: var(--muted);
        }

        .topbar .brand-note {
            color: rgba(255, 255, 255, 0.72);
        }

        .topbar-links,
        .topbar-actions,
        .hero-actions,
        .contact-actions,
        .scenario-actions,
        .inline-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .topbar-links {
            justify-self: center;
            justify-content: flex-start;
            gap: 18px;
            flex-wrap: nowrap;
        }

        .topbar-actions {
            justify-self: end;
            flex-wrap: nowrap;
            gap: 18px;
        }

        .topbar-nav-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: auto;
            padding: 4px 0;
            border-radius: 0;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.93rem;
            font-weight: 700;
            white-space: nowrap;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .topbar-nav-link:hover {
            color: #fff;
        }

        .topbar-nav-link.is-current {
            color: #fff;
        }

        .topbar-nav-link.is-current::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -12px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #46c514, #b0ff8f);
        }

        .topbar-phone {
            display: inline-flex;
            align-items: center;
            min-height: auto;
            padding: 0;
            border-radius: 0;
            color: #fff;
            border: 0;
            background: none;
            font-size: 0.96rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .topbar-cta {
            min-height: 40px;
            padding: 0 18px;
            white-space: nowrap;
        }

        .topbar .topbar-cta {
            color: var(--brand);
            background: #fff;
            box-shadow: 0 10px 22px rgba(7, 16, 69, 0.14);
        }

        .topbar-quick-call,
        .menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            box-shadow: none;
        }

        .topbar-quick-call svg,
        .menu-toggle svg {
            width: 20px;
            height: 20px;
        }

        .menu-toggle {
            position: relative;
            padding: 0;
            cursor: pointer;
        }

        .menu-toggle-lines {
            position: relative;
            width: 18px;
            height: 14px;
        }

        .menu-toggle-line {
            position: absolute;
            left: 0;
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
        }

        .menu-toggle-line:nth-child(1) {
            top: 0;
        }

        .menu-toggle-line:nth-child(2) {
            top: 6px;
        }

        .menu-toggle-line:nth-child(3) {
            top: 12px;
        }

        .menu-open .menu-toggle-line:nth-child(1) {
            top: 6px;
            transform: rotate(45deg);
        }

        .menu-open .menu-toggle-line:nth-child(2) {
            opacity: 0;
        }

        .menu-open .menu-toggle-line:nth-child(3) {
            top: 6px;
            transform: rotate(-45deg);
        }

        .menu-toggle-label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .mobile-menu {
            display: none;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu-shell {
            min-height: 100vh;
            padding: 108px 20px 24px;
            background:
                radial-gradient(circle at right top, rgba(70, 197, 20, 0.18), transparent 22%),
                linear-gradient(180deg, rgba(16, 24, 103, 0.98), rgba(12, 19, 84, 0.98));
        }

        .mobile-menu-panel {
            display: grid;
            gap: 22px;
            align-content: start;
            min-height: calc(100vh - 132px);
        }

        .mobile-menu-links {
            display: grid;
        }

        .mobile-menu-link {
            display: block;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
            font-size: clamp(1.55rem, 4vw, 2rem);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.03em;
        }

        .mobile-menu-link.is-current {
            color: #cfffbb;
        }

        .mobile-menu-link[data-nav-placeholder="true"]::after {
            content: "Скоро";
            display: inline-flex;
            margin-left: 12px;
            padding: 5px 8px;
            border-radius: 999px;
            color: #d8ffcb;
            background: rgba(70, 197, 20, 0.14);
            font-family: "Segoe UI", Arial, sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            vertical-align: middle;
        }

        .mobile-menu-meta {
            display: grid;
            gap: 10px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.96rem;
        }

        .mobile-menu-contact {
            margin-top: auto;
            display: grid;
            gap: 12px;
            padding-top: 10px;
        }

        .mobile-menu-contact a:not(.button) {
            color: #fff;
            font-weight: 700;
        }

        .menu-open {
            overflow: hidden;
        }

        .chip,
        .button,
        .button-secondary,
        .scenario-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 20px;
            border-radius: 999px;
            font-weight: 700;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
            text-decoration: none;
        }

        .chip {
            min-height: 42px;
            color: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.05);
        }

        .button {
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 20px 34px rgba(70, 197, 20, 0.24);
        }

        .button-secondary,
        .scenario-link {
            color: var(--brand);
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .contact-action-mobile {
            display: none;
        }

        .contact-action-desktop {
            display: inline-flex;
        }

        .topbar .button {
            min-height: 42px;
            color: var(--brand);
            background: #fff;
            box-shadow: 0 10px 22px rgba(7, 16, 69, 0.16);
        }

        .chip:hover,
        .button:hover,
        .button-secondary:hover,
        .card:hover,
        .gallery-card:hover,
        .scenario-card:hover,
        .case-card:hover,
        .faq-item:hover,
        .step-card:hover,
        .stats-card:hover,
        .form-panel:hover,
        .contact-panel:hover {
            transform: translateY(-3px);
        }

        .hero {
            padding: 52px 0 40px;
        }

        .hero-layout,
        .contact-wrap,
        .cta-band,
        .final-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
            gap: 24px;
        }

        .hero-card,
        .form-panel,
        .card,
        .scenario-card,
        .case-card,
        .gallery-card,
        .faq-item,
        .step-card,
        .stats-card,
        .contact-panel {
            border: 1px solid var(--line);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-soft);
        }

        .hero-card {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 44px;
            color: #fff;
            background:
                radial-gradient(circle at top right, rgba(70, 197, 20, 0.18), transparent 22%),
                linear-gradient(135deg, rgba(11, 19, 88, 0.98), rgba(25, 35, 136, 0.94) 54%, rgba(18, 27, 111, 0.96) 100%);
            box-shadow: 0 34px 72px rgba(8, 18, 72, 0.24);
        }

        .hero-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.08), transparent 26%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
            pointer-events: none;
        }

        .form-panel,
        .card,
        .scenario-card,
        .faq-item,
        .step-card,
        .stats-card,
        .contact-panel {
            position: relative;
            overflow: hidden;
            padding: 24px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
            box-shadow: var(--shadow-soft);
        }

        .form-panel::before,
        .contact-panel::before,
        .card::after,
        .scenario-card::after,
        .faq-item::after,
        .stats-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(26, 35, 136, 0.08), transparent 28%);
            pointer-events: none;
        }

        .case-card {
            padding: 0;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.98));
        }

        .gallery-card {
            overflow: hidden;
        }

        .form-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .form-actions .button,
        .form-actions .button-secondary {
            box-sizing: border-box;
            min-width: 0;
            width: 100%;
            line-height: 1.2;
            text-align: center;
        }

        .gallery-card-content {
            padding: 18px 20px 20px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            padding: 9px 14px;
            border-radius: 999px;
            color: #dcffe8;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .section-heading .eyebrow,
        .contact-panel .eyebrow {
            color: var(--brand);
            background: var(--brand-soft-2);
            border-color: rgba(26, 35, 136, 0.08);
            box-shadow: none;
        }

        h1 {
            max-width: 10.4ch;
            font-size: clamp(3rem, 5.3vw, 5.8rem);
            line-height: 0.9;
            letter-spacing: -0.055em;
        }

        h2 {
            color: var(--text);
            font-size: clamp(2rem, 3.7vw, 3.1rem);
            line-height: 0.98;
            letter-spacing: -0.045em;
        }

        h3 {
            color: var(--text);
            font-size: 1.22rem;
            line-height: 1.2;
        }

        .hero-copy {
            max-width: 34ch;
            margin-top: 22px;
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.82);
        }

        .hero-offer {
            list-style: none;
            margin: 22px 0 0;
            padding: 14px 16px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 14px;
            backdrop-filter: blur(6px);
        }
        .hero-offer li {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }
        .hero-offer strong {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.01em;
        }
        .hero-offer span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.78rem;
            line-height: 1.25;
        }
        @media (max-width: 720px) {
            .hero-offer { grid-template-columns: 1fr 1fr; padding: 12px 14px; }
            .hero-offer strong { font-size: 0.98rem; }
        }

        .hero-subline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .hero-subline span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(255, 255, 255, 0.09);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.92rem;
            font-weight: 700;
        }

        .hero-subline span::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8cff66, #46c514);
        }

        .hero-actions {
            margin-top: 26px;
        }

        .hero-card .button-secondary {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: none;
        }

        .hero-proof-strip {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-top: 22px;
        }

        .hero-proof-item {
            padding: 14px 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
        }

        .hero-proof-item strong {
            display: block;
            margin-bottom: 4px;
            color: #fff;
            font-size: 0.98rem;
        }

        .hero-proof-item span {
            color: rgba(255, 255, 255, 0.74);
            font-size: 0.82rem;
            line-height: 1.35;
        }

        .hero-visual {
            position: relative;
            overflow: hidden;
            flex: 1 1 auto;
            min-height: 320px;
            margin-top: 30px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 30px;
            background: #1a214f;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 56px rgba(8, 18, 72, 0.2);
        }

        .hero-visual::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(180deg, rgba(6, 10, 33, 0.08) 0%, rgba(6, 10, 33, 0.18) 34%, rgba(6, 10, 33, 0.74) 72%, rgba(6, 10, 33, 0.88) 100%),
                linear-gradient(90deg, rgba(8, 16, 66, 0.52) 0%, rgba(8, 16, 66, 0.08) 42%, rgba(8, 16, 66, 0) 68%),
                radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 34%);
            pointer-events: none;
        }

        .hero-visual-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            color: #fff;
            background: rgba(7, 14, 53, 0.46);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(12px);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            box-shadow: 0 14px 28px rgba(7, 12, 45, 0.2);
        }

        .hero-visual-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6ef52c, #35a90e);
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-visual-overlay {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            z-index: 2;
            display: grid;
            gap: 12px;
            max-width: none;
        }

        .hero-visual-caption {
            display: grid;
            gap: 6px;
            max-width: min(52%, 520px);
            padding: 18px 20px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 22px;
            color: #fff;
            background: linear-gradient(180deg, rgba(9, 15, 58, 0.24), rgba(7, 12, 45, 0.78));
            backdrop-filter: blur(16px);
            box-shadow: 0 20px 36px rgba(7, 12, 45, 0.24);
        }

        .hero-visual-kicker {
            display: inline-flex;
            width: fit-content;
            padding: 7px 10px;
            border-radius: 999px;
            color: #d8ffcb;
            background: rgba(70, 197, 20, 0.16);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-visual-caption strong,
        .hero-visual-caption span {
            color: inherit;
        }

        .hero-visual-caption strong {
            font-size: 1.62rem;
            line-height: 1.05;
            letter-spacing: -0.03em;
        }

        .hero-visual-caption span {
            max-width: 42ch;
            font-size: 0.92rem;
            line-height: 1.3;
            color: rgba(255, 255, 255, 0.84);
        }

        .hero-visual-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }

        .hero-visual-metric {
            display: grid;
            gap: 5px;
            min-width: 0;
            align-content: start;
            padding: 16px 18px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
            backdrop-filter: blur(14px);
            box-shadow: 0 14px 28px rgba(7, 12, 45, 0.18);
        }

        .hero-visual-metric strong {
            margin: 0;
            color: #fff;
            font-size: 1.4rem;
            line-height: 0.98;
            letter-spacing: -0.04em;
        }

        .hero-visual-metric span {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.84rem;
            line-height: 1.28;
        }

        .hero-visual-metric em {
            color: #cfffbb;
            font-style: normal;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-list,
        .proof-grid,
        .scenario-grid,
        .service-grid,
        .case-grid,
        .gallery-grid,
        .faq-grid,
        .workflow,
        .stats-strip,
        .form-grid {
            display: grid;
            gap: 16px;
        }

        .hero-list,
        .stats-strip,
        .form-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .proof-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .scenario-grid,
        .service-grid,
        .case-grid,
        .faq-grid,
        .gallery-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .workflow {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }

        .hero-list .card,
        .proof-grid .card,
        .service-grid .card,
        .stats-strip .stats-card {
            border-radius: var(--radius-lg);
        }

        .card strong,
        .scenario-card strong,
        .faq-item strong,
        .stats-card strong,
        .contact-panel strong,
        .form-panel strong {
            position: relative;
            z-index: 1;
            display: block;
            margin-bottom: 8px;
            color: var(--text);
        }

        .proof-grid .card::before,
        .scenario-card::before,
        .service-grid .card::before,
        .faq-item::before,
        .contact-panel::after {
            content: "";
            position: relative;
            z-index: 1;
            display: inline-block;
            width: 44px;
            height: 4px;
            margin-bottom: 14px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary), var(--brand));
        }

        section {
            padding: 30px 0;
        }

        .section-heading {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 20px;
            margin-bottom: 24px;
        }

        .section-intro {
            max-width: 58ch;
            color: var(--muted);
        }

        .contact-list,
        .check-list,
        .contact-lines,
        .case-meta {
            display: grid;
            gap: 8px;
        }

        .metric-note,
        .badge,
        .case-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 0.86rem;
            font-weight: 700;
        }

        .metric-note {
            color: var(--brand);
            background: var(--brand-soft-2);
        }

        .badge {
            color: var(--brand);
            background: var(--brand-soft-2);
            border: 1px solid rgba(26, 35, 136, 0.08);
        }

        .case-tag {
            color: #1d7c1a;
            background: rgba(70, 197, 20, 0.14);
        }

        .form-kicker {
            position: relative;
            z-index: 1;
            margin-top: 14px;
            color: var(--muted);
            font-size: 0.96rem;
        }

        .form-panel-points {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 10px;
            margin-top: 18px;
        }

        .form-panel-points div {
            display: flex;
            align-items: start;
            gap: 10px;
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.45;
        }

        .form-panel-points div::before {
            content: "";
            width: 8px;
            height: 8px;
            margin-top: 6px;
            flex: 0 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

        .form-premium-strip {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-top: 18px;
        }

        .form-premium-card {
            padding: 14px 16px;
            border-radius: 18px;
            border: 1px solid rgba(26, 35, 136, 0.08);
            background: linear-gradient(180deg, #f5f8ff, #edf3fb);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .form-premium-card strong {
            color: var(--brand);
            margin-bottom: 4px;
            font-size: 1.02rem;
            line-height: 1.1;
        }

        .form-premium-card span {
            color: var(--muted);
            font-size: 0.84rem;
            line-height: 1.35;
        }

        .form-panel {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.98));
            color: var(--text-strong);
        }

        .form-panel p,
        .form-panel label,
        .form-panel .muted,
        .form-panel .contact-link {
            color: var(--muted);
        }

        .contact-link {
            font-weight: 700;
        }

        .quick-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .quick-metrics div {
            position: relative;
            z-index: 1;
            padding: 16px;
            border-radius: var(--radius-md);
            background: linear-gradient(180deg, #f6f8ff, #edf2fb);
            border: 1px solid rgba(26, 35, 136, 0.08);
        }

        .quick-metrics strong {
            color: var(--brand);
            font-size: 1.5rem;
            line-height: 1;
        }

        .form-grid {
            position: relative;
            z-index: 1;
            margin-top: 18px;
        }

        .form-field,
        .form-field-full {
            display: grid;
            gap: 8px;
        }

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

        .form-field label,
        .form-field-full label {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--brand);
        }

        .required-mark {
            color: var(--primary-dark);
            margin-left: 4px;
            font-weight: 800;
        }

        .form-field input,
        .form-field select,
        .form-field textarea,
        .form-field-full textarea,
        .form-field-full input {
            width: 100%;
            padding: 15px 16px;
            border-radius: 16px;
            border: 1px solid rgba(13, 22, 107, 0.12);
            background: rgba(255, 255, 255, 0.98);
            color: var(--text-strong);
            font: inherit;
            outline: none;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .form-field input::placeholder,
        .form-field textarea::placeholder,
        .form-field-full textarea::placeholder,
        .form-field-full input::placeholder {
            color: #8490a2;
        }

        .form-field select option {
            color: var(--text-strong);
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus,
        .form-field-full textarea:focus,
        .form-field-full input:focus {
            border-color: rgba(70, 197, 20, 0.66);
            box-shadow: 0 0 0 4px rgba(70, 197, 20, 0.12);
        }

        .form-field textarea,
        .form-field-full textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-note,
        .form-status,
        .form-footnote {
            position: relative;
            z-index: 1;
            margin-top: 14px;
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .scenario-card,
        .case-card {
            display: grid;
            gap: 14px;
        }

        .scenario-card p,
        .case-card p,
        .faq-item p,
        .card p,
        .gallery-card p,
        .step-card p,
        .contact-panel p,
        .stats-card p {
            position: relative;
            z-index: 1;
            color: var(--muted);
        }

        .scenario-actions {
            margin-top: auto;
        }

        .scenario-link {
            min-height: 42px;
            padding: 0 14px;
            font-size: 0.92rem;
        }

        .cta-band {
            padding: 30px;
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at right top, rgba(70, 197, 20, 0.22), transparent 24%),
                linear-gradient(135deg, rgba(13, 20, 90, 0.98), rgba(26, 35, 136, 0.96));
            color: #fff;
            box-shadow: var(--shadow);
            align-items: center;
        }

        .cta-band h2,
        .cta-band strong {
            color: #fff;
        }

        .cta-band p {
            color: rgba(255, 255, 255, 0.8);
        }

        .case-meta,
        .contact-lines {
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
            color: var(--muted);
        }

        .gallery-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .case-media {
            aspect-ratio: 16 / 9;
            background: var(--surface-muted);
        }

        .case-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-body {
            display: grid;
            gap: 14px;
            padding: 24px;
        }

        .step-card span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            margin-bottom: 12px;
            border-radius: 50%;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 14px 22px rgba(70, 197, 20, 0.22);
            font-weight: 800;
        }

        .stats-card strong {
            font-size: 2rem;
            line-height: 1;
        }

        .final-grid {
            align-items: start;
        }

        footer {
            margin-top: 36px;
            padding: 8px 0 0;
            background: #0d145a;
            color: rgba(255,255,255,0.72);
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        @media (max-width: 1080px) {
            .brand-subtitle {
                display: none;
            }

            .hero-layout,
            .contact-wrap,
            .cta-band,
            .final-grid {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .topbar-meta-inner {
                flex-direction: column;
                align-items: start;
                gap: 6px;
            }

            .topbar-inner {
                grid-template-columns: 1fr auto;
            }

            .topbar-links-desktop,
            .topbar-phone,
            .topbar-cta {
                display: none;
            }

            .topbar-quick-call,
            .menu-toggle {
                display: inline-flex;
            }

            .mobile-menu {
                display: block;
                position: fixed;
                inset: 0;
                z-index: 19;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.25s ease;
            }

            .menu-open .mobile-menu {
                opacity: 1;
                pointer-events: auto;
            }

            .section-heading {
                align-items: start;
            }

            .proof-grid,
            .scenario-grid,
            .service-grid,
            .case-grid,
            .gallery-grid,
            .faq-grid,
            .workflow {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            .shell {
                width: min(var(--max-width), calc(100% - 20px));
            }

            .contact-action-desktop {
                display: none;
            }

            .contact-action-mobile {
                display: inline-flex;
            }

            .topbar-meta {
                display: none;
            }

            .topbar-inner,
            .section-heading,
            .hero-actions,
            .contact-actions,
            .inline-actions {
                flex-direction: column;
                align-items: start;
            }

            .topbar-inner {
                display: grid;
                grid-template-columns: 1fr auto;
                gap: 12px;
            }

            .brand-note {
                display: none;
            }

            .brand-title {
                font-size: 0.92rem;
            }

            .topbar-actions {
                gap: 10px;
            }

            .topbar-quick-call,
            .menu-toggle {
                width: 42px;
                height: 42px;
                border-radius: 13px;
            }

            .mobile-menu-shell {
                padding: 92px 20px 20px;
            }

            .mobile-menu-link {
                font-size: clamp(1.35rem, 8vw, 1.75rem);
            }

            .hero-card,
            .form-panel,
            .card,
            .scenario-card,
            .case-card,
            .faq-item,
            .step-card,
            .stats-card,
            .contact-panel,
            .cta-band {
                padding: 20px;
            }

            .hero-list,
            .proof-grid,
            .scenario-grid,
            .service-grid,
            .case-grid,
            .gallery-grid,
            .faq-grid,
            .workflow,
            .stats-strip,
            .hero-proof-strip,
            .form-premium-strip,
            .form-grid,
            .quick-metrics,
            .form-actions {
                grid-template-columns: 1fr;
            }

            .hero {
                padding-top: 34px;
            }

            .hero-card {
                padding-top: 26px;
            }

            .hero-visual {
                min-height: 340px;
            }

            .hero-visual-overlay {
                left: 14px;
                right: 14px;
                bottom: 14px;
                max-width: none;
            }

            .hero-visual-caption {
                padding: 16px;
                max-width: none;
            }

            .hero-visual-caption strong {
                font-size: 1.24rem;
            }

            .hero-visual-metrics {
                grid-template-columns: 1fr;
            }

            h1 {
                max-width: none;
                font-size: clamp(2.4rem, 9.2vw, 3.6rem);
            }

            .hero-copy {
                max-width: none;
            }
        }

        /* ===== DISAIN_1 catalog additions ===== */
        .catalog-intro {
            display: grid;
            gap: 10px;
            margin-top: 4px;
        }
        .catalog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            color: var(--muted);
            font-size: 0.92rem;
        }
        .catalog-meta strong { color: var(--text-strong); }
        .type-tiles {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 12px;
            margin-top: 22px;
        }
        .type-tile {
            display: grid;
            gap: 4px;
            padding: 18px 16px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
            color: var(--text-strong);
            text-decoration: none;
            transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
        }
        .type-tile:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(17, 35, 88, 0.12);
            border-color: rgba(13, 22, 107, 0.25);
        }
        .type-tile strong {
            font-size: 1.02rem;
            line-height: 1.2;
            color: var(--text);
        }
        .type-tile span {
            color: var(--muted);
            font-size: 0.84rem;
            line-height: 1.3;
        }
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 24px;
        }
        .product-card {
            display: grid;
            grid-template-rows: auto 1fr auto;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #ffffff;
            box-shadow: var(--shadow-soft);
            transition: transform .15s ease, box-shadow .15s ease;
        }
        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 44px rgba(17, 35, 88, 0.14);
        }
        .product-media {
            position: relative;
            aspect-ratio: 4 / 3;
            background: linear-gradient(135deg, #1a214f 0%, #0d145a 60%, #121b6f 100%);
            overflow: hidden;
        }
        .product-media::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 48px),
                repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 36px),
                radial-gradient(circle at 30% 30%, rgba(70,197,20,0.2), transparent 40%);
        }
        .product-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #fff;
            background: rgba(70, 197, 20, 0.92);
            box-shadow: 0 8px 18px rgba(47, 153, 10, 0.3);
        }
        .product-badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ffffff;
        }
        .product-body {
            display: grid;
            gap: 10px;
            padding: 18px 18px 6px;
        }
        .product-title {
            margin: 0;
            color: var(--text);
            font-size: 1.08rem;
            line-height: 1.25;
        }
        .product-spec {
            display: grid;
            grid-template-columns: max-content 1fr;
            gap: 4px 10px;
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.3;
        }
        .product-spec dt { color: var(--muted); }
        .product-spec dd { margin: 0; color: var(--text-strong); font-weight: 600; }
        .product-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 14px 18px 18px;
            border-top: 1px solid var(--line);
            background: #f7fafc;
        }
        .product-price {
            display: grid;
            gap: 2px;
            color: var(--text);
        }
        .product-price em { color: var(--muted); font-style: normal; font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; }
        .product-price strong { font-size: 1.18rem; letter-spacing: -0.02em; }
        .product-cta {
            display: inline-flex;
            align-items: center;
            padding: 10px 14px;
            border-radius: 999px;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 22px rgba(47, 153, 10, 0.28);
            transition: background .15s ease;
        }
        .product-cta:hover { background: var(--primary-dark); }
        .catalog-footer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 22px;
            padding: 16px 20px;
            border: 1px dashed var(--line-strong);
            border-radius: var(--radius-lg);
            background: var(--brand-soft-2);
        }
        .catalog-footer strong { color: var(--text); }
        .catalog-footer .button { padding: 12px 18px; }

        .callback-strip {
            display: grid;
            grid-template-columns: 1.2fr auto;
            align-items: center;
            gap: 18px;
            margin-top: 18px;
            padding: 18px 22px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, #0d145a 0%, #1a2388 100%);
            color: #fff;
        }
        .callback-strip h3 { margin: 0; color: #fff; font-size: 1.1rem; }
        .callback-strip p { margin: 4px 0 0; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
        .callback-strip .button { background: var(--primary); }
        .callback-strip .button:hover { background: var(--primary-dark); }

        body.callback-modal-open {
            overflow: hidden;
        }
        .callback-modal[hidden] {
            display: none !important;
        }
        .callback-modal {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: grid;
            place-items: center;
            padding: 24px;
        }
        .callback-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(8, 15, 49, 0.62);
            backdrop-filter: blur(6px);
        }
        .callback-modal__dialog {
            position: relative;
            width: min(100%, 540px);
            padding: 28px;
            border: 1px solid rgba(21, 31, 95, 0.12);
            border-radius: 28px;
            background: #ffffff;
            box-shadow: 0 28px 80px rgba(15, 23, 72, 0.24);
        }
        .callback-modal__dialog:focus {
            outline: none;
        }
        .callback-modal__close {
            position: absolute;
            top: 14px;
            right: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 0;
            border-radius: 999px;
            background: rgba(15, 23, 72, 0.06);
            color: var(--text);
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .callback-modal__close:hover {
            background: rgba(15, 23, 72, 0.12);
        }
        .callback-modal__close span {
            font-size: 1.7rem;
            line-height: 1;
        }
        .callback-modal__dialog .badge {
            margin-bottom: 14px;
        }
        .callback-modal__dialog h3 {
            margin: 0;
            color: var(--text);
            font-size: clamp(1.35rem, 2.8vw, 1.8rem);
        }
        .callback-modal__intro,
        .callback-modal__success p {
            margin: 12px 0 0;
            color: var(--muted);
            font-size: 0.98rem;
        }
        .callback-form {
            display: grid;
            gap: 14px;
            margin-top: 20px;
        }
        .callback-form__field {
            display: grid;
            gap: 7px;
            color: var(--text);
            font-size: 0.94rem;
        }
        .callback-form__field span {
            font-weight: 600;
        }
        .callback-form__field small {
            color: var(--muted);
            font-weight: 500;
        }
        .callback-form__field input,
        .callback-form__field textarea {
            width: 100%;
            padding: 13px 14px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            color: var(--text);
            font: inherit;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .callback-form__field textarea {
            min-height: 104px;
            resize: vertical;
        }
        .callback-form__field input:focus,
        .callback-form__field textarea:focus {
            border-color: rgba(37, 99, 235, 0.45);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
            outline: none;
        }
        .callback-form__meta {
            display: grid;
            gap: 8px;
            color: var(--muted);
            font-size: 0.82rem;
        }
        .callback-form__counter {
            justify-self: end;
            font-variant-numeric: tabular-nums;
        }
        .callback-form__consent {
            line-height: 1.45;
        }
        .callback-form .button {
            width: 100%;
            justify-content: center;
        }
        .callback-form__errors {
            display: grid;
            gap: 8px;
            margin-top: 18px;
            padding: 12px 14px;
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 16px;
            background: rgba(254, 242, 242, 0.9);
            color: #991b1b;
            font-size: 0.92rem;
        }
        .callback-modal__success {
            padding-right: 24px;
        }

        @media (max-width: 640px) {
            .callback-modal {
                padding: 14px;
            }
            .callback-modal__dialog {
                padding: 22px 18px 18px;
                border-radius: 22px;
            }
            .callback-form__counter {
                justify-self: start;
            }
        }

        .seo-varieties {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-top: 22px;
        }
        .seo-varieties article {
            padding: 18px 20px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #ffffff;
        }
        .seo-varieties strong { display: block; margin-bottom: 6px; color: var(--text); font-size: 1rem; }
        .seo-varieties p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }

        /* ===== DISAIN_2 catalog toolbar, chip, image ===== */
        .catalog-toolbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-top: 22px;
            padding: 14px 16px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #ffffff;
            box-shadow: var(--shadow-soft);
        }
        .catalog-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: #f4f7fb;
            color: var(--text);
            font: inherit;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background .15s ease, color .15s ease, border-color .15s ease;
        }
        .filter-chip:hover { border-color: rgba(13, 22, 107, 0.25); }
        .filter-chip.is-active {
            background: var(--text-strong);
            border-color: var(--text-strong);
            color: #fff;
        }
        .filter-count {
            display: inline-flex;
            min-width: 20px;
            justify-content: center;
            padding: 1px 6px;
            border-radius: 999px;
            background: rgba(17, 35, 88, 0.08);
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 700;
        }
        .filter-chip.is-active .filter-count {
            background: rgba(255,255,255,0.22);
            color: #fff;
        }
        .catalog-sort {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-size: 0.9rem;
        }
        .catalog-sort select {
            padding: 8px 10px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #ffffff;
            color: var(--text);
            font: inherit;
            font-size: 0.9rem;
            cursor: pointer;
        }
        .catalog-empty {
            margin-top: 16px;
            padding: 20px;
            border: 1px dashed var(--line-strong);
            border-radius: var(--radius-lg);
            color: var(--muted);
            text-align: center;
            background: var(--brand-soft-2);
        }
        .product-card.is-hidden { display: none !important; }
        .product-check {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px 4px 6px;
            margin-top: -2px;
            border-radius: 999px;
            background: rgba(70, 197, 20, 0.12);
            color: #2f990a;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            width: max-content;
        }
        .product-check svg {
            width: 14px;
            height: 14px;
            display: block;
        }

        @media (max-width: 1080px) {
            .type-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .seo-varieties { grid-template-columns: 1fr; }
            .callback-strip { grid-template-columns: 1fr; }
        }
        @media (max-width: 760px) {
            .type-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .catalog-grid { grid-template-columns: 1fr; }
            .product-foot { flex-direction: column; align-items: stretch; }
            .product-cta { justify-content: center; }
            .catalog-toolbar { flex-direction: column; align-items: stretch; }
            .catalog-sort { justify-content: space-between; }
        }

        /* ===== DISAIN_3: dropdown, trust block, footer columns ===== */
        .nav-group {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        .nav-group > .topbar-nav-link { padding-right: 20px; }
        .nav-group > .topbar-nav-link::after {
            content: "▾";
            position: absolute;
            right: 4px;
            top: 50%;
            font-size: 0.72em;
            line-height: 1;
            transform: translateY(-50%);
            opacity: 0.75;
            transition: transform .18s ease, opacity .18s ease;
            pointer-events: none;
        }
        .nav-group:hover > .topbar-nav-link::after,
        .nav-group:focus-within > .topbar-nav-link::after {
            transform: translateY(-50%) rotate(180deg);
            opacity: 1;
        }
        /* у пункта-триггера дропдауна не показываем «пилюлю» текущего раздела —
           её роль берут на себя шеврон и подсветка пункта внутри дропдауна */
        .nav-group > .topbar-nav-link.is-current::after {
            content: "▾";
            background: none;
            left: auto;
            right: 4px;
            bottom: auto;
            height: auto;
        }
        .nav-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            left: -8px;
            min-width: 240px;
            padding: 10px;
            border-radius: 14px;
            background: #ffffff;
            box-shadow: 0 22px 48px rgba(13, 22, 107, 0.18);
            border: 1px solid var(--line);
            display: grid;
            gap: 2px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-4px);
            transition: opacity .15s ease, transform .15s ease, visibility .15s;
            z-index: 50;
        }
        .nav-group:hover .nav-dropdown,
        .nav-group:focus-within .nav-dropdown,
        .nav-dropdown.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown a {
            display: grid;
            gap: 2px;
            padding: 10px 12px;
            border-radius: 10px;
            color: var(--text-strong);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.2;
        }
        .nav-dropdown a span {
            color: var(--muted);
            font-weight: 500;
            font-size: 0.8rem;
        }
        .nav-dropdown a:hover { background: var(--brand-soft-2); color: var(--text); }
        .nav-dropdown a.is-current { background: rgba(70,197,20,0.12); color: var(--text); }

        .mobile-submenu {
            display: grid;
            margin: 2px 0 14px 0;
            padding: 4px 0 14px 14px;
            border-left: 2px solid rgba(255,255,255,0.18);
        }
        .mobile-submenu-link {
            display: block;
            padding: 10px 0;
            color: rgba(255,255,255,0.84);
            font-family: "Segoe UI", Arial, sans-serif;
            font-size: 1.02rem;
            font-weight: 600;
            letter-spacing: 0;
        }
        .mobile-submenu-link.is-current { color: #cfffbb; }

        .trust-strip {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: var(--radius-xl, 22px);
            background: #ffffff;
            box-shadow: var(--shadow-soft);
        }
        .trust-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .trust-metric {
            padding: 14px 16px;
            border-radius: 14px;
            background: var(--brand-soft-2);
        }
        .trust-metric strong {
            display: block;
            color: var(--text);
            font-size: clamp(1.6rem, 3.6vw, 2.2rem);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .trust-metric span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 0.86rem;
            line-height: 1.3;
        }
        .trust-logos {
            display: grid;
            gap: 10px;
            align-content: start;
        }
        .trust-logos-title { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
        .trust-logos-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .trust-logo {
            display: inline-flex;
            align-items: center;
            padding: 10px 14px;
            border: 1px solid var(--line);
            border-radius: 12px;
            color: var(--text-strong);
            background: #ffffff;
            font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 0.04em;
            font-size: 0.92rem;
        }

        footer .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 28px;
            padding: 36px 0 16px;
        }
        footer .footer-col h4 {
            margin: 0 0 12px;
            color: #ffffff;
            font-size: 0.86rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        footer .footer-col a {
            display: block;
            padding: 4px 0;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.92rem;
            transition: color .15s ease;
        }
        footer .footer-col a:hover { color: #ffffff; }
        footer .footer-tagline {
            color: rgba(255,255,255,0.7);
            font-size: 0.92rem;
            line-height: 1.45;
            max-width: 36ch;
        }
        footer .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 0 22px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.55);
            font-size: 0.82rem;
        }
        @media (max-width: 1080px) {
            footer .footer-grid { grid-template-columns: 1fr 1fr; }
            .trust-strip { grid-template-columns: 1fr; }
        }
        @media (max-width: 760px) {
            footer .footer-grid { grid-template-columns: 1fr; }
            .trust-metrics { grid-template-columns: 1fr; }
            footer .footer-bottom { flex-direction: column; }
        }

        /* Sticky mobile CTA bar */
        .mobile-cta-bar {
            display: none;
            position: fixed;
            left: 0; right: 0; bottom: 0;
            z-index: 80;
            padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
            background: rgba(13, 20, 90, 0.96);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 -8px 24px rgba(7, 16, 69, 0.25);
            backdrop-filter: blur(8px);
            gap: 8px;
        }
        .mobile-cta-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-height: 46px;
            padding: 0 10px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.92rem;
            text-decoration: none;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transition: background .15s ease, transform .15s ease;
        }
        .mobile-cta-btn:active { transform: scale(0.97); }
        .mobile-cta-call { background: #46c514; color: #07260a; }
        .mobile-cta-wa { background: #25d366; color: #053a18; }
        .mobile-cta-form { background: rgba(255, 255, 255, 0.14); }
        @media (max-width: 760px) {
            .mobile-cta-bar { display: flex; }
            body { padding-bottom: 70px; }
        }
/* Step 13: Hero form panel title (replaces inline style="margin-top: 14px;") */
.form-panel-title { margin-top: 14px; }

/* Contacts page */
.contacts-page {
    padding: 34px 0 56px;
}

.contacts-page-entry {
    display: grid;
    gap: 22px;
}

.contacts-page .entry-header {
    margin-bottom: 6px;
}

.contacts-page .entry-title {
    margin: 0;
    max-width: none;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
 }

.contacts-page .entry-content > .wp-block-columns:first-of-type {
    align-items: start;
    gap: 28px;
    margin: 0 0 28px;
}

.contacts-page .entry-content > .wp-block-columns:first-of-type .wp-block-column:first-child {
    display: grid;
    gap: 16px;
    align-content: start;
}

.contacts-page .entry-content > .wp-block-columns:first-of-type .wp-block-column:last-child {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.contacts-page .entry-content .wp-block-buttons {
    margin: 4px 0 0;
}

.contacts-page .entry-content h2 {
    margin: 0 0 10px;
}

.contacts-page .entry-content p {
    max-width: 62ch;
}

.contacts-page .entry-content ul {
    margin: 0;
    padding-left: 18px;
}

.contacts-page .entry-content > * + * {
    margin-top: 22px;
}

@media (max-width: 760px) {
    .contacts-page {
        padding: 24px 0 40px;
    }

    .contacts-page .entry-title {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .contacts-page .entry-content > .wp-block-columns:first-of-type .wp-block-column:last-child {
        padding: 18px;
    }
}

.contacts-page .entry-content > h2 {
    margin-top: 34px;
}

.contacts-page .entry-content > h2 + p {
    margin-bottom: 18px;
}

.contacts-page .entry-content .fluentform {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 760px) {
    .contacts-page .entry-content .fluentform {
        padding: 18px;
    }
}

