@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-100.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-200.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
    :root {
      --bg: #f5f5f7;
      --text: #241b35;
      --muted: #a5a8eb;
      --accent: #5e17eb;
      --accent-2: #9f82dd;
      --card: #ffffff;
      --stroke: #dbd9e3;
      --wave: #e8cef3;
      --radius-xl: 36px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-pill: 85px;
      --shadow-soft: 0 24px 48px rgba(36, 27, 53, 0.16);
      --shadow-phone: 0 43px 51.5px rgba(36, 27, 53, 0.4);
    }

    * {
      box-sizing: border-box;
    }

    a:focus,
    a:focus-visible,
    button:focus,
    button:focus-visible,
    input:focus,
    input:focus-visible,
    textarea:focus,
    textarea:focus-visible,
    select:focus,
    select:focus-visible,
    summary:focus,
    summary:focus-visible,
    [tabindex]:focus,
    [tabindex]:focus-visible {
      outline: none !important;
      box-shadow: none !important;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Onest", sans-serif;
      scroll-behavior: smooth;
    }

    body {
      overflow-x: hidden;
      line-height: 1.25;
    }

    .site {
      overflow: hidden;
      position: relative;
      min-width: 320px;
      isolation: isolate;
    }

    [data-page-content] {
      transition: opacity 0.42s ease, transform 0.42s ease;
    }

    body.is-switching [data-page-content] {
      opacity: 0.55;
      transform: translateY(10px);
    }

    .container {
      width: min(1920px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    section {
      position: relative;
      scroll-margin-top: 110px;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(245, 245, 247, 0.88);
      backdrop-filter: blur(10px);
      border-bottom: 0;
    }

    .header-grid {
      min-height: 108px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .menu-links {
      display: flex;
      align-items: center;
      gap: 34px;
      min-width: 0;
    }

    .menu-link,
    .menu-links a {
      border: 0;
      padding: 0;
      margin: 0;
      background: transparent;
      color: var(--text);
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.3s ease;
      white-space: nowrap;
      font-family: inherit;
    }

    .menu-link:hover,
    .menu-links a:hover {
      color: var(--accent);
    }

    .menu-phone-link {
      display: none;
    }

    .menu-switch {
      text-decoration: underline;
      text-decoration-color: var(--accent);
      text-decoration-thickness: 1px;
      color: var(--accent);
    }

    .when-aso,
    .when-dev {
      display: none;
    }

    body.page-aso .when-aso {
      display: inline;
    }

    body.page-dev .when-dev {
      display: inline;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .logo img {
      width: 130px;
      height: auto;
      display: block;
    }

    .header-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .phone-link {
      font-size: 20px;
      color: var(--text);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.3s ease;
    }

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

    .icon-link {
      width: 33px;
      height: 33px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      transition: transform 0.25s ease;
    }

    .icon-link:hover {
      transform: translateY(-2px);
    }

    .icon-link img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .header-cta {
      margin-left: 8px;
      height: 53px;
      border: 2px solid var(--accent);
      border-radius: var(--radius-md);
      color: var(--accent);
      background: #fff;
      font-size: 16px;
      font-weight: 600;
      padding: 0 26px;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .header-cta:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
    }

    .mobile-burger {
      display: none;
      border: 0;
      background: transparent;
      padding: 6px;
      margin: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      color: var(--text);
    }

    .mobile-burger span {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }

    body.mobile-menu-open .mobile-burger span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-burger span:nth-child(2) {
      opacity: 0;
    }

    body.mobile-menu-open .mobile-burger span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .segmented {
      --thumb-x: 0%;
      --thumb-shift: 8px;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 2px solid var(--muted);
      border-radius: var(--radius-pill);
      background: #fff;
      padding: 6px;
      gap: 8px;
      isolation: isolate;
      max-width: 100%;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(36, 27, 53, 0.06);
    }

    body.page-aso .segmented {
      --thumb-x: 0%;
    }

    body.page-dev .segmented {
      --thumb-x: calc(100% + var(--thumb-shift));
    }

    .segmented::before {
      content: "";
      position: absolute;
      z-index: 0;
      left: 6px;
      top: 6px;
      bottom: 6px;
      width: calc(50% - 10px);
      border-radius: 48px;
      background: linear-gradient(180deg, #a5a8eb 0%, #9f82dd 100%);
      transform: translateX(var(--thumb-x));
      transition: transform 0.55s cubic-bezier(0.2, 0.85, 0.2, 1);
    }

    .segmented[data-size="lg"] {
      width: min(580px, 100%);
    }

    .segmented[data-size="md"] {
      width: min(428px, 100%);
    }

    .segmented button {
      position: relative;
      z-index: 1;
      border: 0;
      background: transparent;
      border-radius: 48px;
      height: 96px;
      font-size: 24px;
      font-weight: 400;
      color: var(--text);
      cursor: pointer;
      transition: color 0.35s ease;
      font-family: inherit;
    }

    .segmented[data-size="md"] button {
      height: 60px;
      font-size: 20px;
    }

    .segmented button.active {
      color: #fff;
    }

    .hero-section {
      padding: 26px 0 90px;
    }

    .hero-section::before {
      content: "";
      position: absolute;
      left: -12%;
      right: -12%;
      top: 118px;
      height: 1280px;
      background: url("images/bg01a.png") center top / cover no-repeat;
      z-index: 0;
      filter: none;
      pointer-events: none;
    }

    .hero-toggle-wrap {
      --stuck-width: min(520px, calc(100vw - 28px));
      display: flex;
      justify-content: center;
      margin-bottom: 34px;
      min-height: 110px;
      position: relative;
      z-index: 2147483640;
      isolation: isolate;
      align-items: flex-start;
      transform: translateZ(0);
    }

    .hero-toggle-wrap .segmented {
      position: relative;
      z-index: 2147483641;
      transition: width 0.28s ease, padding 0.28s ease, gap 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, opacity 0.2s ease;
    }

    .hero-toggle-wrap.floating-mounted {
      position: fixed !important;
      left: 50% !important;
      top: var(--switch-sticky-top, 8px) !important;
      transform: translateX(-50%) !important;
      width: var(--stuck-width) !important;
      min-height: 0 !important;
      margin: 0 !important;
      z-index: 2147483647 !important;
      pointer-events: auto;
      isolation: isolate;
    }

    .hero-toggle-wrap.floating-mounted .segmented {
      width: 100% !important;
      pointer-events: auto;
      box-shadow: 0 14px 30px rgba(36, 27, 53, 0.2);
      background: #fff !important;
      opacity: 1 !important;
    }

    .hero-toggle-placeholder {
      width: 100%;
      min-height: 66px;
      pointer-events: none;
    }

    .hero-toggle-wrap.is-stuck {
      position: fixed;
      left: 50%;
      top: var(--switch-sticky-top, 6px);
      transform: translateX(-50%);
      width: var(--stuck-width);
      min-height: 0;
      margin: 0;
      z-index: 2147483647 !important;
      pointer-events: auto;
    }

    .hero-toggle-wrap.is-stuck .segmented {
      --thumb-shift: 6px;
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      width: 100% !important;
      padding: 4px;
      gap: 6px;
      z-index: 1;
      pointer-events: auto;
      box-shadow: 0 14px 30px rgba(36, 27, 53, 0.2);
      background: #fff !important;
      opacity: 1 !important;
    }

    .hero-toggle-wrap.is-stuck .segmented::before {
      left: 4px;
      top: 4px;
      bottom: 4px;
      width: calc(50% - 7px);
    }

    .hero-toggle-wrap.is-stuck .segmented button {
      height: 74px;
      font-size: 21px;
    }

    body.mobile-menu-open .hero-toggle-wrap.is-stuck {
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(-8px);
    }

    body.mobile-menu-open .hero-toggle-wrap.floating-mounted {
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(-8px) !important;
    }

    .page-pane {
      display: none;
    }

    body.page-aso .page-pane[data-page="aso"],
    body.page-dev .page-pane[data-page="dev"] {
      display: block;
    }

    body.page-aso .page-pane[data-page="dev"],
    body.page-dev .page-pane[data-page="aso"] {
      display: none !important;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.75fr 0.9fr;
      gap: 34px;
      align-items: end;
    }

    .hero-main {
      position: relative;
      z-index: 3;
    }

    .hero-title {
      margin: 0;
      font-size: clamp(34px, 4.2vw, 64px);
      font-weight: 100;
      line-height: 1.02;
      letter-spacing: -0.02em;
      max-width: 950px;
    }

    .hero-subtitle {
      margin: 18px 0 0;
      font-size: clamp(23px, 2.2vw, 36px);
      letter-spacing: -0.02em;
      font-weight: 400;
      max-width: 880px;
    }

    .highlight-dark {
      display: inline-block;
      color: #fff;
      background: #241b35;
      padding: 3px 10px 4px;
      line-height: 1;
    }

    .hero-device {
      position: relative;
      z-index: 1;
      justify-self: center;
      align-self: center;
      transform: translateY(16px);
      filter: drop-shadow(0 28px 32px rgba(36, 27, 53, 0.2));
      pointer-events: none;
    }

    .hero-device img {
      width: 100%;
      height: auto;
      max-width: 347px;
      display: block;
      pointer-events: none;
    }

    .hero-device.hero-aso img {
      max-width: 268px;
    }

    .hero-side {
      position: relative;
      z-index: 3;
      padding-bottom: 4px;
    }

    .hero-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 9px;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: -0.02em;
      max-width: 470px;
    }

    .hero-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .hero-list li::before {
      content: "";
      flex: 0 0 12px;
      width: 12px;
      height: 12px;
      margin-top: 8px;
      background: url("images/Rectangle 4.svg") center/contain no-repeat;
      transform: rotate(90deg);
    }

    .hero-union {
      width: 100%;
      max-width: 392px;
      margin: 14px 0 0 18px;
      opacity: 0.95;
    }

    .btn {
      border: 0;
      border-radius: var(--radius-md);
      min-height: 67px;
      padding: 0 34px;
      font-family: inherit;
      font-size: 20px;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(36, 27, 53, 0.16);
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
    }

    .hero-actions {
      margin-top: 22px;
      display: grid;
      gap: 12px;
      width: min(430px, 100%);
      position: relative;
      z-index: 4;
    }

    .hero-actions .btn {
      width: 100%;
      position: relative;
      z-index: 5;
    }

    .overview-section {
      padding: 30px 0 88px;
    }

    .overview-pane {
      display: grid;
      grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1fr);
      gap: 42px;
      align-items: center;
    }

    .stats-card {
      width: min(591px, 100%);
      min-height: 354px;
      border-radius: 33px;
      background: #fff;
      box-shadow: var(--shadow-soft);
      padding: 26px;
      position: relative;
      overflow: hidden;
    }

    .stats-card::before {
      content: "";
      position: absolute;
      left: -30px;
      top: -36px;
      width: 210px;
      height: 210px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(165, 168, 235, 0.35), rgba(165, 168, 235, 0));
    }

    .metric {
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .metric .label {
      display: block;
      font-size: 13px;
      color: rgba(36, 27, 53, 0.72);
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .metric .value {
      display: block;
      margin-top: 2px;
      font-size: 44px;
      font-weight: 200;
      line-height: 1;
      color: var(--text);
    }

    .stats-case {
      margin-top: 18px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(36, 27, 53, 0.12);
    }

    .stats-case img {
      width: 100%;
      height: auto;
      display: block;
    }

    .overview-title {
      margin: 0;
      font-size: clamp(34px, 3.6vw, 48px);
      font-weight: 300;
      line-height: 1.14;
      letter-spacing: -0.02em;
    }

    .overview-text {
      margin: 20px 0 0;
      font-size: 32px;
      font-weight: 300;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .overview-text strong {
      font-weight: 500;
    }

    .overview-description {
      margin: 14px 0 0;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: -0.02em;
      max-width: 938px;
    }

    .plus-hint {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: 16px;
    }

    .plus-hint::before {
      content: "+";
      color: var(--accent);
      font-size: 24px;
      line-height: 1;
      font-weight: 400;
    }

    .examples-image {
      width: min(680px, 100%);
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .examples-image img {
      width: 100%;
      display: block;
      height: auto;
    }

    .apps-list {
      margin: 20px 0 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(220px, 1fr));
      gap: 14px 22px;
      font-size: 32px;
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .apps-item {
      display: flex;
      align-items: center;
      gap: 11px;
      white-space: nowrap;
    }

    .apps-item::before {
      content: "";
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      background: url("images/Rectangle 6.svg") center/contain no-repeat;
      transform: rotate(90deg);
    }

    .overview-actions {
      margin-top: 30px;
    }

    .process-section {
      padding: 66px 0 94px;
    }

    .process-title {
      margin: 0;
      font-size: clamp(38px, 4.2vw, 64px);
      font-weight: 100;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .process-shell {
      margin-top: 30px;
      position: relative;
    }

    .process-wave {
      position: relative;
      width: 100%;
      height: 285px;
      margin: 0 auto;
      opacity: 0.96;
    }

    .process-wave img {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: min(1935px, 130%);
      height: auto;
      top: 3px;
      pointer-events: none;
    }

    .process-icon {
      position: absolute;
      top: 106px;
      width: 69px;
      height: 69px;
      transform: translateX(-50%);
    }

    .process-icon img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .process-steps {
      margin-top: -10px;
      display: grid;
      gap: 14px;
    }

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

    .process-steps.cols-6 {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .process-step {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      column-gap: 14px;
      align-items: start;
      align-content: start;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .process-step.top {
      margin-bottom: 188px;
    }

    .process-step.bottom {
      margin-top: -4px;
    }

    .process-step .num {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      min-width: 72px;
      margin: 0;
      grid-column: 1;
      grid-row: 1;
      font-size: 64px;
      line-height: 1;
      font-weight: 300;
    }

    .process-step .step-title {
      display: flex;
      align-items: center;
      min-width: 0;
      max-width: none;
      grid-column: 2;
      grid-row: 1;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.15;
    }

    .process-step p {
      grid-column: 1 / -1;
      margin: 0;
      font-size: 20px;
      font-weight: 300;
      line-height: 1.35;
      letter-spacing: -0.02em;
    }

    .discount-section {
      padding: 88px 0 94px;
    }

    .discount-section::before {
      content: "";
      position: absolute;
      left: 50%;
      right: auto;
      top: -101px;
      width: 1920px;
      height: 1217px;
      transform: translateX(-50%);
      background: url("images/bg02a.png") center top / 1920px 1217px no-repeat;
      z-index: 0;
      filter: none;
      pointer-events: none;
    }

    .discount-grid {
      display: grid;
      grid-template-columns: 1fr minmax(460px, 856px);
      gap: 34px;
      align-items: center;
    }

    .discount-label {
      margin: 0;
      font-size: 48px;
      font-weight: 300;
      line-height: 1.1;
    }

    .discount-headline {
      margin: 18px 0 0;
      font-size: clamp(40px, 4.1vw, 64px);
      font-weight: 100;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .discount-headline .highlight-dark {
      margin-right: 8px;
      padding: 8px 18px 10px;
    }

    .discount-note {
      margin: 24px 0 0;
      max-width: 470px;
      font-size: 20px;
      line-height: 1.35;
      letter-spacing: -0.02em;
      font-weight: 300;
    }

    .discount-visual {
      position: relative;
      padding-bottom: 56px;
      overflow: visible;
    }

    .timer-card {
      position: relative;
      width: 100%;
      aspect-ratio: 931 / 499;
      min-height: 420px;
      padding: 68px 54px 40px;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }

    .timer-card::before {
      content: none;
    }

    .timer-phone-frame {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      pointer-events: none;
      z-index: 1;
    }

    .timer-banner {
      position: relative;
      z-index: 2;
      height: 52px;
      border: 2px solid #fff;
      border-radius: 31px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      text-align: center;
      letter-spacing: -0.02em;
      padding: 0 20px;
    }

    .timer-values {
      position: relative;
      z-index: 2;
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      align-items: end;
      justify-items: center;
      color: #fff;
      text-align: center;
    }

    .timer-value {
      font-size: clamp(72px, 7vw, 128px);
      font-weight: 100;
      line-height: 0.95;
      letter-spacing: 0.01em;
    }

    .timer-unit {
      margin-top: 6px;
      font-size: 20px;
      font-weight: 300;
      text-transform: lowercase;
    }

    .timer-actions {
      position: absolute;
      left: 50%;
      bottom: 0;
      z-index: 3;
      display: flex;
      justify-content: center;
      width: min(580px, calc(100% - 108px));
      margin: 0;
      transform: translateX(-50%);
    }

    .timer-actions .btn {
      width: 100%;
      min-height: 110px;
    }

    .cases-section {
      padding: 74px 0 98px;
    }

    .cases-title {
      margin: 0;
      font-size: clamp(40px, 4.3vw, 64px);
      font-weight: 100;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .cases-grid {
      margin-top: 34px;
      display: grid;
      gap: 28px;
    }

    .cases-grid.cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cases-grid.cols-6 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      row-gap: 52px;
    }

    .case-card {
      min-height: 330px;
      padding: 0;
      position: relative;
    }

    .case-head {
      display: grid;
      grid-template-columns: 146px 1fr;
      gap: 18px;
      align-items: center;
    }

    .case-thumb {
      width: 146px;
      height: 146px;
      border-radius: 33px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 20px rgba(36, 27, 53, 0.08);
    }

    .case-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .case-title {
      margin: 0;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.02em;
      max-width: 237px;
    }

    .case-summary {
      margin: 18px 0 0;
      font-size: 20px;
      font-weight: 300;
      line-height: 1.28;
      letter-spacing: -0.02em;
    }

    .case-toggle {
      margin-top: 18px;
      border: 0;
      padding: 0;
      background: none;
      color: var(--accent);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: inherit;
    }

    .case-toggle::before {
      content: "";
      width: 12px;
      height: 12px;
      background: url("images/Rectangle 4.svg") center/contain no-repeat;
      transform: rotate(90deg);
      transition: transform 0.32s ease;
      flex: 0 0 12px;
    }

    .case-card.open .case-toggle::before {
      transform: rotate(180deg);
    }

    .case-extra {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s ease, opacity 0.45s ease;
      opacity: 0;
    }

    .case-card.open .case-extra {
      max-height: 400px;
      opacity: 1;
      margin-top: 12px;
    }

    .case-extra p {
      margin: 0;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.35;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .case-extra .meta-title {
      margin-top: 10px;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .pricing-section {
      padding: 88px 0 98px;
    }

    .pricing-pane {
      position: relative;
      border-radius: 48px;
      padding: 72px 44px 66px;
      overflow: hidden;
    }

    .pricing-pane::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("images/bg03a.png") center top / cover no-repeat;
      filter: none;
      z-index: 0;
      pointer-events: none;
    }

    .pricing-pane > * {
      position: relative;
      z-index: 1;
    }

    .pricing-title {
      margin: 0;
      font-size: clamp(40px, 4.3vw, 64px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      font-weight: 100;
    }

    .pricing-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
    }

    .pricing-card {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 12px;
      align-items: start;
      min-height: 228px;
    }

    .pricing-card .icon {
      width: 73px;
      height: 73px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pricing-card .icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .pricing-card:nth-child(1) .icon img {
      transform: rotate(-90deg);
    }

    .pricing-name {
      margin: 0;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .pricing-price {
      margin: 4px 0 0;
      font-size: 64px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .pricing-old {
      margin-top: 6px;
      font-size: 24px;
      color: #fff;
      text-decoration: line-through;
      font-weight: 400;
    }

    .pricing-card .btn {
      margin-top: 14px;
      min-height: 53px;
      width: 100%;
      font-size: 16px;
      font-weight: 600;
      padding: 0 14px;
    }

    .faq-section {
      padding: 84px 0 96px;
    }

    .faq-title {
      margin: 0;
      font-size: clamp(40px, 4.3vw, 64px);
      font-weight: 100;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .accordion {
      margin-top: 28px;
      border-top: 1px solid transparent;
      display: grid;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(36, 27, 53, 0.12);
      padding: 0;
      overflow-anchor: none;
    }

    .faq-trigger {
      width: 100%;
      border: 0;
      background: none;
      padding: 20px 0;
      display: grid;
      grid-template-columns: 72px 1fr 46px;
      gap: 18px;
      align-items: center;
      text-align: left;
      cursor: pointer;
      font-family: inherit;
    }

    .faq-num {
      font-size: 28px;
      font-weight: 200;
      color: var(--muted);
      line-height: 1;
    }

    .faq-question {
      font-size: 24px;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .faq-icon {
      width: 35px;
      height: 35px;
      position: relative;
      justify-self: end;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      background: #1f1f1f;
      left: 0;
      right: 0;
      margin: auto;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .faq-icon::before {
      top: 16px;
      width: 35px;
      height: 2px;
    }

    .faq-icon::after {
      width: 2px;
      height: 35px;
      top: 0;
    }

    .faq-item.open .faq-icon::after {
      opacity: 0;
      transform: scaleY(0.15);
    }

    .faq-body {
      height: 0;
      overflow: hidden;
      transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, padding-bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      opacity: 0;
      padding-bottom: 0;
      margin-left: 90px;
      margin-right: 74px;
    }

    .faq-item.open .faq-body {
      height: auto;
      opacity: 1;
      padding-bottom: 22px;
    }

    .faq-body p {
      margin: 0;
      font-size: 20px;
      font-weight: 300;
      line-height: 1.45;
      letter-spacing: -0.02em;
    }

    .final-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: linear-gradient(180deg, #ddd3f7 0%, #cdc2f1 48%, #c0bdee 100%);
    }

    .final-section::before {
      content: "";
      position: absolute;
      left: -14%;
      right: -14%;
      top: -50px;
      bottom: 0;
      background: url("images/bg04a.png") center top / cover no-repeat;
      z-index: 0;
      filter: none;
      pointer-events: none;
    }

    .final-section > * {
      position: relative;
      z-index: 1;
    }

    .request-section {
      padding: 86px 0 74px;
      background: transparent;
    }

    .request-section::before {
      content: none;
    }

    .request-section::after {
      content: none;
      position: absolute;
      left: 52%;
      bottom: -80px;
      transform: translateX(-50%);
      font-size: min(28vw, 450px);
      letter-spacing: -0.03em;
      color: rgba(255, 255, 255, 0.2);
      font-weight: 700;
      pointer-events: none;
      z-index: 0;
      line-height: 0.8;
    }

    .request-title {
      margin: 0;
      font-size: clamp(42px, 4.4vw, 64px);
      font-weight: 100;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .request-grid {
      margin-top: 20px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px 40px;
      align-items: start;
    }

    .request-offer {
      margin: 0;
      font-size: 36px;
      font-weight: 400;
      line-height: 1.32;
      letter-spacing: -0.02em;
      max-width: 920px;
    }

    .request-side-list {
      margin: 0;
      list-style: none;
      padding: 0;
      display: grid;
      gap: 8px;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: -0.02em;
      font-weight: 400;
      min-width: 470px;
    }

    .request-side-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .request-side-list li::before {
      content: "";
      width: 12px;
      height: 12px;
      margin-top: 8px;
      background: url("images/Rectangle 4.svg") center/contain no-repeat;
      transform: rotate(90deg);
      flex: 0 0 12px;
    }

    .request-form {
      margin-top: 12px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 557px;
      gap: 18px 26px;
      align-items: start;
    }

    .floating-field {
      height: 67px;
      background: #fff;
      border-radius: var(--radius-md);
      position: relative;
      overflow: hidden;
    }

    .floating-field input {
      width: 100%;
      height: 100%;
      border: 0;
      outline: none;
      background: transparent;
      padding: 25px 28px 10px;
      color: var(--text);
      font-family: inherit;
      font-size: 16px;
      font-weight: 400;
    }

    .floating-field label {
      position: absolute;
      left: 28px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(36, 27, 53, 0.84);
      font-size: 16px;
      font-weight: 300;
      pointer-events: none;
      transition: transform 0.25s ease, top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
    }

    .floating-field input:focus + label,
    .floating-field input:not(:placeholder-shown) + label {
      top: 11px;
      transform: translateY(0);
      font-size: 12px;
      color: var(--accent);
    }

    .request-submit {
      min-height: 67px;
    }

    .request-legal {
      margin: 0;
      font-size: 13px;
      line-height: 1.3;
      color: var(--text);
      font-weight: 300;
      letter-spacing: -0.01em;
    }

    .request-legal a {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
    }

    .request-spam {
      margin: 0;
      display: flex;
      gap: 10px;
      font-size: 14px;
      line-height: 1.35;
      letter-spacing: -0.02em;
      align-items: flex-start;
      font-weight: 400;
      color: var(--text);
    }

    .request-spam img {
      width: 31px;
      height: 26px;
      margin-top: 1px;
      flex: 0 0 31px;
    }

    .site-footer {
      padding: 24px 0 44px;
      border-top: 0;
      background: transparent;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-areas:
        "left switch right"
        "meta meta meta";
      align-items: center;
      gap: 22px;
    }

    .footer-left {
      grid-area: left;
      display: flex;
      align-items: center;
      gap: 26px;
      min-width: 0;
    }

    .footer-left .logo img {
      width: 172px;
    }

    .footer-meta {
      grid-area: meta;
      margin-top: 6px;
      font-size: 11px;
      line-height: 1.3;
      letter-spacing: -0.03em;
      color: #000;
      max-width: none;
      width: 100%;
      text-align: left;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .footer-meta a {
      color: inherit;
      text-decoration: underline;
    }

    .footer-right {
      grid-area: right;
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-right .phone-link {
      font-size: 48px;
      font-weight: 300;
      line-height: 1;
    }

    .footer-right .icon-link {
      width: 46px;
      height: 46px;
    }

    .only-aso,
    .only-dev {
      transition: opacity 0.3s ease;
    }

    body.page-aso .only-dev {
      display: none !important;
    }

    body.page-dev .only-aso {
      display: none !important;
    }

    body.page-dev .pricing-section {
      display: none;
    }

    @media (min-width: 1280px) {
      .site {
        width: 1920px;
      }

      .container {
        width: 1920px;
        max-width: 1920px;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 2147483000;
        border-bottom: 0;
        background: rgba(245, 245, 247, 0.96);
        backdrop-filter: blur(10px);
      }

      .header-grid {
        height: 197px;
        display: block;
      }

      .site-footer .segmented {
        grid-area: switch;
      }

      .menu-links {
        position: absolute;
        left: 73px;
        top: 53px;
        width: 880px;
        height: 20px;
        display: block;
        z-index: 4;
      }

      .menu-links > * {
        position: absolute;
        top: 0;
      }

      .menu-links > *:nth-child(1) { left: 0; }
      .menu-links > *:nth-child(2) { left: 156px; }
      .menu-links > *:nth-child(3) { left: 312px; }
      .menu-links > *:nth-child(4) { left: 474px; }
      .menu-links > *:nth-child(5) { left: 672px; }

      body.page-dev .menu-links > *:nth-child(2) { left: 175px; }
      body.page-dev .menu-links > *:nth-child(3) { left: 331px; }
      body.page-dev .menu-links > *:nth-child(5) { left: 493px; }

      .header-grid > .logo {
        position: absolute;
        left: 895px;
        top: 35px;
      }

      .header-grid > .logo img {
        width: 130px;
      }

      .header-right {
        position: absolute;
        inset: 0;
        margin: 0;
        display: block;
        z-index: 3;
        pointer-events: none;
      }

      .header-right > * {
        pointer-events: auto;
      }

      .header-right > :nth-child(1) {
        position: absolute;
        left: 1270px;
        top: 50px;
        font-size: 20px;
      }

      .header-right > :nth-child(2) {
        position: absolute;
        left: 1464px;
        top: 46px;
        width: 33px;
        height: 33px;
      }

      .header-right > :nth-child(3) {
        position: absolute;
        left: 1507px;
        top: 46px;
        width: 33px;
        height: 33px;
      }

      .header-right > :nth-child(4) {
        position: absolute;
        left: 1570px;
        top: 36px;
        width: 280px;
        height: 53px;
        margin: 0;
        padding: 0;
      }

      .hero-section {
        padding: 0;
        min-height: 680px;
      }

      .hero-section::before {
        left: 50%;
        right: auto;
        top: 54px;
        width: 1920px;
        height: 1753px;
        transform: translateX(-50%);
        background: url("images/bg01a.png") center top / 100% 100% no-repeat;
        filter: none;
      }

      .hero-toggle-wrap {
        position: absolute;
        left: 670px;
        top: 0;
        margin: 0;
        z-index: 2147483640;
      }

      .hero-toggle-wrap .segmented {
        width: 580px !important;
      }

      .hero-grid {
        display: block;
        position: relative;
        height: 680px;
      }

      .hero-main {
        position: absolute;
      }

      .hero-title {
        margin: 0;
        font-size: 64px;
        font-weight: 100;
        line-height: 1.05;
        letter-spacing: -1.28px;
      }

      .hero-subtitle {
        margin: 18px 0 0;
        font-size: 36px;
        letter-spacing: -0.72px;
        font-weight: 400;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-main {
        left: 220px;
        top: 353px;
        width: 947px;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-subtitle {
        width: 880px;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-device {
        position: absolute;
        left: 969px;
        top: 230px;
        margin: 0;
        transform: rotate(9.49deg);
        filter: none;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-device img {
        width: 267.86px;
        max-width: none;
        transform: rotate(-9.49deg);
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-side {
        position: absolute;
        left: 1270px;
        top: 346px;
        width: 464px;
        padding: 0;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-list {
        font-size: 20px;
        line-height: 33px;
        gap: 0;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-list li::before {
        margin-top: 11px;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-union {
        margin: 18px 0 0 20px;
        width: 392.71px;
        max-width: none;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-actions {
        margin-top: 20px;
        width: 430px;
      }

      body.page-aso .hero-pane[data-page="aso"] .hero-actions .btn {
        min-height: 87px;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-main {
        left: 220px;
        top: 283px;
        width: 736px;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-subtitle {
        width: 703px;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-device {
        position: absolute;
        left: 904px;
        top: 166px;
        margin: 0;
        transform: rotate(9.49deg);
        filter: none;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-device img {
        width: 346.14px;
        max-width: none;
        transform: rotate(-9.49deg);
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-side {
        position: absolute;
        left: 1270px;
        top: 346px;
        width: 464px;
        padding: 0;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-list {
        font-size: 20px;
        line-height: 33px;
        gap: 0;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-actions {
        margin-top: 28px;
        width: 430px;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-actions .btn:first-child {
        min-height: 87px;
      }

      body.page-dev .hero-pane[data-page="dev"] .hero-actions .btn:last-child {
        min-height: 68px;
      }

      .overview-section {
        padding: 0;
      }

      .overview-pane {
        display: block;
        position: relative;
        height: 924px;
      }

      .overview-pane .overview-left {
        position: absolute;
      }

      .overview-pane .overview-right {
        position: absolute;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-left {
        left: 139px;
        top: 296px;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-card {
        width: 591px;
        height: 630px;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        background: transparent;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-card::before {
        display: none;
      }

      body.page-aso .overview-pane[data-page="aso"] .metric {
        display: none;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-case {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-case img {
        width: 591px;
        height: 630px;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-right {
        left: 743px;
        top: 422.55px;
        width: 938px;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-title {
        font-size: 48px;
        line-height: 1.2;
        letter-spacing: 0;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-description {
        margin-top: 22px;
        font-size: 32px;
        line-height: 1.28;
        width: 938px;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-actions {
        margin-top: 82px;
        margin-left: 376px;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-actions .btn {
        width: 580px;
        min-height: 110px;
      }

      body.page-aso .overview-pane[data-page="aso"] .plus-hint {
        margin-top: 22px;
        margin-left: 436px;
      }

      body.page-dev .overview-pane[data-page="dev"] .overview-left {
        left: 171px;
        top: 288px;
      }

      body.page-dev .overview-pane[data-page="dev"] .examples-image {
        width: 680px;
        border-radius: 0;
        box-shadow: none;
      }

      body.page-dev .overview-pane[data-page="dev"] .overview-right {
        left: 972px;
        top: 422.55px;
        width: 938px;
      }

      body.page-dev .overview-pane[data-page="dev"] .overview-title {
        font-size: 48px;
        line-height: 1.27;
        letter-spacing: -0.02em;
      }

      body.page-dev .overview-pane[data-page="dev"] .apps-list {
        margin-top: 53px;
        margin-left: 25px;
        width: 852px;
        grid-template-columns: 429px 311px;
        gap: 41px 25px;
        font-size: 32px;
        line-height: 1.28;
      }

      body.page-dev .overview-pane[data-page="dev"] .overview-actions {
        margin-top: 51px;
        margin-left: -2px;
      }

      body.page-dev .overview-pane[data-page="dev"] .overview-actions .btn {
        width: 355px;
        min-height: 90px;
      }

      .process-section {
        padding: 0;
      }

      .process-shell {
        height: 821px;
        margin: 0;
      }

      .process-title {
        position: absolute;
        left: 220px;
        top: 0;
      }

      .process-wave {
        position: absolute;
        left: 0;
        top: 343px;
        width: 1920px;
        height: 279px;
      }

      .process-wave img {
        left: 0;
        top: 0;
        transform: none;
        width: 1874px;
      }

      .process-icon {
        top: 104px;
        transform: none;
        display: block;
        width: 69px;
        height: 69px;
        z-index: 3;
      }

      .process-icon img {
        display: block;
        width: 100%;
        height: 100%;
      }

      body.page-aso .page-pane[data-page="aso"] .process-wave .process-icon.icon-1 { left: 185px !important; }
      body.page-aso .page-pane[data-page="aso"] .process-wave .process-icon.icon-2 { left: 464px !important; }
      body.page-aso .page-pane[data-page="aso"] .process-wave .process-icon.icon-3 { left: 743px !important; }
      body.page-aso .page-pane[data-page="aso"] .process-wave .process-icon.icon-4 { left: 1022px !important; }
      body.page-aso .page-pane[data-page="aso"] .process-wave .process-icon.icon-5 { left: 1301px !important; }

      body.page-dev .page-pane[data-page="dev"] .process-wave .process-icon.icon-1 { left: 185px !important; }
      body.page-dev .page-pane[data-page="dev"] .process-wave .process-icon.icon-2 { left: 464px !important; }
      body.page-dev .page-pane[data-page="dev"] .process-wave .process-icon.icon-3 { left: 743px !important; }
      body.page-dev .page-pane[data-page="dev"] .process-wave .process-icon.icon-4 { left: 1022px !important; }
      body.page-dev .page-pane[data-page="dev"] .process-wave .process-icon.icon-5 { left: 1301px !important; }
      body.page-dev .page-pane[data-page="dev"] .process-wave .process-icon.icon-6 { left: 1567px !important; }

      .process-steps {
        position: relative;
        display: block;
        height: 821px;
        margin: 0;
      }

      .process-step {
        position: absolute;
        grid-template-rows: minmax(72px, auto) auto;
        row-gap: 12px;
      }

      body.page-aso .process-steps.cols-5 .process-step:nth-child(1) { left: 220px; top: 589px; width: 427px; }
      body.page-aso .process-steps.cols-5 .process-step:nth-child(2) { left: 521px; top: 150px; width: 424px; }
      body.page-aso .process-steps.cols-5 .process-step:nth-child(3) { left: 747px; top: 591px; width: 348px; }
      body.page-aso .process-steps.cols-5 .process-step:nth-child(4) { left: 1022px; top: 150px; width: 433px; }
      body.page-aso .process-steps.cols-5 .process-step:nth-child(5) { left: 1301px; top: 591px; width: 442px; }

      body.page-dev .process-steps.cols-6 .process-step:nth-child(1) { left: 220px; top: 589px; width: 427px; }
      body.page-dev .process-steps.cols-6 .process-step:nth-child(2) { left: 367px; top: 130px; width: 424px; }
      body.page-dev .process-steps.cols-6 .process-step:nth-child(3) { left: 747px; top: 591px; width: 406px; }
      body.page-dev .process-steps.cols-6 .process-step:nth-child(4) { left: 812px; top: 130px; width: 433px; }
      body.page-dev .process-steps.cols-6 .process-step:nth-child(5) { left: 1266px; top: 130px; width: 433px; }
      body.page-dev .process-steps.cols-6 .process-step:nth-child(6) { left: 1301px; top: 591px; width: 544px; }

      .process-step .num {
        font-size: 64px;
      }

      .process-step .step-title {
        font-size: 24px;
        max-width: none;
      }

      .process-step p {
        margin-top: 0;
        font-size: 20px;
      }

      .discount-section {
        padding: 0;
        height: 838px;
        overflow: visible;
      }

      .discount-section::before {
        left: 50%;
        right: auto;
        top: -101px;
        width: 1920px;
        height: 1217px;
        transform: translateX(-50%);
        background: url("images/bg02a.png") center top / 1920px 1217px no-repeat;
        filter: none;
      }

      .discount-section .container,
      .discount-section [data-page-content],
      .discount-section .page-pane {
        height: 100%;
      }

      .discount-grid {
        position: relative;
        display: block;
        height: 100%;
        margin: 0;
      }

      .discount-grid > div:first-child {
        position: absolute;
        left: 220px;
        top: 182px;
        width: 1257px;
        height: 384px;
      }

      .discount-label {
        position: absolute;
        left: 0;
        top: 0;
        width: 564px;
        margin: 0;
        font-size: 48px;
        font-weight: 300;
        line-height: 1.27;
      }

      .discount-headline {
        position: absolute;
        left: 174px;
        top: 84px;
        margin: 0;
        width: 1257px;
        white-space: nowrap;
        font-size: 64px;
        line-height: 1.28;
        letter-spacing: 0;
      }

      body.page-aso .discount-headline {
        width: 1040px;
      }

      body.page-dev .discount-headline {
        width: 1257px;
      }

      .discount-headline .highlight-dark {
        margin-right: 8px;
        padding: 8px 18px 10px;
      }

      .discount-note {
        position: absolute;
        left: 0;
        top: 280px;
        margin: 0;
        width: 470px;
        max-width: none;
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: -0.4px;
      }

      .discount-visual {
        position: absolute;
        left: 782px;
        top: 374px;
        width: 931px;
        height: 499px;
        padding-bottom: 0;
      }

      .timer-card {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        min-height: 499px;
        padding: 0;
      }

      .timer-phone-frame {
        object-fit: fill;
      }

      body.page-dev .discount-section .page-pane[data-page="dev"] .discount-visual {
        left: 784px;
      }

      .timer-banner {
        position: absolute;
        left: 188px;
        top: 70px;
        width: 580px;
        height: 52px;
        margin: 0;
        border-radius: 31px;
        font-size: 20px;
      }

      .timer-values {
        position: absolute;
        left: 188px;
        top: 129px;
        width: 580px;
        margin: 0;
        gap: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .timer-value {
        font-size: 128px;
        line-height: 1;
        letter-spacing: 0;
        font-variant-numeric: tabular-nums;
      }

      .timer-unit {
        margin-top: 0;
        font-size: 20px;
      }

      .timer-actions {
        position: absolute;
        left: 188px;
        top: 354px;
        margin: 0;
        width: 580px;
        transform: none;
      }

      .timer-actions .btn {
        width: 580px;
        min-height: 110px;
      }

      .cases-section {
        padding: 0;
      }

      body.page-aso .cases-section,
      body.page-dev .cases-section {
        height: auto;
      }

      .cases-section .container,
      .cases-section [data-page-content],
      .cases-section .page-pane {
        height: auto;
      }

      .cases-section .page-pane {
        position: relative;
        padding: 0 220px;
      }

      .cases-title {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        font-size: 64px;
        line-height: 1.28;
        letter-spacing: -1.28px;
      }

      .cases-grid {
        position: relative;
        left: auto;
        top: auto;
        margin: 46px 0 0;
      }

      .cases-grid.cols-3 {
        grid-template-columns: repeat(3, 428px);
        column-gap: 98px;
        row-gap: 0;
      }

      .cases-grid.cols-6 {
        grid-template-columns: repeat(3, 428px);
        column-gap: 98px;
        row-gap: 123px;
      }

      .case-card {
        min-height: 0;
        height: auto;
      }

      body.page-aso .cases-grid.cols-3 .case-card {
        min-height: 0;
      }

      .case-head {
        display: block;
        position: relative;
        min-height: 146px;
      }

      .case-thumb {
        position: absolute;
        left: 0;
        top: 0;
        width: 146px;
        height: 146px;
        border-radius: 33px;
      }

      .case-title {
        position: absolute;
        left: 187px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        width: 237px;
        max-width: 237px;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.48px;
      }

      .case-summary {
        margin: 30px 0 0;
        width: 432px;
        font-size: 20px;
        line-height: 1.32;
      }

      body.page-aso .cases-grid.cols-3 .case-summary {
        min-height: 132px;
      }

      .case-toggle {
        margin: 20px 0 0 20px;
      }

      body.page-dev .case-toggle {
        margin-left: 0;
      }

      .case-extra {
        margin-left: 46px;
      }

      .case-extra p {
        width: 382px;
      }

      .pricing-section {
        padding: 0;
        height: 581px;
        overflow: visible;
      }

      .pricing-section::before {
        content: "";
        position: absolute;
        left: 50%;
        right: auto;
        top: -122px;
        width: 1920px;
        height: 877px;
        transform: translateX(-50%);
        background: url("images/bg03a.png") center top / 1920px 877px no-repeat;
        filter: none;
        z-index: 0;
        pointer-events: none;
      }

      body.page-dev .pricing-section {
        display: none;
      }

      .pricing-section .container,
      .pricing-section [data-page-content],
      .pricing-section .page-pane {
        height: 100%;
      }

      .pricing-section .page-pane {
        position: relative;
      }

      .pricing-pane {
        height: 100%;
        border-radius: 0;
        padding: 0;
        background: transparent;
        overflow: visible;
      }

      .pricing-pane::before {
        content: none;
        position: absolute;
        left: -380px;
        right: -380px;
        top: -160px;
        width: auto;
        height: 840px;
        transform: none;
        background: none;
        filter: none;
        z-index: 0;
        pointer-events: none;
      }

      .pricing-pane::after {
        content: none;
        position: absolute;
        left: -280px;
        right: -280px;
        top: -40px;
        width: auto;
        height: 640px;
        transform: none;
        background: none;
        filter: none;
        z-index: 0;
        pointer-events: none;
      }

      .pricing-title {
        position: absolute;
        left: 220px;
        top: 93px;
        margin: 0;
        font-size: 64px;
        line-height: 1.28;
        letter-spacing: -1.28px;
      }

      .pricing-grid {
        position: absolute;
        left: 220px;
        top: 253px;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 429px);
        column-gap: 96px;
        align-items: start;
      }

      .pricing-card {
        position: relative;
        width: 429px;
        height: 228px;
        min-height: 228px;
        display: block;
      }

      .pricing-card .icon {
        position: absolute;
        margin: 0;
      }

      .pricing-card:nth-child(1) .icon {
        left: 2px;
        top: 0;
        width: 73px;
        height: 73px;
      }

      .pricing-card:nth-child(2) .icon {
        left: 2px;
        top: 4px;
        width: 75px;
        height: 60px;
      }

      .pricing-card:nth-child(3) .icon {
        left: 0;
        top: 0;
        width: 67px;
        height: 65px;
      }

      .pricing-card .icon {
        display: block;
      }

      .pricing-card .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: none;
      }

      .pricing-card:nth-child(1) .icon img {
        transform: rotate(-90deg);
      }

      .pricing-card > div:last-child {
        position: absolute;
        left: 118px;
        top: 0;
        width: 311px;
        height: 228px;
      }

      .pricing-name {
        position: absolute;
        left: 0;
        top: 0;
        width: 311px;
        margin: 0;
      }

      .pricing-price {
        position: absolute;
        left: 0;
        top: 31px;
        margin: 0;
        font-size: 64px;
      }

      .pricing-old {
        position: absolute;
        left: 0;
        top: 106px;
        margin: 0;
      }

      .pricing-card:nth-child(2) .pricing-price,
      .pricing-card:nth-child(3) .pricing-price {
        font-size: 40px !important;
        top: 64px;
        margin-top: 0 !important;
      }

      .pricing-card .btn {
        position: absolute;
        left: 0;
        top: 175px;
        width: 311px;
        min-height: 53px;
        margin: 0;
      }

      .faq-section {
        padding: 0;
        height: var(--faq-desktop-height, 802px);
        overflow: visible;
        transition: height 0.52s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: height;
      }

      .faq-section .container,
      .faq-section [data-page-content],
      .faq-section .page-pane {
        height: 100%;
      }

      .faq-section .page-pane {
        position: relative;
      }

      .faq-title {
        position: absolute;
        left: 220px;
        top: 100px;
        margin: 0;
        font-size: 64px;
        line-height: 1.28;
        letter-spacing: -1.28px;
      }

      .faq-section .accordion {
        position: absolute;
        left: 220px;
        top: 232px;
        width: 1479px;
        margin: 0;
      }

      .faq-item {
        border-bottom: 0;
      }

      .faq-item + .faq-item {
        margin-top: 39px;
      }

      .faq-trigger {
        min-height: 35px;
        padding: 0;
        grid-template-columns: 85px 1fr 35px;
        gap: 0;
      }

      .faq-num {
        color: #a5a8eb;
        font-size: 28px;
        font-weight: 200;
        line-height: 31px;
      }

      .faq-question {
        font-size: 24px;
        font-weight: 500;
        line-height: 31px;
        letter-spacing: -0.48px;
      }

      .faq-icon {
        width: 35px;
        height: 35px;
      }

      .faq-body {
        margin: 39px 0 18px 85px;
        max-width: 1394px;
      }

      .faq-item.open .faq-body {
        padding-bottom: 0;
      }

      .faq-body p {
        font-size: 20px;
        line-height: 31px;
      }

      .final-section {
        padding-top: 110px;
        height: 994px;
      }

      .final-section::before {
        left: 50%;
        right: auto;
        top: 0;
        bottom: auto;
        width: 1920px;
        height: 1033px;
        transform: translateX(-50%);
        background: url("images/bg04a.png") center top / 100% 100% no-repeat;
      }

      .request-section {
        padding: 0;
        height: 606px;
        overflow: hidden;
      }

      .request-section::before {
        content: none;
      }

      .request-section .container,
      .request-section [data-page-content],
      .request-section .page-pane {
        height: 100%;
      }

      .request-section .page-pane {
        position: relative;
      }

      .request-title {
        position: absolute;
        left: 220px;
        top: 91px;
        margin: 0;
        font-size: 64px;
        line-height: 1.28;
        letter-spacing: -1.28px;
      }

      .request-grid {
        position: absolute;
        left: 220px;
        top: 206px;
        width: 1480px;
        margin: 0;
        display: block;
      }

      .request-offer {
        margin: 0;
        font-size: 36px;
        line-height: 50px;
        letter-spacing: -0.72px;
      }

      body.page-aso .request-offer {
        width: 901px;
      }

      body.page-dev .request-offer {
        width: 880px;
      }

      body.page-aso .request-side-list {
        position: absolute;
        left: 948px;
        top: 10px;
        width: 532px;
        margin: 0;
        display: block;
        font-size: 20px;
        line-height: 30px;
      }

      body.page-dev .request-side-list {
        position: absolute;
        left: 998px;
        top: 10px;
        width: 514px;
        margin: 0;
        font-size: 20px;
        line-height: 30px;
      }

      .request-form {
        position: absolute;
        left: 220px;
        top: 392px;
        width: 1480px;
        margin: 0;
        grid-template-columns: 880px 557px;
        column-gap: 43px;
        row-gap: 20px;
      }

      .request-submit {
        min-height: 67px;
      }

      .request-legal {
        margin: 0;
        max-width: 880px;
        text-align: center;
      }

      .request-spam {
        margin: 0;
        width: 469px;
      }

      .site-footer {
        padding: 0;
        height: 278px;
        border-top: 0;
        background: transparent;
      }

      .footer-grid {
        display: block;
        position: relative;
        height: 278px;
      }

      .footer-left {
        position: absolute;
        left: 70px;
        top: 99px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
      }

      .footer-left .logo img {
        width: 172px;
      }

      .footer-meta {
        position: absolute;
        left: 295px;
        top: 115px;
        max-width: 356px;
        width: 356px;
        margin-top: 0;
        font-size: 11px;
        line-height: 16px;
        letter-spacing: -0.33px;
        color: #000;
        text-align: left;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
      }

      .site-footer .segmented {
        position: absolute;
        left: 672px;
        top: 101px;
        width: 428px !important;
      }

      .footer-right {
        position: absolute;
        left: 1258px;
        top: 109px;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .footer-right .phone-link {
        font-size: 48px;
      }
    }

    @media (min-width: 1280px) and (max-width: 1919px) {
      html,
      body {
        overflow-x: hidden;
      }

      body.desktop-scaled {
        position: relative;
        transition: min-height 0.52s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: min-height;
      }

      body.desktop-scaled .site {
        position: absolute;
        left: 0;
        top: 0;
        width: 1920px;
        transform-origin: top left;
        transform: scale(var(--desktop-scale, 1));
      }
    }

    @media (max-width: 1279px) {
      .header-grid,
      .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        justify-items: center;
      }

      .menu-links,
      .header-right,
      .footer-left,
      .footer-right {
        justify-content: center;
        margin: 0;
      }

      .footer-right .phone-link {
        font-size: 36px;
      }
    }

    @media (max-width: 1279px) {
      .hero-grid,
      .overview-pane,
      .discount-grid,
      .request-grid,
      .request-form {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-device {
        max-width: 320px;
      }

      .hero-side,
      .request-side-list {
        min-width: 0;
      }

      .hero-actions,
      .request-submit {
        width: 100%;
      }

      .process-steps.cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .process-steps.cols-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .process-step.top {
        margin-bottom: 0;
      }

      .process-wave {
        height: 190px;
      }

      .process-icon {
        top: 74px;
      }

      .cases-grid.cols-3,
      .cases-grid.cols-6,
      .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .apps-list {
        grid-template-columns: 1fr;
        font-size: 28px;
      }

      .timer-actions .btn {
        min-height: 88px;
      }

      .footer-right .phone-link {
        font-size: 28px;
      }
    }

    @media (max-width: 920px) {
      .container {
        width: calc(100% - 32px);
      }

      section {
        scroll-margin-top: 82px;
      }

      .site-header {
        position: sticky;
        top: 0;
      }

      .header-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
          "logo contacts burger"
          "menu menu menu";
        gap: 8px 10px;
        padding: 12px 0;
        align-items: center;
      }

      .logo {
        justify-content: flex-start;
        grid-area: logo;
      }

      .logo img {
        width: 92px;
      }

      .mobile-burger {
        display: inline-flex;
        grid-area: burger;
        justify-self: end;
        width: 40px;
        height: 40px;
        padding: 4px;
      }

      .menu-links {
        grid-area: menu;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border: 1px solid rgba(165, 168, 235, 0.7);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, padding 0.28s ease;
        padding: 0;
        margin-top: 4px;
      }

      body.mobile-menu-open .menu-links {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        padding: 6px 0;
      }

      .menu-link,
      .menu-links a {
        display: block;
        width: 100%;
        padding: 11px 14px;
        font-size: 16px;
        line-height: 1.25;
      }

      .header-right {
        grid-area: contacts;
        width: auto;
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
        min-width: 0;
        justify-self: end;
      }

      .phone-link {
        font-size: clamp(15px, 4.8vw, 18px);
        line-height: 1;
      }

      .header-right .phone-link {
        display: none;
      }

      .header-right .icon-link {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
      }

      .menu-phone-link {
        display: block;
        margin-top: 4px;
        padding-top: 14px;
        border-top: 1px solid rgba(36, 27, 53, 0.08);
        font-size: 18px;
        font-weight: 500;
      }

      .header-cta {
        display: none;
      }

      @media (max-width: 390px) {
        .header-grid {
          gap: 6px;
          padding: 10px 0;
        }

        .logo img {
          width: 80px;
        }

        .phone-link {
          font-size: 14px;
        }

        .header-right {
          gap: 6px;
        }

        .header-right .icon-link {
          width: 30px;
          height: 30px;
          flex-basis: 30px;
        }

        .mobile-burger {
          width: 36px;
          height: 36px;
          padding: 3px;
        }

        .hero-section::before {
          top: -150px !important;
        }
      }

      @media (max-width: 350px) {
        .hero-section::before {
          top: -168px !important;
        }
      }

      .hero-section {
        padding: 18px 0 54px;
        background: #b9b7ee;
        overflow: hidden;
      }

      .hero-section::before {
        left: 50%;
        right: auto;
        top: -136px;
        width: 2060px;
        height: 1881px;
        transform: translateX(-50%);
        background:
          url("images/bg01a.png") center top / 2060px 1881px no-repeat,
          linear-gradient(180deg, #dcc8f8 0%, #b9b7ee 40%, #adb0ef 100%);
      }

      .hero-toggle-wrap {
        --stuck-width: min(390px, calc(100vw - 14px));
        margin-bottom: 18px;
        min-height: 66px;
      }

      .hero-toggle-wrap.floating-mounted {
        width: min(390px, calc(100vw - 14px)) !important;
      }

      .segmented {
        --thumb-shift: 6px;
        width: 100% !important;
        padding: 4px;
        gap: 6px;
      }

      .segmented::before {
        left: 4px;
        top: 4px;
        bottom: 4px;
        width: calc(50% - 7px);
      }

      .segmented button {
        height: 58px;
        font-size: 18px;
      }

      .hero-toggle-wrap.is-stuck .segmented {
        --thumb-shift: 4px;
        padding: 3px;
        gap: 4px;
      }

      .hero-toggle-wrap.is-stuck .segmented::before {
        left: 3px;
        top: 3px;
        bottom: 3px;
        width: calc(50% - 5px);
      }

      .hero-toggle-wrap.is-stuck .segmented button {
        height: 48px;
        font-size: 16px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .hero-title {
        font-size: clamp(36px, 11vw, 46px);
        line-height: 1.03;
      }

      .hero-subtitle {
        margin-top: 12px;
        font-size: clamp(24px, 6.8vw, 30px);
      }

      .hero-device {
        width: min(290px, 72vw);
        transform: none;
      }

      .hero-device img,
      .hero-device.hero-aso img {
        width: 100%;
        max-width: none;
      }

      .hero-side {
        min-width: 0;
        padding: 0;
      }

      .hero-list {
        font-size: 17px;
        line-height: 1.34;
        gap: 8px;
      }

      .hero-list li::before {
        margin-top: 6px;
      }

      .hero-actions {
        width: 100%;
        margin-top: 14px;
      }

      .btn {
        min-height: 60px;
        padding: 0 18px;
        font-size: 17px;
      }

      .overview-section {
        padding: 52px 0 24px;
      }

      .overview-pane {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .stats-card,
      .examples-image {
        width: 100%;
        min-height: 0;
        border-radius: 22px;
      }

      body.page-dev .overview-pane[data-page="dev"] .examples-image {
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: visible;
      }

      body.page-dev .overview-pane[data-page="dev"] .examples-image img {
        border-radius: 0;
      }

      .overview-title {
        font-size: clamp(28px, 8.8vw, 34px);
        line-height: 1.1;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-title {
        font-size: clamp(22px, 6.4vw, 26px);
        line-height: 1.12;
        letter-spacing: -0.01em;
        white-space: nowrap;
      }

      body.page-aso .overview-pane[data-page="aso"] {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-right {
        order: 1;
      }

      body.page-aso .overview-pane[data-page="aso"] .overview-left {
        order: 2;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-card {
        padding: 0;
        background: transparent;
        box-shadow: none;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-card::before,
      body.page-aso .overview-pane[data-page="aso"] .metric {
        display: none;
      }

      body.page-aso .overview-pane[data-page="aso"] .stats-case {
        margin-top: 0;
        border-radius: 22px;
      }

      body.page-dev .overview-pane[data-page="dev"] .overview-title {
        font-size: clamp(18px, 5.6vw, 24px);
        line-height: 1.1;
        letter-spacing: -0.01em;
        white-space: nowrap;
      }

      .overview-description {
        margin-top: 12px;
        font-size: 18px;
        line-height: 1.38;
        font-weight: 300;
        letter-spacing: -0.01em;
        color: rgba(36, 27, 53, 0.86);
      }

      .apps-list {
        margin-top: 18px;
        grid-template-columns: 1fr;
        gap: 14px;
        font-size: 24px;
      }

      .overview-actions {
        margin-top: 18px;
      }

      .overview-actions .btn {
        width: 100%;
        min-height: 70px;
      }

      .plus-hint {
        margin-top: 14px;
        font-size: 14px;
      }

      .process-section {
        padding: 24px 0 58px;
      }

      .process-title {
        font-size: clamp(36px, 11vw, 46px);
      }

      body.page-dev .page-pane[data-page="dev"] .process-title {
        font-size: clamp(22px, 6.6vw, 27px);
        line-height: 1.12;
        letter-spacing: -0.01em;
        white-space: nowrap;
      }

      .process-shell {
        margin-top: 14px;
      }

      .process-wave {
        display: none;
      }

      .process-steps,
      .process-steps.cols-5,
      .process-steps.cols-6 {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 8px;
        border-top: 1px solid rgba(36, 27, 53, 0.14);
      }

      .process-step {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        margin: 0 !important;
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 0;
        align-items: center;
        padding: 16px 0;
        border-bottom: 1px solid rgba(36, 27, 53, 0.14);
      }

      .process-step .num {
        font-size: 38px;
        line-height: 1;
        margin: 0;
        width: auto;
        min-width: 0;
        text-align: left;
        color: rgba(157, 164, 235, 0.98);
        justify-content: flex-start;
      }

      .process-step .num::before {
        content: "0";
      }

      .process-step .step-title {
        display: block;
        min-height: 0;
        font-size: 18px;
        line-height: 1.24;
        margin: 0;
        max-width: none;
        align-self: center;
        font-weight: 600;
        color: #111;
      }

      .process-step p {
        display: none;
      }

      .discount-section {
        padding: 44px 0 52px;
      }

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

      .discount-label {
        font-size: 28px;
        line-height: 1.14;
      }

      .discount-headline {
        margin-top: 10px;
        font-size: clamp(30px, 9.4vw, 38px);
        line-height: 1.06;
        letter-spacing: -0.02em;
      }

      .discount-headline .highlight-dark {
        padding: 4px 8px 6px;
        margin-right: 4px;
      }

      .discount-note {
        margin-top: 12px;
        max-width: none;
        font-size: 16px;
        line-height: 1.3;
      }

      .discount-visual {
        padding-bottom: 24px;
      }

      .timer-card {
        padding: 14px 24px 12px;
        min-height: 0;
      }

      .timer-banner {
        position: relative;
        left: auto;
        top: auto;
        width: calc(100% - 44px);
        max-width: calc(100% - 44px);
        min-height: 0;
        height: auto;
        margin: 0 auto;
        padding: 10px 12px;
        font-size: 11px;
        line-height: 1.2;
        border-radius: 24px;
        border-width: 2px;
      }

      .timer-values {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-top: 10px;
        gap: 4px;
      }

      .timer-value {
        font-size: 52px;
        line-height: 0.95;
      }

      .timer-unit {
        margin-top: 2px;
        font-size: 12px;
      }

      .timer-actions {
        width: calc(100% - 24px);
      }

      .timer-actions .btn {
        min-height: 56px;
        font-size: 14px;
        padding: 0 14px;
      }

      .cases-section {
        padding: 52px 0 24px;
      }

      .cases-title {
        font-size: clamp(36px, 11vw, 46px);
      }

      .cases-grid {
        margin-top: 20px;
        gap: 24px;
      }

      .cases-grid.cols-3,
      .cases-grid.cols-6 {
        grid-template-columns: 1fr;
        row-gap: 24px;
      }

      .case-card {
        min-height: 0;
      }

      .case-head {
        grid-template-columns: 100px 1fr;
        gap: 12px;
      }

      .case-thumb {
        width: 100px;
        height: 100px;
        border-radius: 22px;
      }

      .case-title {
        font-size: 21px;
        max-width: none;
      }

      .case-summary {
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.32;
      }

      .case-toggle {
        margin-top: 12px;
        font-size: 15px;
      }

      .case-extra p {
        font-size: 15px;
        line-height: 1.34;
      }

      .pricing-section {
        padding: 56px 0 60px;
      }

      .pricing-pane {
        padding: 36px 18px 28px;
        border-radius: 30px;
        background: #b3b2eb;
        overflow: hidden;
      }

      .pricing-pane::before {
        left: 50%;
        right: auto;
        top: -170px;
        width: 2040px;
        height: 932px;
        transform: translateX(-50%);
        background:
          url("images/bg03a.png") center top / 2040px 932px no-repeat,
          linear-gradient(180deg, #ccbdf6 0%, #b3b2eb 40%, #a7adef 100%);
        filter: none;
      }

      @media (max-width: 390px) {
        .pricing-pane::before {
          top: -184px;
        }
      }

      @media (max-width: 350px) {
        .pricing-pane::before {
          top: -198px;
        }
      }

      .pricing-title {
        font-size: clamp(36px, 11vw, 46px);
      }

      .pricing-grid {
        margin-top: 18px;
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .pricing-card {
        grid-template-columns: 64px minmax(0, 1fr);
        grid-template-areas:
          "icon name"
          "icon price"
          "icon old"
          "btn btn";
        column-gap: 12px;
        row-gap: 4px;
        align-items: start;
        min-height: 0;
      }

      .pricing-card .icon {
        grid-area: icon;
        width: 56px;
        height: 56px;
        margin-top: 2px;
      }

      .pricing-card .icon img {
        width: 56px;
        height: 56px;
      }

      .pricing-card > div:last-child {
        display: contents;
      }

      .pricing-name {
        grid-area: name;
        font-size: 22px;
      }

      .pricing-price {
        grid-area: price;
        font-size: 34px;
        line-height: 1;
      }

      .pricing-card:nth-child(2) .pricing-price,
      .pricing-card:nth-child(3) .pricing-price {
        font-size: 30px;
      }

      .pricing-old {
        grid-area: old;
        font-size: 17px;
      }

      .pricing-card .btn {
        grid-area: btn;
        width: 100%;
        min-height: 52px;
        font-size: 15px;
        margin-top: 10px;
      }

      .faq-section {
        --faq-num-col-mobile: 34px;
        --faq-gap-mobile: 10px;
        padding: 28px 0 56px;
      }

      .faq-title {
        font-size: clamp(36px, 11vw, 46px);
      }

      .accordion {
        margin-top: 18px;
      }

      .faq-trigger {
        grid-template-columns: var(--faq-num-col-mobile) 1fr 28px;
        gap: var(--faq-gap-mobile);
        padding: 14px 0;
      }

      .faq-num {
        font-size: 20px;
      }

      .faq-question {
        font-size: 18px;
        line-height: 1.28;
      }

      .faq-icon {
        width: 28px;
        height: 28px;
      }

      .faq-icon::before {
        top: 13px;
        width: 28px;
      }

      .faq-icon::after {
        height: 28px;
      }

      .faq-body {
        margin-left: calc(var(--faq-num-col-mobile) + var(--faq-gap-mobile));
        margin-right: 0;
      }

      .faq-body p {
        font-size: 16px;
        line-height: 1.42;
      }

      .final-section {
        background: #b9b7ee;
      }

      .final-section::before {
        left: 50%;
        right: auto;
        top: -112px;
        bottom: auto;
        width: 2060px;
        height: 1110px;
        transform: translateX(-50%);
        background:
          url("images/bg04a.png") center top / 2060px 1110px no-repeat,
          linear-gradient(180deg, #d9caf7 0%, #b9b7ee 48%, #afb1ed 100%);
      }

      .request-section {
        padding: 56px 0 24px;
        background: transparent;
        overflow: hidden;
      }

      .request-section::before {
        content: none;
      }

      @media (max-width: 390px) {
        .final-section::before {
          top: -126px;
        }
      }

      @media (max-width: 350px) {
        .final-section::before {
          top: -140px;
        }
      }

      .request-section::after {
        font-size: min(52vw, 230px);
        bottom: -38px;
      }

      .request-title {
        font-size: clamp(36px, 11vw, 46px);
      }

      .request-grid {
        margin-top: 14px;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .request-offer {
        font-size: 24px;
        line-height: 1.28;
      }

      .request-side-list {
        min-width: 0;
        font-size: 17px;
        line-height: 1.35;
      }

      .request-form {
        margin-top: 14px;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .floating-field {
        height: 58px;
        border-radius: 14px;
      }

      .floating-field input {
        padding: 20px 16px 8px;
        font-size: 15px;
      }

      .floating-field label {
        left: 16px;
        font-size: 15px;
      }

      .floating-field input:focus + label,
      .floating-field input:not(:placeholder-shown) + label {
        top: 8px;
        font-size: 11px;
      }

      .request-submit {
        min-height: 58px;
      }

      .request-legal {
        font-size: 11px;
      }

      .request-spam {
        font-size: 12px;
        line-height: 1.3;
      }

      .request-spam img {
        width: 24px;
        height: 20px;
      }

      .site-footer {
        padding: 10px 0 18px;
        background: transparent;
        border-top: 0;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
          "switch"
          "logo"
          "contacts"
          "meta";
        align-items: center;
        justify-items: stretch;
        gap: 14px;
      }

      .footer-left {
        display: contents;
      }

      .footer-right {
        grid-area: contacts;
        margin: 0;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 10px;
        min-height: 52px;
        position: relative;
        z-index: 1;
      }

      .footer-left .logo {
        grid-area: logo;
        justify-self: center;
        align-self: center;
        z-index: 2;
      }

      .footer-left .logo img {
        width: 96px;
      }

      .footer-meta {
        grid-area: meta;
        font-size: 10px;
        max-width: none;
        text-align: left;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      .site-footer .segmented {
        grid-area: switch;
        width: 100% !important;
      }

      .site-footer .segmented button {
        height: 48px;
        font-size: 16px;
      }

      .footer-right .phone-link {
        font-size: clamp(15px, 5.3vw, 20px);
        line-height: 1;
      }

      .footer-right .icon-link {
        width: 36px;
        height: 36px;
      }

      .footer-right .phone-link + .icon-link {
        margin-left: 0;
        justify-self: end;
      }

      .footer-right .icon-link:last-child {
        justify-self: end;
      }
    }
