    @font-face {
      font-family: "Inter";
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url("/static/landing/fonts/inter-var-cyrillic-ext.woff2") format("woff2");
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
    }
    @font-face {
      font-family: "Inter";
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url("/static/landing/fonts/inter-var-cyrillic.woff2") format("woff2");
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
    }
    @font-face {
      font-family: "Inter";
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url("/static/landing/fonts/inter-var-latin-ext.woff2") format("woff2");
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
      font-family: "Inter";
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url("/static/landing/fonts/inter-var-latin.woff2") format("woff2");
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    :root {
      --page: #f7f8fc;
      --bg-soft: #f1f3fa;
      --surface: #ffffff;
      --surface-soft: #f5f3ff;
      --ink: #0b1220;
      --text: #3f4a5f;
      --muted: #616a80;
      --line: #e6e9f2;
      --line-strong: #d4d9e7;
      --indigo: #4f46e5;
      --indigo-strong: #4338ca;
      --indigo-soft: #eef2ff;
      --violet-soft: #f5f3ff;
      --deep-1: #312e81;
      --deep-2: #1e1b4b;
      --ok: #10b981;
      --teal: var(--indigo);
      --teal-strong: var(--indigo-strong);
      --blue: var(--indigo);
      --coral: #e26f4b;
      --amber: #d99b2b;
      --dark: var(--deep-2);
      --dark-2: var(--deep-1);
      --r-md: 16px;
      --r-lg: 24px;
      --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 28px 70px -32px rgba(79, 70, 229, 0.3);
      --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px -16px rgba(15, 23, 42, 0.14);
      --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    * { box-sizing: border-box; }

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

    body {
      margin: 0;
      background: var(--page);
      color: var(--text);
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    p, ul { margin: 0; }
    ul { padding: 0; list-style: none; }
    h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: -0.02em; }
    h1 { font-size: 68px; line-height: 0.97; font-weight: 420; }
    h2 { font-size: 52px; line-height: 1.04; font-weight: 420; }
    h3 { font-size: 24px; line-height: 1.12; font-weight: 650; }
    h1 b, h2 b { font-weight: 720; }

    ::selection { background: rgba(99, 102, 241, 0.18); }

    .container {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: var(--r-md);
      background: var(--indigo);
      color: #fff;
      cursor: pointer;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.01em;
      padding: 14px 22px;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 10px 24px -12px rgba(79, 70, 229, 0.55);
      transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
    }

    .btn:hover {
      background: var(--indigo-strong);
      transform: translateY(-1px);
      box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08), 0 16px 32px -12px rgba(79, 70, 229, 0.6);
    }

    .btn:active { transform: translateY(0); }

    .btn.light {
      background: #fff;
      color: var(--indigo-strong);
      border: 1px solid rgba(79, 70, 229, 0.14);
      box-shadow: var(--shadow-soft);
    }

    .btn.light:hover {
      background: var(--indigo-soft);
      border-color: rgba(79, 70, 229, 0.35);
    }

    .btn.ghost {
      background: #fff;
      color: var(--ink);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .btn.ghost:hover {
      background: var(--indigo-soft);
      border-color: rgba(79, 70, 229, 0.35);
    }

    .btn.dark {
      background: var(--deep-2);
      color: #fff;
      box-shadow: 0 14px 30px rgba(16, 24, 32, 0.2);
    }

    .btn.dark:hover { background: #22303a; }

    .btn:focus-visible,
    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 3px solid rgba(79, 70, 229, 0.35);
      outline-offset: 3px;
    }

    .topbar {
      position: fixed;
      inset: 18px 0 auto;
      z-index: 20;
    }

    .topbar-inner {
      display: flex;
      min-height: 64px;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: var(--r-md);
      background: rgba(247, 248, 252, 0.72);
      padding: 10px 12px 10px 18px;
      color: var(--ink);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 1px 2px rgba(15, 23, 42, 0.06),
        0 10px 28px -14px rgba(15, 23, 42, 0.12);
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 150px;
    }

    .brand img { width: 144px; height: auto; }

    .nav {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    .nav a {
      border-radius: 12px;
      padding: 10px 12px;
      transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
    }

    .nav a:hover {
      background: var(--indigo-soft);
      color: var(--ink);
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .topbar .btn {
      min-height: 42px;
      padding: 9px 15px;
      font-size: 14px;
      box-shadow: none;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      content: "";
    }

    .menu-toggle {
      flex-direction: column;
      gap: 4px;
    }

    .hero {
      position: relative;
      min-height: 82svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--page);
      color: var(--text);
      padding: 120px 0 46px;
    }

    .hero::before,
    .hero::after {
      position: absolute;
      inset: 0;
      content: "";
    }

    .hero::before {
      background-image: url("/static/landing/v2/hero-lifestyle-light.jpg");
      background-position: center;
      background-size: cover;
      transform: scale(1.01);
    }

    .hero::after {
      background:
        linear-gradient(90deg, rgba(247, 248, 252, 0.98) 0%, rgba(247, 248, 252, 0.92) 39%, rgba(247, 248, 252, 0.42) 66%, rgba(247, 248, 252, 0.04) 100%),
        linear-gradient(0deg, rgba(247, 248, 252, 0.92) 0%, rgba(247, 248, 252, 0) 32%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 690px;
    }

    .hero h1 {
      margin-top: 0;
      color: var(--ink);
      text-shadow: none;
    }

    .hero-promise {
      margin-top: 14px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.4;
      font-weight: 430;
      max-width: 680px;
      text-shadow: none;
    }

    .hero-copy {
      margin-top: 16px;
      max-width: 600px;
      color: var(--text);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.78);
      padding: 8px 10px;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .hero-proof b {
      color: var(--indigo-strong);
      font-weight: 800;
    }

    .hero-kicker {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--indigo-strong);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .cta-note {
      margin-top: 14px;
      max-width: 580px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.5;
    }

    .cta-note b { color: var(--ink); font-weight: 800; }

    .case-counter {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 70px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      padding: 0 12px;
      box-shadow: var(--shadow-soft);
    }

    .case-counter b { color: var(--indigo-strong); }

    .price-anchor {
      margin-top: 10px;
      padding: 12px 14px;
      border: 1px solid rgba(79, 70, 229, 0.16);
      border-radius: var(--r-md);
      background: var(--indigo-soft);
      color: var(--text);
      font-size: 14px;
      line-height: 1.5;
    }

    .price-anchor b { color: var(--indigo-strong); font-weight: 800; }

    .section {
      padding: 94px 0;
      background: var(--page);
    }

    .section.white { background: #fff; }
    .section.soft { background: var(--bg-soft); }
    .section.dark { background: var(--dark-2); color: rgba(255, 255, 255, 0.78); }
    .section.dark h2,
    .section.dark h3 { color: #fff; }

    .section.photo-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--page);
    }

    .section.photo-section::before,
    .section.photo-section::after {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
    }

    .section.photo-section::before {
      z-index: 0;
      background-image: var(--section-bg);
      background-position: var(--section-pos, center);
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0.98;
    }

    .section.photo-section::after {
      z-index: 1;
    }

    .photo-section.content-left::before {
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.22) 45%, #000 66%, #000 100%);
      mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.22) 45%, #000 66%, #000 100%);
    }

    .photo-section.content-left::after {
      background: linear-gradient(90deg, var(--page) 0%, rgba(247, 248, 252, 0.92) 27%, rgba(247, 248, 252, 0.42) 50%, rgba(247, 248, 252, 0) 72%);
    }

    .photo-section.content-right::before {
      -webkit-mask-image: linear-gradient(270deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.22) 45%, #000 66%, #000 100%);
      mask-image: linear-gradient(270deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.22) 45%, #000 66%, #000 100%);
    }

    .photo-section.content-right::after {
      background: linear-gradient(270deg, var(--page) 0%, rgba(247, 248, 252, 0.92) 27%, rgba(247, 248, 252, 0.42) 50%, rgba(247, 248, 252, 0) 72%);
    }

    .photo-section > .container {
      position: relative;
      z-index: 2;
      width: min(650px, calc(100% - 48px));
    }

    .photo-section.content-left > .container {
      margin-left: max(24px, calc((100% - 1180px) / 2));
      margin-right: auto;
    }

    .photo-section.content-right > .container {
      margin-left: auto;
      margin-right: max(24px, calc((100% - 1180px) / 2));
    }

    .photo-section .section-head,
    .photo-section .comparison-copy,
    .photo-section .vps-copy {
      border: 1px solid rgba(255, 255, 255, 0.64);
      border-radius: var(--r-lg);
      background: rgba(255, 255, 255, 0.78);
      padding: 30px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 24px 70px -32px rgba(15, 23, 42, 0.34);
      backdrop-filter: blur(24px) saturate(130%);
      -webkit-backdrop-filter: blur(24px) saturate(130%);
    }

    .photo-section .comparison-copy {
      max-width: none;
    }

    .photo-section .section-head {
      grid-template-columns: 1fr;
      align-items: stretch;
      gap: 16px;
      margin-bottom: 18px;
    }

    .photo-section .section-head p {
      align-self: auto;
    }

    .photo-section .comparison,
    .photo-section .vps-layout,
    .photo-section .pricing-wrap {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .photo-section .flow-step,
    .photo-section .voice-panel,
    .photo-section .result-panel,
    .photo-section .difference-table,
    .photo-section .server-map,
    .photo-section .audience-card,
    .photo-section .pricing-main {
      border-color: rgba(255, 255, 255, 0.64);
      background: rgba(255, 255, 255, 0.82);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 20px 58px -34px rgba(15, 23, 42, 0.38);
      backdrop-filter: blur(22px) saturate(130%);
      -webkit-backdrop-filter: blur(22px) saturate(130%);
    }

    .photo-section .pricing-side {
      background: linear-gradient(160deg, rgba(49, 46, 129, 0.95), rgba(30, 27, 75, 0.95));
    }

    .photo-section .result-line,
    .photo-section .server-line {
      background: rgba(247, 248, 252, 0.72);
    }

    .photo-section .difference-row {
      border-color: rgba(218, 222, 236, 0.7);
    }

    .photo-section .difference-cell {
      background: rgba(255, 255, 255, 0.48);
    }

    .photo-section .difference-cell:first-child {
      background: rgba(247, 248, 252, 0.56);
      border-right-color: rgba(218, 222, 236, 0.7);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
      gap: 44px;
      align-items: end;
      margin-bottom: 44px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 19px;
    }

    .dark .section-head p { color: rgba(255, 255, 255, 0.74); }

    .proof-band {
      padding: 24px 0;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: var(--line);
    }

    .proof-item {
      min-height: 116px;
      background: #fff;
      padding: 20px;
    }

    .proof-item b {
      display: block;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .proof-item span { color: var(--muted); }

    .comparison {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
      gap: 36px;
      align-items: stretch;
    }

    .comparison-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 460px;
    }

    .comparison-copy p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 19px;
    }

    .difference-table {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .difference-row {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      border-top: 1px solid var(--line);
    }

    .difference-row:first-child { border-top: 0; }

    .difference-cell {
      padding: 22px;
      min-height: 90px;
    }

    .difference-cell:first-child {
      background: #f7f8f9;
      border-right: 1px solid var(--line);
      color: #687782;
    }

    .difference-cell b {
      display: block;
      color: var(--ink);
      margin-bottom: 5px;
      font-size: 18px;
    }

    .difference-cell strong {
      color: var(--indigo-strong);
      font-weight: 800;
    }

    #difference {
      background: var(--page);
    }

    #difference .comparison {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #difference .comparison-copy {
      max-width: none;
      min-height: 100%;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #fff;
      padding: 36px;
      box-shadow: var(--shadow-soft);
    }

    #difference .difference-table {
      min-height: 100%;
      border-radius: var(--r-lg);
    }

    .flow {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .flow-step {
      position: relative;
      min-height: 250px;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: #fff;
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }

    .flow-step::before {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 14px;
      background: var(--indigo);
      color: #fff;
      font-weight: 820;
      content: attr(data-step);
      margin-bottom: 44px;
    }

    .flow-step h3 { font-size: 23px; }
    .flow-step p { margin-top: 12px; color: var(--muted); }

    .flow-step .mini {
      position: absolute;
      top: 26px;
      right: 26px;
      display: grid;
      gap: 7px;
      width: 116px;
    }

    .mini-line {
      height: 8px;
      border-radius: 999px;
      background: #e2e7f4;
    }

    .mini-line:nth-child(2) { width: 78%; background: #c7d2fe; }
    .mini-line:nth-child(3) { width: 56%; background: #a5b4fc; }

    .carousel-btn {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
      font-size: 24px;
      font-weight: 640;
      box-shadow: var(--shadow-soft);
      transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), border-color 0.18s var(--ease);
    }

    .carousel-btn:hover {
      background: var(--indigo-soft);
      border-color: rgba(79, 70, 229, 0.28);
      transform: translateY(-1px);
    }

    .case-deck {
      background: #fff;
    }

    .case-top {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
      gap: 28px;
      align-items: start;
      margin-bottom: 26px;
    }

    .case-top p {
      color: var(--muted);
      font-size: 19px;
      max-width: 640px;
    }

    .case-controls {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 18px;
    }

    .case-tags {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      margin: 0 -4px 22px;
      padding: 4px 4px 14px;
      scrollbar-color: rgba(79, 70, 229, 0.32) transparent;
      scrollbar-width: thin;
    }

    .case-tags::-webkit-scrollbar { height: 8px; }
    .case-tags::-webkit-scrollbar-track { background: transparent; }
    .case-tags::-webkit-scrollbar-thumb {
      border: 2px solid #fff;
      border-radius: 999px;
      background: rgba(79, 70, 229, 0.32);
    }

    .case-tag {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--muted);
      font-size: 14px;
      font-weight: 760;
      padding: 9px 12px;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
      transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
      white-space: nowrap;
    }

    .case-tag:hover,
    .case-tag.is-active {
      border-color: rgba(79, 70, 229, 0.32);
      background: var(--indigo-soft);
      color: var(--indigo-strong);
    }

    .case-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      overflow-y: hidden;
      overscroll-behavior-x: contain;
      scroll-padding: 4px;
      scroll-snap-type: x mandatory;
      margin: 0 -4px;
      padding: 4px 4px 18px;
      scrollbar-color: rgba(79, 70, 229, 0.34) transparent;
      scrollbar-width: thin;
    }

    .case-track::-webkit-scrollbar { height: 10px; }
    .case-track::-webkit-scrollbar-track { background: transparent; }
    .case-track::-webkit-scrollbar-thumb {
      border: 3px solid #fff;
      border-radius: 999px;
      background: rgba(79, 70, 229, 0.34);
    }

    .case-slide {
      display: grid;
      flex: 0 0 min(100%, 1120px);
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      overflow: hidden;
      min-height: 520px;
      border: 0;
      border-radius: var(--r-lg);
      background: #fff;
      box-shadow: none;
      scroll-snap-align: start;
    }

    .case-media {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      background: var(--bg-soft);
    }

    .case-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--case-pos, center);
    }

    .case-copy {
      display: flex;
      min-width: 0;
      flex-direction: column;
      justify-content: center;
      padding: 44px;
    }

    .case-slide.media-left .case-media {
      order: -1;
    }

    .case-slide.media-right .case-media {
      order: 2;
    }

    .case-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .case-number,
    .case-hash,
    .case-soon {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 820;
      padding: 8px 11px;
    }

    .case-number {
      background: var(--indigo);
      color: #fff;
    }

    .case-hash {
      border: 1px solid rgba(79, 70, 229, 0.2);
      background: var(--indigo-soft);
      color: var(--indigo-strong);
    }

    .case-soon {
      background: #fff7ed;
      color: #9a3412;
    }

    .case-copy h3 {
      color: var(--ink);
      font-size: 42px;
      line-height: 1.04;
      font-weight: 520;
    }

    .case-copy p {
      max-width: 540px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.55;
    }

    .case-link {
      align-self: flex-start;
      margin-top: 30px;
      color: var(--indigo-strong);
      font-weight: 820;
    }

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

    .case-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .case-thumb {
      aspect-ratio: 16 / 10;
      background: var(--bg-soft);
      overflow: hidden;
    }

    .case-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .case-body { padding: 22px; }
    .case-card .case-meta { margin-bottom: 14px; }
    .case-card h3 { font-size: 21px; }
    .case-card p { margin-top: 10px; color: var(--muted); }
    .case-card.is-extra { display: none; }
    .case-grid.is-expanded .case-card.is-extra { display: flex; }

    .case-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

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

    .reviews {
      background: var(--page);
    }

    .reviews-layout {
      display: grid;
      gap: 22px;
    }

    .review-card {
      position: relative;
      display: flex;
      min-width: 0;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #fff;
      padding: 28px;
      box-shadow: var(--shadow-soft);
    }

    .review-card::before {
      position: absolute;
      top: 18px;
      right: 24px;
      color: rgba(79, 70, 229, 0.12);
      font-size: 78px;
      line-height: 1;
      content: "“";
      pointer-events: none;
    }

    .review-card.featured {
      display: grid;
      min-height: 0;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
      gap: 30px;
      align-items: end;
      background:
        linear-gradient(150deg, rgba(238, 242, 255, 0.78), rgba(255, 255, 255, 0.94) 42%),
        #fff;
      padding: 42px;
    }

    .review-card.featured .review-text {
      max-width: 780px;
      font-size: 31px;
      line-height: 1.18;
      color: var(--ink);
    }

    .review-card.featured .review-person {
      align-self: end;
      margin-top: 0;
    }

    .reviews-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .review-text {
      position: relative;
      z-index: 1;
      color: var(--text);
      font-size: 17px;
      line-height: 1.52;
    }

    .review-person {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
    }

    .review-person .review-avatar {
      display: grid;
      flex: 0 0 auto;
      width: 46px;
      height: 46px;
      place-items: center;
      border-radius: 16px;
      background: var(--indigo);
      color: #fff;
      font-weight: 840;
    }

    .review-person b {
      display: block;
      color: var(--ink);
      line-height: 1.12;
    }

    .review-person div span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.25;
    }

    .task-demo {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 28px;
      align-items: stretch;
    }

    .voice-panel,
    .result-panel {
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #fff;
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .voice-card {
      border-radius: var(--r-md);
      background: var(--indigo-soft);
      color: var(--ink);
      padding: 22px;
      box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
    }

    .voice-top {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--indigo-strong);
      font-weight: 760;
      margin-bottom: 16px;
    }

    .play {
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      border-radius: 50%;
      background: var(--indigo);
      color: #fff;
      font-weight: 800;
    }

    .wave {
      display: grid;
      grid-template-columns: repeat(18, 1fr);
      align-items: center;
      gap: 4px;
      height: 64px;
      margin: 20px 0;
    }

    .wave span {
      display: block;
      border-radius: 999px;
      background: linear-gradient(180deg, #6366f1, #4f46e5);
    }

    .wave span:nth-child(3n+1) { height: 20px; }
    .wave span:nth-child(3n+2) { height: 44px; }
    .wave span:nth-child(3n) { height: 32px; }

    .voice-card p {
      color: #3b4a54;
      font-size: 19px;
      font-weight: 620;
    }

    .result-list {
      display: grid;
      gap: 12px;
    }

    .result-line {
      display: grid;
      grid-template-columns: 28px 1fr auto;
      gap: 12px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: var(--bg);
      padding: 13px 14px;
    }

    .result-line i {
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 50%;
      background: var(--indigo);
      color: #fff;
      font-style: normal;
      font-weight: 850;
    }

    .result-line b {
      display: block;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.2;
    }

    .result-line span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .result-line em {
      border-radius: 999px;
      background: #fff;
      color: var(--indigo-strong);
      border: 1px solid rgba(79, 70, 229, 0.16);
      font-style: normal;
      font-size: 12px;
      font-weight: 820;
      padding: 5px 8px;
    }

    .vps-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 36px;
      align-items: stretch;
    }

    .vps-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .vps-copy p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 19px;
    }

    .server-map {
      position: relative;
      display: grid;
      grid-template-rows: repeat(4, minmax(0, 1fr));
      gap: 14px;
      height: 100%;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #fff;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .server-line {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: var(--bg);
      padding: 16px;
    }

    .server-line i {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border-radius: 14px;
      background: var(--indigo);
      color: #fff;
      font-style: normal;
      font-weight: 830;
    }

    .server-line b {
      display: block;
      color: var(--ink);
      margin-bottom: 4px;
      font-size: 18px;
    }

    .server-line span { color: var(--muted); }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .audience-card {
      min-height: 236px;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: #fff;
      padding: 22px;
      box-shadow: var(--shadow-soft);
    }

    .audience-card i {
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border-radius: 14px;
      background: var(--indigo-soft);
      color: var(--indigo-strong);
      font-style: normal;
      font-weight: 850;
      margin-bottom: 28px;
    }

    .audience-card h3 { font-size: 22px; }
    .audience-card p { margin-top: 10px; color: var(--muted); }

    .pricing-wrap {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
      gap: 22px;
      align-items: stretch;
    }

    .pricing-main,
    .pricing-side {
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #fff;
      padding: 30px;
      box-shadow: var(--shadow-soft);
    }

    .price-row {
      display: grid;
      grid-template-columns: minmax(160px, 0.42fr) 1fr;
      gap: 20px;
      align-items: start;
      padding: 20px 0;
      border-top: 1px solid var(--line);
    }

    .price-row:first-of-type { border-top: 0; padding-top: 0; }
    .price-row:last-child { padding-bottom: 0; }

    .price-row b {
      display: block;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.1;
    }

    .price-row span {
      display: block;
      color: var(--indigo-strong);
      font-weight: 800;
      margin-top: 5px;
    }

    .price-row p { color: var(--muted); }

    .pricing-side {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      background: linear-gradient(160deg, var(--deep-1), var(--deep-2));
      color: rgba(255, 255, 255, 0.72);
      border-color: rgba(255, 255, 255, 0.14);
    }

    .pricing-side h3 { color: #fff; font-size: 30px; }
    .pricing-side p { margin-top: 12px; }
    .pricing-side .btn { width: 100%; }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      cursor: pointer;
      color: var(--ink);
      font-weight: 760;
      padding: 18px 20px;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      display: grid;
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      place-items: center;
      border-radius: 50%;
      background: var(--indigo-soft);
      color: var(--indigo-strong);
      content: "+";
      font-weight: 820;
    }

    .faq-item[open] summary::after { content: "-"; }

    .faq-item p {
      padding: 0 20px 20px;
      color: var(--muted);
    }

    .final {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background-color: var(--page);
      color: var(--text);
      padding: 96px 0;
    }

    .final::before,
    .final::after {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
    }

    .final::before {
      z-index: 0;
      background-image: var(--final-bg);
      background-position: var(--final-pos, center);
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0.98;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.22) 45%, #000 66%, #000 100%);
      mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.22) 45%, #000 66%, #000 100%);
    }

    .final::after {
      z-index: 1;
      background: linear-gradient(90deg, var(--page) 0%, rgba(247, 248, 252, 0.92) 27%, rgba(247, 248, 252, 0.42) 50%, rgba(247, 248, 252, 0) 72%);
    }

    .final > .container {
      position: relative;
      z-index: 2;
      width: min(650px, calc(100% - 48px));
      margin-left: max(24px, calc((100% - 1180px) / 2));
      margin-right: auto;
    }

    .final-content {
      position: relative;
      max-width: none;
      border: 1px solid rgba(255, 255, 255, 0.64);
      border-radius: var(--r-lg);
      background: rgba(255, 255, 255, 0.78);
      padding: 36px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 24px 70px -32px rgba(15, 23, 42, 0.34);
      backdrop-filter: blur(24px) saturate(130%);
      -webkit-backdrop-filter: blur(24px) saturate(130%);
    }

    .final h2 {
      color: var(--ink);
      font-size: 58px;
    }

    .final p {
      margin-top: 18px;
      max-width: 620px;
      color: var(--text);
      font-size: 20px;
    }

    .final .hero-actions { margin-top: 30px; }

    .footer {
      background: #0b1116;
      color: rgba(255, 255, 255, 0.62);
      padding: 30px 0;
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      h1 { font-size: 58px; }
      h2 { font-size: 44px; }
      .hero-promise { font-size: 22px; }
      .nav { display: none; }
      .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 860px) {
      .topbar { position: fixed; inset: 10px 0 auto; }
      .topbar-inner { min-height: 58px; padding: 8px 10px 8px 12px; }
      .brand img { width: 126px; }
      .menu-toggle { display: inline-flex; }
      .topbar-actions .btn { display: none; }
      .nav {
        position: fixed;
        inset: 78px 18px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: #fff;
        padding: 10px;
        box-shadow: var(--shadow);
      }
      .menu-open .nav { display: flex; }
      .nav a { padding: 13px 14px; }
      .hero {
        min-height: 86svh;
        align-items: flex-end;
        padding: 98px 0 38px;
      }
      .hero::before { background-position: 59% center; }
      .hero::after {
        background:
          linear-gradient(180deg, rgba(247, 248, 252, 0.18) 0%, rgba(247, 248, 252, 0.62) 38%, rgba(247, 248, 252, 0.98) 100%),
          linear-gradient(90deg, rgba(247, 248, 252, 0.9), rgba(247, 248, 252, 0.18));
      }
      h1 { font-size: 48px; }
      h2 { font-size: 36px; }
      h3 { font-size: 22px; }
      .hero-promise { font-size: 20px; }
      .hero-copy { font-size: 17px; }
      .section { padding: 72px 0; }
      .section.photo-section,
      .final {
        padding-top: 330px;
      }
      .section.photo-section::before,
      .section.photo-section::after,
      .final::before,
      .final::after {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 360px;
      }
      .section.photo-section::before {
        background-position: var(--section-pos-mobile, var(--section-pos, center));
        -webkit-mask-image: none;
        mask-image: none;
      }
      .final::before {
        background-position: var(--final-pos-mobile, var(--final-pos, center));
        -webkit-mask-image: none;
        mask-image: none;
      }
      .section.photo-section::after,
      .photo-section.content-left::after,
      .photo-section.content-right::after,
      .final::after {
        background: linear-gradient(180deg, rgba(247, 248, 252, 0.06) 0%, rgba(247, 248, 252, 0.18) 52%, var(--page) 100%);
      }
      .photo-section > .container,
      .photo-section.content-left > .container,
      .photo-section.content-right > .container,
      .final > .container {
        width: min(100% - 48px, 650px);
        margin-left: auto;
        margin-right: auto;
      }
      .section-head,
      .comparison,
      .case-top,
      .reviews-layout,
      .task-demo,
      .vps-layout,
      .pricing-wrap {
        grid-template-columns: 1fr;
      }
      #difference .comparison {
        grid-template-columns: 1fr;
      }
      .section-head { gap: 16px; }
      .photo-section .section-head,
      .photo-section .comparison-copy,
      .photo-section .vps-copy,
      .final-content {
        padding: 24px;
      }
      .proof-grid,
      .flow {
        grid-template-columns: 1fr;
      }
      .difference-row,
      .price-row {
        grid-template-columns: 1fr;
      }
      .difference-cell:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
      .faq-grid { grid-template-columns: 1fr; }
      .final h2 { font-size: 40px; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 32px, 1180px); }
      h1 { font-size: 42px; }
      h2 { font-size: 32px; }
      .hero-promise { font-size: 18px; }
      .hero-copy { font-size: 16px; }
      .hero-actions,
      .final .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .btn { width: 100%; white-space: normal; }
      .audience-grid {
        grid-template-columns: 1fr;
      }
      .carousel-btn { width: 44px; height: 44px; }
      .case-top { margin-bottom: 18px; }
      .case-controls { justify-content: flex-start; }
      .case-slide {
        flex-basis: calc(100vw - 32px);
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .case-slide.media-left .case-media,
      .case-slide.media-right .case-media {
        order: -1;
      }
      .case-media { min-height: 270px; }
      .case-copy { padding: 24px; }
      .case-copy h3 { font-size: 30px; }
      .case-copy p { font-size: 17px; }
      .reviews-list { grid-template-columns: 1fr; }
      .review-card,
      .review-card.featured {
        min-height: 0;
        padding: 24px;
      }
      .review-card.featured {
        grid-template-columns: 1fr;
      }
      .review-card.featured .review-text {
        font-size: 22px;
      }
      .review-card.featured .review-person {
        margin-top: 28px;
      }
      .photo-section .section-head,
      .photo-section .comparison-copy,
      .photo-section .vps-copy,
      .final-content {
        padding: 20px;
      }
      .voice-panel,
      .result-panel,
      .pricing-main,
      .pricing-side {
        padding: 20px;
      }
      .result-line {
        grid-template-columns: 28px 1fr;
      }
      .result-line em { grid-column: 2; width: fit-content; }
    }

    @media (max-width: 860px) {
      .photo-section .section-head,
      .photo-section .comparison-copy,
      .photo-section .vps-copy,
      .photo-section .flow-step,
      .photo-section .voice-panel,
      .photo-section .result-panel,
      .photo-section .difference-table,
      .photo-section .server-map,
      .photo-section .audience-card,
      .photo-section .pricing-main,
      .final-content {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.97);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
      .reveal { opacity: 1; transform: none; }
    }


