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

        :root {
            --navy:        #15171A;
            --navy-light:  #21242A;
            --blue:        #1366D6;
            --blue-light:  #2E86F0;
            --teal:        #17A6E6;
            --teal-light:  #4DC3F5;
            --red-soft:    #E53E3E;
            --bg-light:    #F4F7FB;
            --bg-white:    #FFFFFF;
            --text-main:   #1A2332;
            --text-mid:    #4A5568;
            --text-light:  #8899AA;
            --border:      #E2E8F0;
            --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
            --shadow-md:   0 8px 32px rgba(0,0,0,.10);
            --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
            --radius-sm:   8px;
            --radius-md:   14px;
            --radius-lg:   24px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background: var(--bg-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── UTILS ─── */
        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
        .section    { padding: 96px 0; }
        .section-sm { padding: 64px 0; }
        .tag {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(23,166,230,.12); color: var(--teal);
            font-size: 12px; font-weight: 600; letter-spacing: .06em;
            text-transform: uppercase; padding: 4px 12px;
            border-radius: 100px; margin-bottom: 16px;
        }
        .tag svg { width: 12px; height: 12px; }
        .section-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800; line-height: 1.2;
            letter-spacing: -.02em; margin-bottom: 16px;
        }
        .section-sub {
            font-size: 18px; color: var(--text-mid);
            max-width: 600px; line-height: 1.7;
        }
        .text-center { text-align: center; }
        .text-center .section-sub { margin: 0 auto; }
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

        /* ─── BUTTONS ─── */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 28px; border-radius: var(--radius-sm);
            font-size: 15px; font-weight: 600; text-decoration: none;
            transition: all .2s ease; cursor: pointer; border: none;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--blue); color: #fff;
            box-shadow: 0 4px 16px rgba(19,102,214,.35);
        }
        .btn-primary:hover {
            background: var(--blue-light);
            box-shadow: 0 6px 24px rgba(19,102,214,.45);
            transform: translateY(-1px);
        }
        .btn-teal {
            background: var(--teal); color: #fff;
            box-shadow: 0 4px 16px rgba(23,166,230,.35);
        }
        .btn-teal:hover {
            background: var(--teal-light);
            box-shadow: 0 6px 24px rgba(23,166,230,.45);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent; color: #fff;
            border: 2px solid rgba(255,255,255,.35);
        }
        .btn-outline:hover {
            background: rgba(255,255,255,.1);
            border-color: rgba(255,255,255,.6);
        }
        .btn-lg { padding: 18px 36px; font-size: 16px; border-radius: 10px; }
        .btn svg { width: 18px; height: 18px; flex-shrink: 0; }

        /* ─── NAV ─── */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(12,27,51,.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,.08);
        }
        .nav-inner {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 24px; max-width: 1140px; margin: 0 auto;
        }
        .nav-logo {
            display: flex; align-items: center; gap: 10px;
            text-decoration: none; color: #fff;
        }
        .nav-logo-icon {
            display: flex; align-items: center; justify-content: center;
        }
        .nav-logo-icon img { height: 34px; width: auto; display: block; }
        .nav-logo-text { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
        .nav-logo-text span { color: var(--blue); }
        .nav-links { display: flex; align-items: center; gap: 32px; }
        .nav-links a {
            color: rgba(255,255,255,.7); text-decoration: none;
            font-size: 14px; font-weight: 500;
            transition: color .2s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-cta { display: flex; gap: 12px; align-items: center; }

        /* ─── HERO ─── */
        .hero {
            background: linear-gradient(160deg, #EEF4FF 0%, #F4F7FB 55%, #E7F3FE 100%);
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 70% at 90% 30%, rgba(19,102,214,.08) 0%, transparent 65%),
            radial-gradient(ellipse 50% 50% at 10% 80%, rgba(23,166,230,.07) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 64px; align-items: center;
            position: relative; z-index: 1;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(23,166,230,.12); color: var(--teal);
            border: 1px solid rgba(23,166,230,.25);
            padding: 6px 14px; border-radius: 100px;
            font-size: 13px; font-weight: 500;
            margin-bottom: 24px;
        }
        .hero-badge::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--teal); border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: .5; transform: scale(1.3); }
        }
        .hero h1 {
            font-size: clamp(32px, 4.5vw, 52px);
            font-weight: 800; color: var(--navy);
            line-height: 1.15; letter-spacing: -.03em;
            margin-bottom: 24px;
        }
        .hero h1 em {
            font-style: normal;
            background: linear-gradient(135deg, var(--teal), var(--blue));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 18px; color: var(--text-mid);
            line-height: 1.7; margin-bottom: 16px;
        }
        .hero-bullets {
            display: flex; flex-wrap: wrap; gap: 12px;
            margin-bottom: 36px;
        }
        .hero-bullet {
            display: flex; align-items: center; gap: 6px;
            color: var(--text-mid); font-size: 14px;
        }
        .hero-bullet svg { color: var(--teal); width: 14px; height: 14px; flex-shrink: 0; }
        .mockup-dot { width: 10px; height: 10px; border-radius: 50%; }

        /* ─── HERO CTA PANEL (replaces screenshot) ─── */
        .hero-visual {
            position: relative;
        }
        .hero-cta-panel {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(19,102,214,.14), 0 4px 16px rgba(0,0,0,.06);
        }
        .hero-cta-panel::before {
            content: '';
            position: absolute; top: -45%; right: -25%;
            width: 280px; height: 280px; border-radius: 50%;
            background: radial-gradient(circle, rgba(23,166,230,.16) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-cta-panel::after {
            content: '';
            position: absolute; bottom: -35%; left: -20%;
            width: 220px; height: 220px; border-radius: 50%;
            background: radial-gradient(circle, rgba(19,102,214,.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-cta-icon {
            width: 72px; height: 72px;
            margin: 0 auto 24px;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, rgba(19,102,214,.1), rgba(23,166,230,.1));
            border-radius: 20px;
            position: relative; z-index: 1;
        }
        .hero-cta-icon img { width: 36px; height: auto; display: block; }
        .hero-cta-panel h3 {
            font-size: 22px; font-weight: 800; color: var(--navy);
            letter-spacing: -.02em; margin-bottom: 10px;
            position: relative; z-index: 1;
        }
        .hero-cta-panel > p {
            font-size: 14.5px; color: var(--text-mid); line-height: 1.65;
            margin-bottom: 28px;
            position: relative; z-index: 1;
        }
        .hero-cta-actions {
            display: flex; flex-direction: column; gap: 12px;
            position: relative; z-index: 1;
        }
        .hero-cta-actions .btn { width: 100%; justify-content: center; }
        .hero-cta-trust {
            display: flex; flex-direction: column; gap: 10px;
            margin-top: 28px; padding-top: 24px;
            border-top: 1px solid var(--border);
            position: relative; z-index: 1;
        }
        .hero-cta-trust-item {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-size: 13px; color: var(--text-mid);
        }
        .hero-cta-trust-item svg { color: var(--teal); width: 14px; height: 14px; flex-shrink: 0; }

        /* ─── STATS STRIP ─── */
        .stats-strip {
            background: var(--blue);
            padding: 32px 0;
        }
        .stats-row {
            display: flex; justify-content: space-around; align-items: center;
            flex-wrap: wrap; gap: 24px;
        }
        .stat-item { text-align: center; }
        .stat-num {
            font-size: 36px; font-weight: 800; color: #fff;
            letter-spacing: -.02em; line-height: 1;
        }
        .stat-num span { font-size: 22px; }
        .stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }
        .stat-divider {
            width: 1px; height: 48px;
            background: rgba(255,255,255,.25);
        }

        /* ─── PAIN SECTION ─── */
        .pain { background: var(--bg-white); }
        .pain-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 64px; align-items: center; margin-top: 56px;
        }
        .pain-list { display: flex; flex-direction: column; gap: 16px; }
        .pain-item {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 20px; background: var(--bg-light);
            border-radius: var(--radius-md);
            border-left: 3px solid var(--red-soft);
            transition: box-shadow .2s;
        }
        .pain-item:hover { box-shadow: var(--shadow-md); }
        .pain-icon {
            width: 40px; height: 40px; flex-shrink: 0;
            background: rgba(229,62,62,.1); border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            color: var(--red-soft);
        }
        .pain-icon svg { width: 20px; height: 20px; }
        .pain-item-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
        .pain-item-desc { font-size: 14px; color: var(--text-mid); }
        .pain-visual {
            background: var(--navy);
            border-radius: var(--radius-lg);
            padding: 36px;
            /* IMAGE PLACEHOLDER — инфографика потерь / "до" */
            min-height: 420px;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 24px;
        }
        .pain-visual-title {
            color: rgba(255,255,255,.6); font-size: 13px;
            text-transform: uppercase; letter-spacing: .08em; text-align: center;
        }
        .pain-metric {
            text-align: center;
        }
        .pain-metric-num {
            font-size: 64px; font-weight: 800; color: var(--red-soft);
            line-height: 1; letter-spacing: -.04em;
        }
        .pain-metric-label {
            font-size: 15px; color: rgba(255,255,255,.7); margin-top: 4px;
        }
        .pain-divider { width: 60px; height: 1px; background: rgba(255,255,255,.15); }

        /* ─── WHY SECTION ─── */
        .why { background: var(--bg-light); }
        .why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
        .why-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        .why-card::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: linear-gradient(90deg, #E53E3E, #F56565);
        }
        .why-card-icon {
            width: 48px; height: 48px;
            background: rgba(229,62,62,.08);
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            color: var(--red-soft); margin-bottom: 16px;
        }
        .why-card-icon svg { width: 24px; height: 24px; }
        .why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
        .why-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
        .why-verdict {
            margin-top: 40px; text-align: center;
            font-size: 20px; font-weight: 700; color: var(--navy);
        }
        .why-verdict span { color: var(--red-soft); }

        /* ─── SOLUTION ─── */
        .solution { background: var(--bg-white); }
        .solution-intro {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 64px; align-items: center; margin-top: 56px;
        }
        .solution-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
        .solution-point {
            display: flex; align-items: flex-start; gap: 14px;
        }
        .solution-point-icon {
            width: 36px; height: 36px; flex-shrink: 0;
            background: rgba(23,166,230,.12); border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: var(--teal);
        }
        .solution-point-icon svg { width: 18px; height: 18px; }
        .solution-point strong { display: block; font-size: 15px; margin-bottom: 2px; color: var(--text-main); }
        .solution-point span { font-size: 14px; color: var(--text-mid); }
        /* ─── SOLUTION FLOW (replaces screenshot) ─── */
        .solution-flow {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 40px 36px 32px;
            box-shadow: 0 24px 64px rgba(19,102,214,.12), 0 4px 16px rgba(0,0,0,.06);
        }
        .solution-flow-eyebrow {
            display: flex; align-items: center; gap: 8px;
            font-size: 12px; font-weight: 700; letter-spacing: .08em;
            text-transform: uppercase; color: var(--teal);
            margin-bottom: 28px;
        }
        .solution-flow-eyebrow::before {
            content: ''; width: 6px; height: 6px;
            background: var(--teal); border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .flow-step { display: flex; gap: 16px; }
        .flow-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
        .flow-num {
            width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; font-weight: 800; color: #fff;
            background: linear-gradient(135deg, var(--blue), var(--teal));
        }
        .flow-line { width: 2px; flex: 1; min-height: 24px; background: var(--border); margin: 4px 0; }
        .flow-content { padding-top: 4px; padding-bottom: 24px; }
        .flow-content strong { display: block; font-size: 15px; color: var(--text-main); margin-bottom: 4px; }
        .flow-content span { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
        .flow-step:last-child .flow-content { padding-bottom: 0; }

        /* ─── FEATURES ─── */
        .features { background: var(--bg-light); }
        .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
        .feature-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border);
            transition: transform .2s, box-shadow .2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .feature-icon {
            width: 52px; height: 52px;
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px;
        }
        .feature-icon svg { width: 26px; height: 26px; }
        .fi-blue  { background: rgba(19,102,214,.1);  color: var(--blue); }
        .fi-teal  { background: rgba(23,166,230,.1);  color: var(--teal); }
        .fi-navy  { background: rgba(12,27,51,.08);  color: var(--navy); }
        .feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
        .feature-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
        .feature-list {
            list-style: none; margin-top: 12px;
            display: flex; flex-direction: column; gap: 6px;
        }
        .feature-list li {
            display: flex; align-items: center; gap: 8px;
            font-size: 13px; color: var(--text-mid);
        }
        .feature-list li::before {
            content: ''; width: 5px; height: 5px;
            background: var(--teal); border-radius: 50%; flex-shrink: 0;
        }

        /* ─── COMPARISON ─── */
        .comparison { background: var(--bg-white); }
        .comp-table-wrap {
            margin-top: 48px;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .comp-table { width: 100%; border-collapse: collapse; }
        .comp-table th {
            padding: 20px 24px;
            font-size: 14px; font-weight: 700;
            text-align: left;
        }
        .comp-table th:first-child {
            background: var(--bg-light);
            color: var(--text-mid);
            width: 30%;
        }
        .comp-table th.col-old {
            background: #FFF5F5; color: var(--red-soft);
        }
        .comp-table th.col-new {
            background: var(--blue); color: #fff;
        }
        .comp-table td {
            padding: 16px 24px;
            font-size: 14px; border-top: 1px solid var(--border);
            vertical-align: middle;
        }
        .comp-table tr td:first-child {
            background: var(--bg-light);
            font-weight: 500; color: var(--text-mid);
        }
        .comp-table tr td:nth-child(2) { color: var(--red-soft); }
        .comp-table tr td:nth-child(3) { color: #1A7F5A; font-weight: 600; }
        .comp-table tr:nth-child(even) td:first-child { background: #F8FAFB; }
        .comp-badge {
            display: inline-flex; align-items: center; gap: 6px;
            font-weight: 600;
        }
        .comp-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
        .comp-badge.yes { color: #1A7F5A; }
        .comp-badge.no  { color: var(--red-soft); }

        /* ─── RESULTS ─── */
        .results { background: linear-gradient(135deg, var(--navy) 0%, #0B1220 100%); color: #fff; }
        .results .section-sub { color: rgba(255,255,255,.65); }
        .results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
        .result-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            text-align: center;
            transition: background .2s;
        }
        .result-card:hover { background: rgba(255,255,255,.09); }
        .result-num {
            font-size: 44px; font-weight: 800;
            color: var(--teal-light); letter-spacing: -.03em; line-height: 1;
        }
        .result-num small { font-size: 24px; }
        .result-desc { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 8px; line-height: 1.5; }

        /* ─── PRICING ─── */
        .pricing { background: var(--bg-light); }
        .pricing-solo {
            max-width: 920px; margin: 48px auto 0;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 2px solid var(--blue);
            box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
            padding: 48px;
            display: grid; grid-template-columns: 1fr 1fr;
            align-items: center;
        }
        .pricing-icon {
            width: 52px; height: 52px;
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }
        .pricing-icon svg { width: 26px; height: 26px; }
        .pi-onprem { background: rgba(12,27,51,.08); color: var(--navy); }
        .pricing-solo-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
        .pricing-solo-info .sub { font-size: 14.5px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.7; }
        .pricing-solo-features {
            border-left: 1px solid var(--border);
            padding-left: 48px;
        }
        .pricing-features {
            list-style: none;
            display: flex; flex-direction: column; gap: 14px;
        }
        .pricing-features li {
            display: flex; align-items: center; gap: 10px;
            font-size: 14px; color: var(--text-mid);
        }
        .pricing-features li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

        /* ─── PARTNERS ─── */
        .partners { background: var(--bg-white); }
        .partner-card {
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 36px;
            display: flex; flex-direction: column;
            align-items: flex-start; gap: 20px;
            max-width: 640px; margin: 48px auto 0;
            box-shadow: var(--shadow-sm);
        }
        .partner-logo {
            height: 56px; display: flex; align-items: center;
            background: var(--bg-light); border-radius: 8px;
            padding: 8px 16px;
        }
        .partner-quote {
            font-size: 16px; color: var(--text-main);
            line-height: 1.7; font-style: italic;
        }
        .partner-author { font-size: 14px; color: var(--text-mid); font-weight: 500; }

        /* ─── CTA ─── */
        .cta-section {
            background: linear-gradient(135deg, var(--blue) 0%, #0D4FB0 100%);
            padding: 96px 0;
            position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(23,166,230,.25), transparent);
        }
        .cta-inner {
            position: relative; z-index: 1;
            text-align: center; max-width: 700px; margin: 0 auto;
        }
        .cta-section h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800; color: #fff; line-height: 1.2;
            letter-spacing: -.02em; margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 18px; color: rgba(255,255,255,.75);
            line-height: 1.6; margin-bottom: 36px;
        }
        .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .cta-note {
            margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.5);
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .cta-note svg { width: 14px; height: 14px; }

        /* ─── FOOTER ─── */
        .footer {
            background: var(--navy);
            padding: 48px 0 32px;
            color: rgba(255,255,255,.6);
        }
        .footer-inner {
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 24px;
        }
        .footer-logo {
            display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none;
        }
        .footer-logo-icon {
            display: flex; align-items: center; justify-content: center;
        }
        .footer-logo-icon img { height: 28px; width: auto; display: block; }
        .footer-logo-text { font-size: 16px; font-weight: 700; }
        .footer-logo-text span { color: var(--blue); }
        .footer-links {
            display: flex; gap: 24px; flex-wrap: wrap;
        }
        .footer-links a {
            color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px;
            transition: color .2s;
        }
        .footer-links a:hover { color: rgba(255,255,255,.9); }
        .footer-copy { font-size: 13px; }
        .footer-divider {
            height: 1px; background: rgba(255,255,255,.08);
            margin-bottom: 28px;
        }

        /* ─── AUDIENCE ─── */
        .audience { background: var(--bg-light); }
        .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
        .audience-card {
            background: var(--bg-white); border-radius: var(--radius-lg);
            padding: 36px; border: 1px solid var(--border);
            transition: box-shadow .2s, transform .2s;
        }
        .audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .audience-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
        .audience-icon {
            width: 52px; height: 52px; border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .audience-icon svg { width: 26px; height: 26px; }
        .ai-state   { background: rgba(19,102,214,.1);  color: var(--blue); }
        .ai-private { background: rgba(23,166,230,.1);  color: var(--teal); }
        .audience-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 3px; }
        .audience-card .sub { font-size: 13px; color: var(--text-mid); }
        .audience-desc { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
        .audience-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .audience-list li {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 14px; color: var(--text-main);
        }
        .audience-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
        .al-blue svg { color: var(--blue); }
        .al-teal svg { color: var(--teal); }

        /* ─── OMS BLOCK ─── */
        .oms-block {
            background: linear-gradient(135deg, #EEF4FF 0%, #E7F3FE 100%);
            border-radius: var(--radius-lg); padding: 48px;
            margin-top: 32px; border: 1px solid rgba(19,102,214,.12);
            display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
        }
        .oms-tag {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(19,102,214,.12); color: var(--blue);
            font-size: 12px; font-weight: 600; letter-spacing: .06em;
            text-transform: uppercase; padding: 4px 12px;
            border-radius: 100px; margin-bottom: 14px;
        }
        .oms-title { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
        .oms-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
        .oms-points { display: flex; flex-direction: column; gap: 12px; }
        .oms-point {
            display: flex; align-items: flex-start; gap: 12px;
            background: #fff; border-radius: var(--radius-sm);
            padding: 14px 16px; border: 1px solid var(--border);
        }
        .oms-point-icon {
            width: 32px; height: 32px; background: rgba(19,102,214,.1);
            border-radius: 7px; display: flex; align-items: center; justify-content: center;
            color: var(--blue); flex-shrink: 0;
        }
        .oms-point-icon svg { width: 16px; height: 16px; }
        .oms-point strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
        .oms-point span { font-size: 13px; color: var(--text-mid); }

        /* ─── CONSULTATIONS ─── */
        .consultations { background: var(--bg-white); }
        .consultations .oms-block { margin-top: 48px; }

        /* ─── WEB STRIP ─── */
        .web-strip { background: var(--navy); padding: 56px 0; }
        .web-inner {
            display: grid; grid-template-columns: 1fr auto;
            gap: 48px; align-items: center;
        }
        .web-text h2 {
            font-size: clamp(22px, 3vw, 30px); font-weight: 800;
            color: #fff; margin-bottom: 10px; letter-spacing: -.02em;
        }
        .web-text p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.65; }
        .web-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(23,166,230,.15); color: var(--teal-light);
            border: 1px solid rgba(23,166,230,.25);
            padding: 5px 14px; border-radius: 100px;
            font-size: 13px; font-weight: 500; margin-top: 18px;
        }
        .web-badge svg { width: 14px; height: 14px; }
        .web-devices { display: flex; align-items: flex-end; gap: 16px; }
        .web-device {
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            color: rgba(255,255,255,.55); font-size: 11px; font-weight: 500;
            letter-spacing: .05em; text-transform: uppercase;
        }
        .web-device-icon {
            background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,.8);
        }
        .web-device-icon svg { display: block; }
        .wd-desktop .web-device-icon { width: 80px; height: 62px; }
        .wd-desktop .web-device-icon svg { width: 34px; height: 34px; }
        .wd-tablet  .web-device-icon { width: 58px; height: 48px; }
        .wd-tablet  .web-device-icon svg { width: 26px; height: 26px; }
        .wd-phone   .web-device-icon { width: 42px; height: 38px; }
        .wd-phone   .web-device-icon svg { width: 20px; height: 20px; }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .results-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .section { padding: 64px 0; }
            .cta-section { padding: 64px 0; }
            .hero { padding: 120px 0 64px; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-cta-panel { padding: 36px 24px; }
            .pain-grid { grid-template-columns: 1fr; }
            .pain-visual { display: none; }
            .solution-intro { grid-template-columns: 1fr; }
            .solution-flow { padding: 32px 24px 24px; }
            .why-cards { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .feature-card { padding: 22px; }
            .grid-3 { grid-template-columns: 1fr; }
            .grid-2 { grid-template-columns: 1fr; }
            .pricing-solo { grid-template-columns: 1fr; padding: 32px 24px; }
            .pricing-solo-features { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
            .results-grid { grid-template-columns: 1fr 1fr; }
            .result-card { padding: 20px 16px; }
            .result-num { font-size: 30px; }
            .result-num small { font-size: 18px; }
            .nav-links { display: none; }
            .nav-cta .btn-outline { display: none; }
            .stats-row { gap: 16px; }
            .stat-divider { display: none; }
            .stat-num { font-size: 28px; }
            .stat-num span { font-size: 18px; }
            .footer-inner { flex-direction: column; align-items: flex-start; }
            .audience-grid { grid-template-columns: 1fr; }
            .audience-card { padding: 28px; }
            .oms-block { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
            .web-inner { grid-template-columns: 1fr; }
            .web-devices { justify-content: center; }
            .partner-card { padding: 28px; }
            .comp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .comp-table { min-width: 640px; }
            .comp-table th, .comp-table td { padding: 14px 16px; font-size: 13px; }
            body.has-cookie-banner { padding-bottom: 140px; }
        }

        /* ─── LEAD MODAL ─── */
        .lead-modal-overlay {
            position: fixed; inset: 0; z-index: 1000;
            background: rgba(21,23,26,.6);
            backdrop-filter: blur(4px);
            display: flex; align-items: center; justify-content: center;
            padding: 24px;
            opacity: 0; visibility: hidden;
            transition: opacity .2s ease, visibility .2s ease;
        }
        .lead-modal-overlay.is-open {
            opacity: 1; visibility: visible;
        }
        .lead-modal {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            width: 100%; max-width: 440px;
            max-height: 90vh; overflow-y: auto;
            padding: 40px;
            position: relative;
            transform: translateY(12px);
            transition: transform .2s ease;
        }
        .lead-modal-overlay.is-open .lead-modal { transform: translateY(0); }
        .lead-modal-close {
            position: absolute; top: 16px; right: 16px;
            width: 32px; height: 32px; border-radius: 50%;
            border: none; background: var(--bg-light); color: var(--text-mid);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: background .2s;
        }
        .lead-modal-close:hover { background: var(--border); }
        .lead-modal-close svg { width: 16px; height: 16px; }
        .lead-modal-body h3 {
            font-size: 22px; font-weight: 800; color: var(--navy);
            letter-spacing: -.02em; margin-bottom: 8px;
        }
        .lead-modal-sub { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 24px; }
        .lead-form-error {
            background: #FFF5F5; color: var(--red-soft);
            border: 1px solid rgba(229,62,62,.25);
            border-radius: var(--radius-sm);
            padding: 12px 14px; font-size: 13px;
            margin-bottom: 20px;
        }
        .lead-field { margin-bottom: 18px; }
        .lead-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .lead-field-row .lead-field { margin-bottom: 0; }
        .lead-field label {
            display: block; font-size: 13px; font-weight: 600;
            color: var(--text-main); margin-bottom: 6px;
        }
        .lead-field input, .lead-field textarea {
            width: 100%; padding: 11px 14px;
            border: 1.5px solid var(--border); border-radius: var(--radius-sm);
            font-size: 14px; font-family: inherit; color: var(--text-main);
            background: #fff; transition: border-color .2s;
        }
        .lead-field input:focus, .lead-field textarea:focus {
            outline: none; border-color: var(--blue);
        }
        .lead-field textarea { resize: vertical; min-height: 90px; }
        .lead-field input.is-invalid, .lead-field textarea.is-invalid { border-color: var(--red-soft); }
        .lead-field-error {
            display: block; font-size: 12px; color: var(--red-soft);
            margin-top: 4px; min-height: 14px;
        }
        .lead-field-hint {
            font-size: 12px; color: var(--text-light);
            margin: -10px 0 18px;
        }
        .lead-field-honeypot {
            position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
        }
        .lead-consent {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 13px; color: var(--text-mid); line-height: 1.5;
            margin-bottom: 4px; cursor: pointer;
        }
        .lead-consent input { margin-top: 2px; flex-shrink: 0; }
        .lead-consent a { color: var(--blue); text-decoration: underline; }
        .lead-consent + .lead-field-error { margin-bottom: 20px; }
        #leadSubmit { margin-top: 20px; }
        .lead-modal-success { text-align: center; padding: 20px 0; }
        .lead-success-icon {
            width: 64px; height: 64px; margin: 0 auto 20px;
            background: rgba(23,166,230,.12); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--teal);
        }
        .lead-success-icon svg { width: 30px; height: 30px; }
        .lead-modal-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
        .lead-modal-success p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

        @media (max-width: 480px) {
            .lead-modal { padding: 28px 20px; }
            .lead-field-row { grid-template-columns: 1fr; gap: 0; }
        }

        /* ─── COOKIE CONSENT ─── */
        body.has-cookie-banner { padding-bottom: 88px; transition: padding-bottom .3s ease; }
        .cookie-banner {
            position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
            background: var(--navy);
            box-shadow: 0 -8px 32px rgba(0,0,0,.18);
            padding: 18px 24px;
            transform: translateY(100%);
            transition: transform .3s ease;
        }
        .cookie-banner.is-visible { transform: translateY(0); }
        .cookie-banner-inner {
            max-width: 1140px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
            gap: 24px; flex-wrap: wrap;
        }
        .cookie-banner p {
            font-size: 13.5px; line-height: 1.6;
            color: rgba(255,255,255,.75);
            margin: 0; flex: 1; min-width: 240px;
        }
        .cookie-banner a { color: #fff; text-decoration: underline; }
        .cookie-banner .btn { flex-shrink: 0; padding: 10px 24px; }

        @media (max-width: 560px) {
            .cookie-banner-inner { flex-direction: column; align-items: stretch; }
            .cookie-banner .btn { width: 100%; justify-content: center; }
        }