/* ===== biz-слой: компоненты лендингов biz.moi-agent.ru ===== */
:root { --bg: var(--page); } /* страховка: base.css использует --bg в .result-line/.server-line, но не определяет */
.hero.no-photo::before { background-image: linear-gradient(135deg, #eef2ff 0%, #f7f8fc 52%, #f5f3ff 100%); }
.hero.no-photo::after { background: none; }
.hero.no-photo { min-height: auto; padding: 132px 0 64px; }

/* херо с фирменным фото (оптимизированные копии hero-lifestyle-light) */
.hero.photo { min-height: auto; padding: 138px 0 72px; }
.hero.photo::before {
  background-image: url("/static/landing/v2/hero-biz-1600.jpg");
  background-image: image-set(url("/static/landing/v2/hero-biz-1600.webp") type("image/webp"), url("/static/landing/v2/hero-biz-1600.jpg") type("image/jpeg"));
}
@media (max-width: 719px) {
  .hero.photo { padding: 112px 0 48px; }
  .hero.photo::before {
    background-image: url("/static/landing/v2/hero-biz-900.jpg");
    background-image: image-set(url("/static/landing/v2/hero-biz-900.webp") type("image/webp"), url("/static/landing/v2/hero-biz-900.jpg") type("image/jpeg"));
  }
}

/* стеклянный виджет на фото */
.hero .demo-shell {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 36px 90px -40px rgba(30, 27, 75, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.hero .demo-head { background: rgba(255, 255, 255, 0.35); border-bottom-color: rgba(255, 255, 255, 0.55); }
.hero .msg.agent { background: rgba(255, 255, 255, 0.88); }
.hero .msg.user { background: rgba(238, 242, 255, 0.82); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: 44px; align-items: center; position: relative; z-index: 2; }
.hero-grid .hero-content { max-width: none; }
.trust-line { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; color: var(--muted); font-size: 14px; font-weight: 650; }
.trust-line span::before { content: "✓"; color: var(--ok); font-weight: 800; margin-right: 6px; }

/* окно-демо */
.demo-shell { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.demo-shell.compact { max-width: 520px; }
.demo-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg-soft); color: var(--muted); font-size: 13px; font-weight: 700; }
.demo-head i { display: inline-flex; gap: 5px; }
.demo-head i::before, .demo-head i::after, .demo-head i span { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); display: inline-block; }
.demo-body { padding: 18px; display: grid; gap: 14px; }

/* чат */
.tg-chat { display: grid; gap: 10px; }
.msg { max-width: 92%; border-radius: 14px; padding: 11px 14px; font-size: 14.5px; line-height: 1.5; position: relative; }
.msg .msg-time { display: block; margin-top: 6px; font-size: 11.5px; color: var(--muted); text-align: right; }
.msg.user { justify-self: end; background: var(--indigo-soft); border: 1px solid rgba(79, 70, 229, 0.18); color: var(--ink); }
.msg.agent { justify-self: start; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); color: var(--text); }
.msg.agent b, .msg.user b { color: var(--ink); }
.msg .msg-title { display: block; font-weight: 800; color: var(--indigo-strong); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.msg ul { display: grid; gap: 4px; margin: 6px 0; }
.msg ul li::before { content: "—"; color: var(--indigo); margin-right: 6px; }

/* карточка-документ */
.doc-card { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; box-shadow: var(--shadow-soft); padding: 16px 18px; font-size: 14.5px; line-height: 1.5; }
.doc-card + .doc-card { margin-top: 12px; }
.doc-card .doc-kicker { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.doc-card .doc-title { display: block; font-weight: 750; color: var(--ink); font-size: 16px; margin-bottom: 8px; }
.doc-row { display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; border-top: 1px dashed var(--line); }
.doc-row:first-of-type { border-top: 0; }
.doc-row b { color: var(--ink); font-weight: 700; white-space: nowrap; }

.badge { display: inline-block; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.02em; }
.badge.ok { background: rgba(16, 185, 129, 0.12); color: #047857; }
.badge.warn { background: rgba(217, 155, 43, 0.14); color: #92610e; }
.badge.alert { background: rgba(226, 111, 75, 0.13); color: #b4451f; }
.badge.plain { background: var(--bg-soft); color: var(--muted); }

.stars { color: #f59e0b; letter-spacing: 2px; font-size: 13px; }
.review-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-pair .doc-card { margin: 0; }
.review-in { background: var(--bg-soft); }
.review-out { border-color: rgba(79, 70, 229, 0.28); }
.demo-note { margin-top: 14px; color: var(--muted); font-size: 13.5px; }

/* шаги: иконки вместо номеров и линий-скелетонов из базового CSS */
.flow-step::before { display: none; }
.flow-step .mini { display: none; }
.step-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--indigo-soft); color: var(--indigo-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.step-icon svg { width: 22px; height: 22px; display: block; }

/* боли: матовое стекло на глубоком индиго */
.pains-glass { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(140deg, #1e1b4b 0%, #312e81 56%, #3730a3 100%); }
.pains-glass::before, .pains-glass::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1; pointer-events: none; }
.pains-glass::before { width: 620px; height: 620px; left: -160px; top: -220px; background: rgba(129, 140, 248, 0.5); }
.pains-glass::after { width: 560px; height: 560px; right: -140px; bottom: -240px; background: rgba(196, 181, 253, 0.34); }
.pains-glass .section-head h2, .pains-glass .section-head h2 b { color: #fff; }
.pains-glass .section-head p { color: rgba(255, 255, 255, 0.72); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-card {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  border-radius: 22px; padding: 34px 30px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 30px 70px -34px rgba(2, 6, 23, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.pain-card p { margin: 0; font-size: 20px; line-height: 1.5; font-weight: 570; color: #fff; letter-spacing: -0.012em; }
.pain-bridge { margin-top: 28px; color: rgba(255, 255, 255, 0.75); font-size: 16px; font-weight: 600; }
.pain-bridge a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 750; }
@media (max-width: 860px) {
  /* как у .photo-section/.final-content в base.css: без blur на слабых телефонах */
  .pain-card { -webkit-backdrop-filter: none; backdrop-filter: none; background: linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%); }
}

/* экономия */
.econ-table { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; }
.econ-row { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1.3fr); gap: 12px; align-items: center; padding: 16px 22px; border-top: 1px solid var(--line); font-size: 15px; }
.econ-row:first-child { border-top: 0; }
.econ-row b { color: var(--ink); font-size: 16px; }
.econ-row .econ-price { font-weight: 800; color: var(--ink); white-space: nowrap; }
.econ-row.win { background: var(--indigo-soft); }
.econ-row.win b, .econ-row.win .econ-price { color: var(--indigo-strong); }
.econ-verdict { margin-top: 16px; display: inline-block; border-radius: var(--r-md); background: var(--indigo-soft); border: 1px solid rgba(79, 70, 229, 0.2); color: var(--indigo-strong); font-weight: 800; padding: 12px 18px; font-size: 16px; }

/* тарифы */
.pricing-strip { margin: 0 0 22px; display: inline-block; border-radius: 999px; background: var(--indigo-soft); border: 1px solid rgba(79, 70, 229, 0.2); color: var(--indigo-strong); font-weight: 800; font-size: 14px; padding: 8px 16px; }
.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tariff-card { position: relative; display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-soft); padding: 26px; }
.tariff-card.featured { border: 2px solid var(--indigo); box-shadow: var(--shadow); }
.tariff-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--indigo); color: #fff; border-radius: 999px; font-size: 12px; font-weight: 800; padding: 5px 14px; white-space: nowrap; }
.tariff-name { font-size: 20px; font-weight: 750; color: var(--ink); }
.tariff-price { font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.tariff-price span { font-size: 15px; font-weight: 650; color: var(--muted); }
.tariff-for { color: var(--muted); font-size: 14px; min-height: 40px; }
.tariff-list { display: grid; gap: 8px; font-size: 14.5px; }
.tariff-list li { padding-left: 22px; position: relative; }
.tariff-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.tariff-card .btn { margin-top: auto; }
.pricing-value { margin-top: 20px; color: var(--muted); font-size: 15px; font-weight: 650; }
.pricing-value b { color: var(--ink); }

/* хаб */
.hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hub-card { display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-soft); padding: 24px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease); }
a.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(79, 70, 229, 0.35); }
.hub-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--indigo-soft); color: var(--indigo-strong); display: flex; align-items: center; justify-content: center; }
.hub-icon svg { width: 22px; height: 22px; display: block; }
.hub-card h3 { font-size: 18px; }
.hub-card p { color: var(--muted); font-size: 14px; flex: 1; }
.hub-more { color: var(--indigo-strong); font-weight: 750; font-size: 14px; }
.hub-card.soon { background: var(--bg-soft); border-style: dashed; }
.hub-card.soon .hub-icon { background: #fff; color: var(--muted); }

/* «что умеет базовый агент» */
.base-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.base-card { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-soft); padding: 28px; }
.base-card .step-icon { margin-bottom: 16px; }
.base-card h3 { font-size: 20px; }
.base-card p { margin-top: 10px; color: var(--text); font-size: 15.5px; line-height: 1.55; }
.base-note { margin-top: 22px; max-width: 840px; border-left: 3px solid var(--indigo); padding: 4px 0 4px 18px; color: var(--text); font-size: 16px; }
.base-note b { color: var(--ink); }

/* калькулятор модулей (хаб) */
.calc { margin-top: 34px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; }
.calc-head { padding: 26px 28px 6px; }
.calc-head h3 { font-size: 22px; }
.calc-head p { margin-top: 6px; color: var(--muted); font-size: 14.5px; }
.calc-rows { padding: 14px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.calc-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 12px; cursor: pointer; transition: background-color 0.15s var(--ease); }
.calc-row:hover { background: var(--indigo-soft); }
.calc-row input { width: 18px; height: 18px; accent-color: var(--indigo); cursor: pointer; }
.calc-name { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.calc-class { font-size: 11.5px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 2px 8px; white-space: nowrap; }
.calc-price { font-size: 14.5px; color: var(--ink); white-space: nowrap; }
.calc-total { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 28px 24px; border-top: 1px solid var(--line); font-size: 17px; color: var(--text); }
.calc-total b { color: var(--indigo-strong); font-size: 24px; font-weight: 800; }
#calcNote { color: var(--muted); font-size: 14px; margin-left: 8px; }

/* финальный CTA: alt-ссылка */
.final-alt { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,0.85); }
.final-alt a { color: #fff; text-decoration: underline; font-weight: 750; }
.final .final-content .cta-note { color: rgba(255,255,255,0.8); }
.final .final-content .cta-note b { color: #fff; }

/* футер-юридика */
.footer-legal { margin-top: 10px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

/* страница 404 и текстовые страницы */
.plain-page { padding: 150px 0 90px; min-height: 60svh; }
.plain-page h1 { font-size: 44px; }
.plain-page .prose { margin-top: 22px; max-width: 760px; display: grid; gap: 14px; font-size: 16px; }
.plain-page .prose h2 { font-size: 26px; margin-top: 18px; }

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pain-grid { grid-template-columns: 1fr; }
  .review-pair { grid-template-columns: 1fr; }
  .econ-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .base-grid { grid-template-columns: 1fr; }
  .calc-rows { grid-template-columns: 1fr; }
}
@media (max-width: 719px) {
  .hero.no-photo { padding: 108px 0 44px; }
  .hub-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .plain-page h1 { font-size: 32px; }
}
