:root {
  --milk: #FAFBFD;
  --ice: #E6F2FD;
  --mint: #E6FBF4;
  --turquoise: #CFF6F3;
  --pearl: #EEF2F6;
  --graphite: #1E232B;
  --ink: #14213A;
  --muted: #71809A;
  --line: #DBE5F1;
  --aqua: #2FE7EA;
  --blue: #3487F5;
  --iris: #6A6FFF;
  --shadow: 0 22px 60px rgba(30, 35, 43, .10);
  --soft-shadow: 0 12px 30px rgba(30, 35, 43, .07);
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background: radial-gradient(circle at 12% 0%, rgba(207, 246, 243, .58), transparent 34%), radial-gradient(circle at 88% 12%, rgba(230, 242, 253, .76), transparent 32%), linear-gradient(180deg, #FBFDFF 0%, #F7FBFE 42%, #F4F8FC 100%);
  background-attachment: fixed;
}

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

button {
  font: inherit;
}

input {
  font: inherit;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 229, 241, .78);
  background: rgba(250, 251, 253, .78);
  backdrop-filter: blur(20px);
}

.header__inner {
  width: min(1180px, calc(100% - 44px));
  height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 220px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

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

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #5E6E88;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(230, 242, 253, .92);
}

.nav .nav__button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 10px 28px rgba(47, 231, 234, .22);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .84);
  cursor: pointer;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--ink);
}

.hero-screen {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header) + 84px) 0 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/prizma-first-screen.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(250, 251, 253, .98) 0%,
      rgba(250, 251, 253, .90) 25%,
      rgba(250, 251, 253, .54) 48%,
      rgba(250, 251, 253, .15) 72%,
      rgba(250, 251, 253, .02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(250, 251, 253, .32) 0%,
      rgba(250, 251, 253, .00) 30%,
      rgba(250, 251, 253, .40) 100%
    );
  pointer-events: none;
}

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

.hero-text {
  width: min(570px, 100%);
}

.hero-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(46px, 5.05vw, 66px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 400;
}

.hero-text p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #667792;
  font-size: 20px;
  line-height: 1.55;
}

.screen {
  min-height: auto;
  padding: 74px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(360px, 1.07fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

h1 {
  margin-top: 0;
}

h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.05vw, 56px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 400;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p {
  margin-top: 0;
}

.content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 650px;
  margin-bottom: 24px;
}

.trust-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}

.login p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}

.faq-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0 26px 24px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 740px;
  margin-bottom: 0;
  font-size: 18px;
}

.button {
  appearance: none;
  box-sizing: border-box;
  border: 0;
  border-radius: 16px;
  min-height: 54px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.button--primary {
  /* CTA-кнопки — во всю ширину блока, в котором находятся. */
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 16px 34px rgba(47, 231, 234, .24);
}

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

.button--wide {
  width: 100%;
}

.trust-card {
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  min-height: 280px;
  border-radius: 28px;
  padding: 22px;
}

.price-card {
  border: 1px solid rgba(219, 229, 241, .92);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  border-radius: 32px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(230, 242, 253, .46));
}

.form {
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  border-radius: 32px;
  padding: 26px;
}

.faq-list {
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  border-radius: 28px;
  overflow: hidden;
}

.login {
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  margin-top: 18px;
  border-radius: 28px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.docs {
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  border-radius: 32px;
  overflow: hidden;
}

.video-placeholder {
  border: 1px solid rgba(219, 229, 241, .92);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  min-height: 360px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 48%, rgba(47, 231, 234, .14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(230,242,253,.70));
}

.feature-card {
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  border-radius: 36px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.integration-list {
  border: 1px solid rgba(219, 229, 241, .92);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft-shadow);
  border-radius: 36px;
  padding: 28px;
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(47, 231, 234, .12), transparent 38%),
    rgba(255,255,255,.78);
}

.routine-pro-section {
  padding: 84px 0;
  background: transparent;
}

.routine-pro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(620px, 1.18fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.routine-pro__copy h2 {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 900;
}

.routine-pro__copy p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #667792;
  font-size: 20px;
  line-height: 1.72;
}

.routine-pro__visual {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  border: 1px solid rgba(219, 229, 241, .86);
  background: radial-gradient(circle at 54% 50%, rgba(47, 231, 234, .16), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(230,242,253,.54));
  box-shadow: 0 30px 90px rgba(30, 35, 43, .09);
  overflow: hidden;
}

.routine-pro__glass {
  position: absolute;
  inset: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.72);
  background: linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08)),
    radial-gradient(circle at 50% 50%, rgba(47, 231, 234, .10), transparent 42%);
  box-shadow: inset 0 0 40px rgba(255,255,255,.50),
    0 0 70px rgba(47, 231, 234, .10);
}

.routine-pro__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(106, 111, 255, .05), transparent 38%, rgba(47, 231, 234, .10)),
    radial-gradient(circle at 67% 50%, rgba(255,255,255,.70), transparent 31%);
  pointer-events: none;
}

.upload-stack {
  position: absolute;
  left: 52px;
  top: 70px;
  width: 250px;
  z-index: 2;
}

.upload-card {
  position: relative;
  min-height: 82px;
  margin-bottom: 18px;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(219, 229, 241, .76);
  background: rgba(255,255,255,.66);
  box-shadow: 0 18px 36px rgba(30, 35, 43, .07);
  backdrop-filter: blur(16px);
  animation: uploadFloat 6s ease-in-out infinite;
}

.upload-card--one {
  transform: translateX(18px) rotate(2deg);
}

.upload-card--two {
  transform: translateX(-10px) rotate(-2deg);
  animation-delay: .25s;
}

.upload-card--three {
  transform: translateX(8px) rotate(-3deg);
  animation-delay: .5s;
}

.upload-card--four {
  transform: translateX(24px) rotate(-5deg);
  animation-delay: .75s;
}

.upload-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(230, 242, 253, .92);
}

.upload-card__icon svg {
  width: 24px;
  height: 24px;
}

.upload-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.upload-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 10px 5px 26px;
  border-radius: 999px;
  color: #24A9A8;
  background: rgba(207, 246, 243, .78);
  font-size: 12px;
  font-weight: 800;
}

.upload-card span::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 4px;
  font-weight: 900;
}

.routine-rays {
  position: absolute;
  left: 286px;
  top: 145px;
  width: 300px;
  height: 292px;
  z-index: 1;
  pointer-events: none;
}

.routine-rays span {
  position: absolute;
  left: 0;
  width: 300px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52,135,245,0), rgba(52,135,245,.35), rgba(47,231,234,.95), rgba(47,231,234,0));
  box-shadow: 0 0 18px rgba(47, 231, 234, .26);
  transform-origin: left center;
  animation: rayPulse 2.8s ease-in-out infinite;
}

.routine-rays span:nth-child(1) {
  top: 46px;
  transform: rotate(11deg);
}

.routine-rays span:nth-child(2) {
  top: 122px;
  transform: rotate(0deg);
  animation-delay: .25s;
}

.routine-rays span:nth-child(3) {
  top: 198px;
  transform: rotate(-11deg);
  animation-delay: .5s;
}

.routine-rays i {
  position: absolute;
  left: 60px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 16px rgba(47, 231, 234, .75);
  animation: dotMove 3s linear infinite;
}

.routine-rays i:nth-child(4) {
  top: 43px;
}

.routine-rays i:nth-child(5) {
  top: 119px;
  animation-delay: .45s;
}

.routine-rays i:nth-child(6) {
  top: 195px;
  animation-delay: .9s;
}

.routine-engine {
  position: absolute;
  left: 408px;
  top: 232px;
  width: 94px;
  height: 94px;
  z-index: 3;
  display: grid;
  place-items: center;
}

.routine-engine__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0 34%, rgba(47,231,234,.14) 35% 63%, transparent 64%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 0 34px rgba(47, 231, 234, .22),
    inset 0 0 24px rgba(255,255,255,.8);
  animation: ringPulse 3.6s ease-in-out infinite;
}

.routine-engine__core {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 14px 30px rgba(47, 231, 234, .24);
}

.routine-engine__core svg {
  width: 28px;
  height: 28px;
}

.court-pack {
  position: absolute;
  right: 58px;
  top: 132px;
  z-index: 4;
  width: 280px;
  min-height: 330px;
  padding: 32px 30px 28px;
  border-radius: 28px;
  border: 1px solid rgba(219, 229, 241, .76);
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 52px rgba(30, 35, 43, .10);
  backdrop-filter: blur(18px);
}

.court-pack h3 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.court-pack ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.court-pack li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(219, 229, 241, .78);
  color: #40506A;
  font-size: 13px;
  font-weight: 750;
}

.court-pack li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.court-pack__status {
  margin-top: 8px;
}

.court-pack__status span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: #18A7A4;
  background: rgba(207, 246, 243, .78);
  font-size: 12px;
  font-weight: 850;
}

.court-pack__stamp {
  position: absolute;
  right: 26px;
  bottom: 58px;
  width: 62px;
  height: 62px;
  color: rgba(52, 135, 245, .24);
}

.court-pack__signature {
  position: absolute;
  left: 32px;
  right: 34px;
  bottom: 30px;
  height: 24px;
  border-bottom: 2px solid rgba(52, 135, 245, .32);
  transform: skewX(-18deg);
}

.court-pack__signature::before {
  content: "";
  position: absolute;
  left: 48px;
  bottom: -2px;
  width: 76px;
  height: 18px;
  border-bottom: 3px solid rgba(52, 135, 245, .28);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.routine-security {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #71809A;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.routine-security svg {
  width: 22px;
  height: 22px;
  color: #71809A;
}

.section-title {
  max-width: 900px;
  margin-bottom: 18px;
}

.price-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.07em;
}

.price-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.split--docs {
  grid-template-columns: minmax(0, .82fr) minmax(390px, 1.18fr);
}

.docs div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 251, 253, .74);
}

.docs div::before {
  content: "";
  width: 32px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(52, 135, 245, .34);
  background: linear-gradient(135deg, transparent 0 74%, rgba(52, 135, 245, .18) 75%),
    rgba(255,255,255,.74);
}

.docs div:last-child {
  border-bottom: 0;
}

.docs b {
  font-size: 16px;
  line-height: 1.35;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(219, 229, 241, .82);
  border-radius: 28px;
  background: rgba(255,255,255,.45);
}

.video-placeholder span {
  position: absolute;
  left: 30px;
  bottom: 26px;
  color: #40506A;
  font-weight: 850;
}

.play-button {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 18px 40px rgba(47, 231, 234, .28);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  border-left: 24px solid #fff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

/* --- Плеер видеоотзывов (перелистывание роликов из /api/landing/reviews) --- */
.review-player {
  display: grid;
  gap: 22px;
}

/* Стрелки — по бокам ВНЕ сцены; сцена «обнимает» текущий ролик и
   центрируется между стрелками. */
.review-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
}

/* Сцена «обнимает» ролик: размер задаёт само видео своими пропорциями,
   ограниченное max-height (по высоте) и max-width:100% (по ширине колонки).
   Так рамка узкая на вертикальных/квадратных и широкая на горизонтальных —
   без чёрных полей и БЕЗ вылезания за край (ширину всегда режет колонка).
   Ключевое: min-width:0 разрешает flex-строке сжать сцену уже интринсика. */
.review-stage {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  display: flex;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 241, .92);
  box-shadow: var(--soft-shadow);
  background: #0b1220;
}

.review-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(340px, 62vh, 620px);
  background: #0b1220;
}

.review-nav {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #1b2a44;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(15, 30, 60, .18);
  border: 1px solid rgba(219, 229, 241, .9);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.review-nav svg {
  width: 24px;
  height: 24px;
}

.review-nav:hover {
  background: #fff;
  transform: scale(1.08);
  box-shadow: 0 12px 26px rgba(15, 30, 60, .22);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(64, 80, 106, .28);
  transition: background .2s ease, transform .2s ease;
}

.review-dot:hover { background: rgba(64, 80, 106, .5); }

.review-dot.is-active {
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  transform: scale(1.25);
}

/* Один ролик — стрелки и точки не нужны; пустой список — прячем плеер. */
.review-player.is-single .review-nav,
.review-player.is-single .review-dots {
  display: none;
}

.review-player.is-empty {
  display: none;
}

@media (max-width: 620px) {
  .review-frame { gap: 6px; }
  .review-nav { width: 40px; height: 40px; }
  .review-nav svg { width: 20px; height: 20px; }
}

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

.trust-card--accent {
  border-color: rgba(47, 231, 234, .56);
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(230, 251, 244, .42));
}

.feature-card h2 {
  max-width: 780px;
}

.feature-visual {
  position: relative;
  min-height: 220px;
}

.feature-visual span {
  position: absolute;
  display: block;
  border: 1px solid rgba(52, 135, 245, .26);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--soft-shadow);
}

.feature-visual span:nth-child(1) {
  width: 180px;
  height: 120px;
  right: 54px;
  top: 18px;
  transform: rotate(-6deg);
}

.feature-visual span:nth-child(2) {
  width: 180px;
  height: 120px;
  right: 14px;
  top: 54px;
  transform: rotate(5deg);
}

.feature-visual span:nth-child(3) {
  width: 180px;
  height: 120px;
  right: 84px;
  top: 86px;
  transform: rotate(-2deg);
}

.integrations-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.integration-list span {
  display: grid;
  place-items: center;
  min-height: 120px;
  border-radius: 24px;
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(250, 251, 253, .82);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.form label {
  display: block;
  margin-bottom: 14px;
}

.form span {
  display: block;
  margin-bottom: 8px;
  color: #40506A;
  font-size: 13px;
  font-weight: 850;
}

.form input {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid #C5D2E3;
  border-radius: 16px;
  padding: 0 15px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
}

.form input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(47, 231, 234, .12);
}

.form-note {
  margin: 14px 0 0;
  color: #9AA8BA;
  font-size: 12px;
  line-height: 1.45;
}

.form-note--error {
  color: #E0464F;
}

.form-note--ok {
  color: #0AA5A7;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  padding: 22px 26px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.login h3 {
  margin-bottom: 6px;
  text-transform: lowercase;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(250, 251, 253, .54);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  color: #40506A;
  font-size: 14px;
  line-height: 1.55;
}

.footer b {
  display: block;
}

.footer span {
  display: block;
}

.footer p {
  max-width: 620px;
  margin: 0;
  color: #40506A;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-pro-section {
  padding: 84px 0;
  background: transparent;
}

.pricing-pro-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-pro {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px minmax(360px, 500px) 180px minmax(220px, 1fr);
  gap: 0;
  align-items: center;
  padding: 24px 0;
}

.pricing-pro::before {
  content: "";
  position: absolute;
  inset: 28px 7%;
  border-radius: 42px;
  border: 1px solid rgba(219, 229, 241, .70);
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.22)),
    radial-gradient(circle at 50% 50%, rgba(47, 231, 234, .11), transparent 42%);
  box-shadow: 0 28px 80px rgba(30, 35, 43, .06);
  z-index: 0;
}

.pricing-pro__decor {
  position: relative;
  z-index: 1;
  min-height: 320px;
}

.pricing-pro__flow {
  position: relative;
  z-index: 1;
  height: 160px;
  pointer-events: none;
}

.price-card--pro {
  position: relative;
  z-index: 1;
  min-height: 340px;
  padding: 34px;
  border-radius: 38px;
  text-align: center;
  border: 1px solid rgba(219, 229, 241, .92);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(230,242,253,.48)),
    radial-gradient(circle at 50% 0%, rgba(47, 231, 234, .12), transparent 42%);
  box-shadow: 0 30px 80px rgba(30, 35, 43, .10),
    inset 0 0 0 1px rgba(255,255,255,.62);
}

.pricing-file {
  position: absolute;
  border: 1px solid rgba(219, 229, 241, .88);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(30, 35, 43, .07);
  width: 132px;
  height: 156px;
  padding: 18px;
  border-radius: 22px;
  transform: rotate(var(--rotate));
  animation: pricingFloat 5.5s ease-in-out infinite;
}

.pricing-result {
  position: absolute;
  border: 1px solid rgba(219, 229, 241, .88);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(30, 35, 43, .07);
  width: 150px;
  height: 190px;
  padding: 22px;
  border-radius: 24px;
  transform: rotate(var(--rotate));
  animation: pricingFloat 5.5s ease-in-out infinite;
}

.pricing-file::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 28px solid rgba(230, 242, 253, .96);
  border-left: 28px solid transparent;
  border-radius: 0 20px 0 10px;
}

.pricing-file span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2361C5;
  background: rgba(230, 242, 253, .96);
  font-size: 12px;
  font-weight: 900;
}

.pricing-file i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(52, 135, 245, .22);
  margin-top: 14px;
}

.pricing-result i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(52, 135, 245, .22);
  margin-top: 15px;
}

.pricing-result b {
  display: block;
  border-radius: 999px;
  width: 82px;
  height: 12px;
  margin-bottom: 24px;
  background: rgba(20, 33, 58, .20);
}

.pricing-file i:nth-of-type(1) {
  width: 86px;
}

.pricing-file i:nth-of-type(2) {
  width: 68px;
}

.pricing-file i:nth-of-type(3) {
  width: 92px;
}

.file-a {
  --rotate: -7deg;
  left: 30px;
  top: 18px;
}

.file-b {
  --rotate: 5deg;
  right: 18px;
  top: 92px;
  animation-delay: .25s;
}

.file-c {
  --rotate: -3deg;
  left: 74px;
  bottom: 8px;
  animation-delay: .5s;
}

.pricing-pro__flow span {
  position: absolute;
  left: -16px;
  right: -16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52,135,245,0), rgba(52,135,245,.36), rgba(47,231,234,.86), rgba(47,231,234,0));
  box-shadow: 0 0 18px rgba(47, 231, 234, .22);
  animation: priceRay 2.8s ease-in-out infinite;
}

.pricing-pro__flow span:nth-child(1) {
  top: 46px;
  transform: rotate(12deg);
}

.pricing-pro__flow span:nth-child(2) {
  top: 78px;
}

.pricing-pro__flow span:nth-child(3) {
  top: 110px;
  transform: rotate(-12deg);
}

.pricing-pro__flow--right span {
  background: linear-gradient(90deg, rgba(47,231,234,0), rgba(47,231,234,.86), rgba(52,135,245,.36), rgba(52,135,245,0));
}

.price-card__badge {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #2361C5;
  background: rgba(230, 242, 253, .96);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-card__amount strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: .92;
  letter-spacing: -.075em;
}

.price-card__amount span {
  display: block;
  color: #667792;
  font-size: 18px;
  line-height: 1.3;
}

.price-card__meta {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 22px;
  border: 1px solid rgba(219, 229, 241, .84);
  background: rgba(255,255,255,.58);
  overflow: hidden;
}

.price-card__meta div {
  min-height: 74px;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(219, 229, 241, .84);
}

.price-card__meta div:last-child {
  border-right: 0;
}

.price-card__meta b {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.price-card__meta span {
  color: #667792;
  font-size: 12px;
  font-weight: 800;
}

.pricing-result i:nth-of-type(1) {
  width: 104px;
}

.pricing-result i:nth-of-type(2) {
  width: 86px;
}

.pricing-result i:nth-of-type(3) {
  width: 112px;
}

.result-a {
  --rotate: 5deg;
  left: 18px;
  top: 40px;
}

.result-b {
  --rotate: -7deg;
  right: 20px;
  bottom: 24px;
  animation-delay: .35s;
}

.pricing-check {
  position: absolute;
  left: 45%;
  top: 44%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(52, 135, 245, .18);
  box-shadow: 0 18px 38px rgba(30, 35, 43, .08);
}

.pricing-check svg {
  width: 54px;
  height: 54px;
}

.before-after-section {
  padding: 86px 0 76px;
  overflow: hidden;
  background: transparent;
}

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

.before-after-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.before-after-heading h2 {
  margin-bottom: 14px;
  color: var(--ink);
}

.before-after-heading p {
  margin: 0;
  color: #71809A;
  font-size: 22px;
  line-height: 1.45;
}

.before-after-stack {
  position: relative;
  min-height: 1040px;
}

.ba-stack-card {
  position: relative;
  width: min(1000px, 78%);
  min-height: 500px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(330px, .75fr);
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  border: 1px solid rgba(219, 229, 241, .92);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(250,251,253,.74)),
    radial-gradient(circle at 82% 54%, rgba(230, 242, 253, .62), transparent 38%);
  box-shadow: 0 26px 70px rgba(30, 35, 43, .08);
  overflow: hidden;
}

.ba-stack-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 64px;
  background: linear-gradient(135deg, rgba(230, 242, 253, .66), rgba(207, 246, 243, .42));
  transform: rotate(12deg);
  opacity: .58;
}

.ba-stack-card--before {
  margin-left: 0;
  z-index: 2;
}

.ba-stack-card--after {
  margin-left: auto;
  margin-top: -58px;
  border-color: rgba(47, 231, 234, .72);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(230,251,244,.42)),
    radial-gradient(circle at 75% 56%, rgba(47, 231, 234, .14), transparent 38%);
  z-index: 3;
}

.ba-stack-card__text {
  position: relative;
  z-index: 4;
}

.ba-stack-card__visual {
  position: relative;
  z-index: 4;
  min-height: 360px;
}

.ba-stack-card h3 {
  max-width: 440px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.ba-stack-card p {
  max-width: 455px;
  margin-bottom: 24px;
  color: #667792;
  font-size: 17px;
  line-height: 1.6;
}

.ba-list {
  display: grid;
  gap: 0;
  margin-top: 26px;
  max-width: 520px;
}

.ba-list-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(219, 229, 241, .92);
}

.ba-list-item:last-child {
  border-bottom: 0;
}

.ba-list-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.ba-list-icon--grey {
  color: #7B879D;
  background: rgba(238, 242, 246, .90);
}

.ba-list-icon--aqua {
  color: #0AA5A7;
  background: rgba(207, 246, 243, .82);
}

.ba-list-icon svg {
  width: 30px;
  height: 30px;
}

.ba-list-item b {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.ba-list-item span {
  display: block;
  color: #667792;
  font-size: 15px;
  line-height: 1.45;
}

.manual-doc {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(219, 229, 241, .86);
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 40px rgba(30, 35, 43, .08);
}

.manual-doc--back {
  right: 8px;
  bottom: 52px;
  width: 215px;
  height: 250px;
  transform: rotate(9deg);
  opacity: .52;
}

.manual-doc--middle {
  right: 42px;
  bottom: 66px;
  width: 215px;
  height: 250px;
  transform: rotate(5deg);
  opacity: .74;
}

.manual-doc--front {
  right: 78px;
  bottom: 72px;
  width: 220px;
  min-height: 198px;
  padding: 20px;
  transform: rotate(-1deg);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
}

.pdf-badge {
  position: absolute;
  left: -16px;
  top: 42px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #EF3F4F;
  font-size: 10px;
  font-weight: 900;
}

.manual-doc--front b {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 14px;
}

.mini-credit-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(219, 229, 241, .86);
  border-radius: 10px;
  overflow: hidden;
}

.mini-credit-table span {
  min-height: 25px;
  padding: 7px 8px;
  border-right: 1px solid rgba(219, 229, 241, .86);
  border-bottom: 1px solid rgba(219, 229, 241, .86);
  font-size: 9px;
  font-style: normal;
  color: #40506A;
  background: rgba(230, 242, 253, .74);
  font-weight: 900;
}

.mini-credit-table i {
  min-height: 25px;
  padding: 7px 8px;
  border-right: 1px solid rgba(219, 229, 241, .86);
  border-bottom: 1px solid rgba(219, 229, 241, .86);
  color: #667792;
  font-size: 9px;
  font-style: normal;
}

.mini-credit-table span:nth-child(2n) {
  border-right: 0;
}

.mini-credit-table i:nth-child(2n) {
  border-right: 0;
}

.mini-credit-table i:nth-last-child(-n/**/+2) {
  border-bottom: 0;
}

.cession-file {
  position: absolute;
  right: 80px;
  top: 10px;
  min-width: 176px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #667792;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219, 229, 241, .86);
  box-shadow: 0 16px 30px rgba(30, 35, 43, .06);
  font-size: 13px;
  font-weight: 800;
  transform: rotate(-4deg);
}

.workday-badge {
  position: absolute;
  right: 58px;
  bottom: 14px;
  min-width: 160px;
  min-height: 72px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 22px;
  color: #667792;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219, 229, 241, .86);
  box-shadow: 0 16px 34px rgba(30, 35, 43, .07);
  font-weight: 900;
}

.workday-badge svg {
  width: 32px;
  height: 32px;
  color: #71809A;
}

.workday-badge span {
  font-size: 16px;
  line-height: 1.15;
}

.ba-stack-arrow {
  position: absolute;
  left: 50%;
  top: 470px;
  z-index: 6;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #079A9A;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219, 229, 241, .82);
  box-shadow: 0 18px 40px rgba(30, 35, 43, .08);
  transform: translateX(-50%);
}

.ba-stack-arrow svg {
  width: 42px;
  height: 42px;
}

.ready-doc {
  position: absolute;
  right: 28px;
  top: 42px;
  width: 235px;
  min-height: 270px;
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(47, 231, 234, .42);
  background: rgba(255,255,255,.84);
  box-shadow: 0 22px 48px rgba(30, 35, 43, .08);
  backdrop-filter: blur(16px);
}

.ready-doc img {
  width: 118px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 22px;
}

.ready-doc h4 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.ready-doc > span {
  display: block;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(219, 229, 241, .86);
}

.ready-doc > span:nth-of-type(1) {
  width: 118px;
}

.ready-doc > span:nth-of-type(2) {
  width: 148px;
}

.ready-doc > span:nth-of-type(3) {
  width: 96px;
}

.ready-check {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 18px 42px rgba(47, 231, 234, .32);
}

.ready-check svg {
  width: 48px;
  height: 48px;
}

.ready-orbit {
  position: absolute;
  right: -16px;
  border: 1px solid rgba(47, 231, 234, .36);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.ready-orbit--one {
  top: 86px;
  width: 285px;
  height: 92px;
}

.ready-orbit--two {
  top: 154px;
  width: 280px;
  height: 76px;
  border-style: dashed;
  opacity: .72;
}

.minutes-badge {
  position: absolute;
  right: 42px;
  bottom: 18px;
  z-index: 5;
  min-width: 154px;
  min-height: 70px;
  padding: 13px 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  border-radius: 22px;
  color: #079A9A;
  background: rgba(207, 246, 243, .82);
  box-shadow: 0 16px 34px rgba(30, 35, 43, .06);
}

.minutes-badge svg {
  grid-row: span 2;
  width: 32px;
  height: 32px;
}

.minutes-badge b {
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.minutes-badge span {
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.prism-process-section {
  padding: 92px 0 86px;
  overflow: hidden;
  background: transparent;
}

.prism-process-head {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.prism-process-head h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 400;
}

.prism-process-head p {
  margin: 0;
  color: #71809A;
  font-size: 20px;
  line-height: 1.55;
}

.prism-process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(260px, 320px) minmax(360px, 470px);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
}

.prism-process__left {
  display: grid;
  gap: 22px;
}

.prism-process__right {
  display: flex;
  align-items: center;
}

.prism-step {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(219, 229, 241, .92);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(250,251,253,.74)),
    radial-gradient(circle at 85% 50%, rgba(230, 242, 253, .52), transparent 36%);
  box-shadow: 0 26px 64px rgba(30, 35, 43, .08);
  overflow: hidden;
}

.prism-step::before {
  content: "";
  position: absolute;
  inset: auto -70px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(230, 242, 253, .62), rgba(207, 246, 243, .36));
  transform: rotate(12deg);
  opacity: .6;
  pointer-events: none;
}

.prism-step--input {
  padding: 24px 24px 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.prism-step--output {
  width: 100%;
  min-height: 430px;
  padding: 28px;
  border-color: rgba(47, 231, 234, .68);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(230,251,244,.44)),
    radial-gradient(circle at 82% 50%, rgba(47, 231, 234, .12), transparent 36%);
}

.prism-step__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #0AA5A7;
  background: rgba(207, 246, 243, .82);
  position: relative;
  z-index: 2;
}

.prism-step__output-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #0AA5A7;
  background: rgba(207, 246, 243, .82);
  position: relative;
  z-index: 2;
}

.prism-step__icon svg {
  width: 30px;
  height: 30px;
}

.prism-step__output-icon svg {
  width: 30px;
  height: 30px;
}

.prism-step__content {
  position: relative;
  z-index: 2;
}

.prism-step__output-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.prism-output-box {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(219, 229, 241, .92);
  background: rgba(255,255,255,.80);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36);
}

.prism-step__content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.prism-step__output-top h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.prism-step__content p {
  margin: 0;
  color: #667792;
  font-size: 15px;
  line-height: 1.52;
}

.prism-step__output-top p {
  margin: 0;
  color: #667792;
  font-size: 15px;
  line-height: 1.52;
}

.prism-output-box__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(219, 229, 241, .9);
}

.prism-output-box__head span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.prism-output-box__head b {
  color: #0AA5A7;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.prism-output-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.prism-output-list li {
  position: relative;
  padding-left: 24px;
  color: #40506A;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 750;
}

.prism-output-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 0 14px rgba(47, 231, 234, .36);
}

.prism-output-status {
  margin-top: 18px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(207, 246, 243, .70);
  color: #079A9A;
  font-size: 13px;
  font-weight: 850;
}

.prism-output-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #15C7C7;
  box-shadow: 0 0 12px rgba(21, 199, 199, .8);
}

.prism-process__center {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prism-core {
  position: relative;
  z-index: 4;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
}

.prism-core__halo {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0, rgba(207,246,243,.42) 48%, rgba(230,242,253,.16) 72%, transparent 100%);
  filter: blur(2px);
}

.prism-core__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 231, 234, .26);
}

.prism-core__ring--one {
  inset: 0;
  animation: prismOrbitA 8s linear infinite;
}

.prism-core__ring--two {
  inset: 24px;
  border-style: dashed;
  opacity: .8;
  animation: prismOrbitB 11s linear infinite;
}

.prism-core__logo {
  position: relative;
  z-index: 2;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 40px rgba(30, 35, 43, .10),
    inset 0 0 0 1px rgba(255,255,255,.55);
  backdrop-filter: blur(14px);
}

.prism-core__logo img {
  width: 88px;
  height: auto;
  object-fit: contain;
  display: block;
}

.connector {
  position: absolute;
  z-index: 1;
}

.connector__line {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52,135,245,0), rgba(52,135,245,.35), rgba(47,231,234,.95), rgba(47,231,234,0));
  box-shadow: 0 0 18px rgba(47, 231, 234, .22);
}

.connector__dot {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 16px rgba(47, 231, 234, .8);
}

.connector--top {
  left: -110px;
  width: 205px;
  height: 4px;
  transform-origin: right center;
  top: 170px;
  transform: rotate(22deg);
}

.connector--bottom {
  left: -110px;
  width: 205px;
  height: 4px;
  transform-origin: right center;
  top: 348px;
  transform: rotate(-22deg);
}

.connector--out {
  right: -130px;
  width: 225px;
  height: 4px;
  top: 258px;
}

.connector--out .connector__line {
  background: linear-gradient(90deg, rgba(47,231,234,0), rgba(47,231,234,.95), rgba(52,135,245,.36), rgba(52,135,245,0));
}

.connector--top .connector__dot {
  animation: flowToPrism 3.4s linear infinite;
}

.connector--bottom .connector__dot {
  animation: flowToPrism 3.4s linear infinite;
}

.connector--top .connector__dot--2 {
  animation-delay: 1.1s;
}

.connector--bottom .connector__dot--2 {
  animation-delay: 1.1s;
}

.connector--top .connector__dot--3 {
  animation-delay: 2.2s;
}

.connector--bottom .connector__dot--3 {
  animation-delay: 2.2s;
}

.connector--out .connector__dot {
  animation: flowFromPrism 3.2s linear infinite;
}

.connector--out .connector__dot--2 {
  animation-delay: 1s;
}

.connector--out .connector__dot--3 {
  animation-delay: 2s;
}

@keyframes uploadFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes rayPulse {
  0%, 100% {
    opacity: .48;
    filter: blur(0);
  }

  50% {
    opacity: 1;
    filter: blur(.4px);
  }
}

@keyframes dotMove {
  0% {
    left: 0;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    left: 292px;
    opacity: 0;
  }
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .82;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes pricingFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

@keyframes priceRay {
  0%, 100% {
    opacity: .42;
    filter: blur(0);
  }

  50% {
    opacity: 1;
    filter: blur(.35px);
  }
}

@keyframes flowToPrism {
  0% {
    left: 0;
    opacity: 0;
    transform: scale(.6);
  }
  12% {
    opacity: 1;
    transform: scale(1);
  }
  88% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 11px);
    opacity: 0;
    transform: scale(.75);
  }
}

@keyframes flowFromPrism {
  0% {
    left: 0;
    opacity: 0;
    transform: scale(.6);
  }
  12% {
    opacity: 1;
    transform: scale(1);
  }
  88% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 11px);
    opacity: 0;
    transform: scale(.75);
  }
}

@keyframes prismOrbitA {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes prismOrbitB {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@media (max-width: 1120px) {
  .nav a {
    padding-inline: 10px;
  }

  .video-layout {
    grid-template-columns: 1fr;
  }

  .integrations-layout {
    grid-template-columns: 1fr;
  }

  /* Секция «Освободитесь от рутины» — в одну колонку (иначе колонка с текстом
     схлопывается в 0 из-за minmax(620px,…) во второй колонке). */
  .routine-pro {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    display: none;
  }

  .before-after-stack {
    min-height: auto;
  }

  .ba-stack-card {
    width: 100%;
    margin: 0;
  }

  .ba-stack-card--after {
    width: 100%;
    margin: 0;
    margin-top: 22px;
  }

  .ba-stack-arrow {
    position: relative;
    left: auto;
    top: auto;
    margin: -10px auto;
    transform: rotate(90deg);
  }
}

@media (max-width: 900px) {
  :root {
    --header: 74px;
  }

  .logo img {
    width: 190px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(250, 251, 253, .96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
  }

  .hero-screen {
    min-height: auto;
    padding: calc(var(--header) + 46px) 0 48px;
  }

  .hero-bg {
    opacity: .55;
    background-size: 1180px auto;
    background-position: 56% 94px;
  }

  .hero-overlay {
    background: linear-gradient(
          180deg,
          rgba(250, 251, 253, .96) 0%,
          rgba(250, 251, 253, .90) 42%,
          rgba(250, 251, 253, .78) 100%
        );
  }

  .hero-text {
    width: 100%;
  }

  .hero-text h1 {
    max-width: 620px;
    font-size: clamp(38px, 10vw, 58px);
  }

  .hero-text p {
    font-size: 17px;
  }

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

  .split--docs {
    grid-template-columns: 1fr;
  }

  .screen {
    min-height: auto;
    padding: 48px 0;
  }

  h2 {
    font-size: clamp(31px, 8vw, 44px);
  }

  .trust-card {
    min-height: auto;
  }

  .video-placeholder {
    min-height: 280px;
  }

  .before-after-section {
    padding: 52px 0;
  }

  .before-after-container {
    width: min(100% - 28px, 1260px);
  }

  .before-after-heading {
    margin-bottom: 28px;
  }

  .before-after-heading p {
    font-size: 18px;
  }

  .ba-stack-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .ba-stack-card--after {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .ba-stack-card__visual {
    min-height: 330px;
  }

  .ba-stack-card h3 {
    font-size: 25px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header__inner {
    width: min(100% - 28px, 1180px);
    gap: 12px;
  }

  .logo img {
    width: 168px;
  }

  .hero-screen {
    padding-top: calc(var(--header) + 34px);
  }

  .hero-bg {
    opacity: .38;
    background-size: 940px auto;
    background-position: 51% 112px;
  }

  .hero-text h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .button {
    width: 100%;
    min-height: 50px;
    text-align: center;
  }

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

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

  .integration-list span {
    min-height: 86px;
  }

  .docs div {
    align-items: flex-start;
  }

  .login {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ba-stack-card {
    border-radius: 28px;
    padding: 20px;
  }

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

  .ba-stack-card__visual--before {
    display: none;
  }

  .ba-stack-card__visual--after {
    min-height: 320px;
  }

  .ready-doc {
    right: 50%;
    transform: translateX(50%);
  }

  .ready-orbit {
    display: none;
  }

  .minutes-badge {
    display: none;
  }
}

@media (max-width: 1180px) {
  .prism-process {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prism-process__center {
    min-height: 290px;
    order: 2;
  }

  .prism-process__right {
    order: 3;
  }

  .prism-process__left {
    order: 1;
  }

  .connector--top {
    left: 50%;
    width: 150px;
    top: 36px;
    transform-origin: center;
    transform: translateX(-50%) rotate(90deg);
  }

  .connector--bottom {
    left: 50%;
    width: 150px;
    transform-origin: center;
    top: 110px;
    transform: translateX(-50%) rotate(90deg);
  }

  .connector--out {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    width: 150px;
    transform: translateX(-50%) rotate(90deg);
  }

  .prism-step--output {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .prism-process-section {
    padding: 58px 0;
  }

  .prism-process-head {
    text-align: left;
    margin-bottom: 28px;
  }

  .prism-process-head p {
    font-size: 17px;
  }

  .prism-step--input {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px 20px;
  }

  .prism-step--output {
    padding: 22px 18px;
  }

  .prism-step__output-top {
    grid-template-columns: 1fr;
  }

  .prism-step__content h3 {
    font-size: 22px;
  }

  .prism-step__output-top h3 {
    font-size: 22px;
  }

  .prism-core {
    width: 210px;
    height: 210px;
  }

  .prism-core__logo {
    width: 108px;
    height: 108px;
  }

  .prism-core__logo img {
    width: 78px;
  }
}


/* === FINAL CLEANUP: ONE UNIFORM PAGE BACKGROUND ===
   The whole page uses one background from body. Major sections are transparent.
   Cards, panels and visual mockups keep their own glass backgrounds. */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(207, 246, 243, .58), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(230, 242, 253, .76), transparent 32%),
    linear-gradient(180deg, #FBFDFF 0%, #F7FBFE 42%, #F4F8FC 100%);
  background-attachment: fixed;
}

main,
.screen,
.hero-screen,
.routine-pro-section,
.pricing-pro-section,
.before-after-section,
.prism-process-section,
.video-section,
.feature-section,
.integrations-section,
.screen--faq {
  background: transparent !important;
}

/* If the page is opened from the ready archive, the logo must never fall back to its original huge bitmap size. */
.logo img {
  width: 220px;
  max-height: 58px;
  object-fit: contain;
}

.reputation-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.reputation-section .container,
.reputation-section .section-title,
.reputation-section .features-grid,
.reputation-section .features-cta {
  position: relative;
  z-index: 2;
}

.reputation-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.reputation-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.reputation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 253, 0.52) 0%,
      rgba(248, 251, 253, 0.18) 28%,
      rgba(248, 251, 253, 0.18) 72%,
      rgba(248, 251, 253, 0.52) 100%
    );
}

/* === HERO: текст слева + визуал сборки документов справа === */
/* Визуал теперь несёт правую часть — фоновый скриншот больше не нужен. */
.hero-screen .hero-bg,
.hero-screen .hero-overlay {
  display: none;
}

.hero-content--split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-content--split .hero-text {
  width: 100%;
}

.hero-content--split .routine-pro__visual {
  width: 100%;
  min-height: 540px;
}

@media (max-width: 1120px) {
  .hero-content--split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* На телефонах декоративный визуал сборки свёрстан под широкую колонку (~600px)
   с абсолютным позиционированием и «наезжает» сам на себя. Вместо того чтобы
   прятать его, переверстываем в аккуратный вертикальный стек: карточки → «движок»
   → пакет документов. Так картинка остаётся под заголовком, текстом и кнопкой.
   На планшете и десктопе (>620px) раскладка прежняя. */
@media (max-width: 620px) {
  /* Порядок на телефоне: заголовок и текст → картинка → кнопка.
     display: contents убирает бокс .hero-text, поднимая его детей (eyebrow, h1,
     p, кнопку) в общий флекс-контейнер, а order переставляет картинку и кнопку.
     Раскладку десктопа это не затрагивает — правило только внутри @media. */
  .hero-content--split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-content--split .hero-text {
    display: contents;
  }

  .hero-content--split .hero-text .button {
    order: 2;
    margin-top: 24px;
  }

  .hero-content--split .routine-pro__visual {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: auto;
    margin-top: 8px;
    padding: 30px 16px;
    transform: none;
  }

  .hero-content--split .routine-pro__glass {
    inset: 12px;
  }

  /* Карточки загрузки — обычный поток, без разброса и «плавания». */
  .hero-content--split .upload-stack {
    position: static;
    width: 100%;
    max-width: 320px;
  }

  .hero-content--split .upload-card {
    transform: none;
    animation: none;
    margin-bottom: 12px;
  }

  .hero-content--split .upload-card:last-child {
    margin-bottom: 0;
  }

  /* Горизонтальные лучи имеют смысл только в широкой раскладке — прячем. */
  .hero-content--split .routine-rays {
    display: none;
  }

  /* «Движок» распознавания — по центру между стеком файлов и пакетом.
     position: relative (а не static!) обязателен: кольцо внутри — absolute
     inset:0, и без позиционированного родителя оно растягивается на весь
     визуал, заливая всё белой радиалкой. */
  .hero-content--split .routine-engine {
    position: relative;
    left: 0;
    top: 0;
    margin: 14px 0;
  }

  /* Пульс раздувает кольцо и в плотном вертикальном стеке оно наезжает белой
     заливкой на карточку выше — на мобильных пульс отключаем. */
  .hero-content--split .routine-engine__ring {
    animation: none;
  }

  /* Пакет документов — карточка на всю ширину. */
  .hero-content--split .court-pack {
    position: static;
    width: 100%;
    max-width: 320px;
    min-height: auto;
  }

  /* Абсолютные декоративные элементы карточки рассчитаны на фикс-высоту —
     в мобильной вёрстке они наезжают на список, поэтому скрываем. */
  .hero-content--split .court-pack__stamp,
  .hero-content--split .court-pack__signature {
    display: none;
  }

  .hero-content--split .routine-security {
    position: static;
    transform: none;
    margin-top: 4px;
    justify-content: center;
  }
}

/* === Стоимость: в мобильной версии показываем только карточку цены,
   декоративные файлы/лучи по бокам скрываем (десктоп — как было). === */
@media (max-width: 1120px) {
  .pricing-pro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .pricing-pro::before {
    display: none;
  }

  .pricing-pro__decor,
  .pricing-pro__flow {
    display: none;
  }

  .price-card--pro {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}


/* ============================================================
   Слайдер (карусель). Собирается из JS (app.js): исходные карточки
   переносятся в .car-track, добавляются точки/стрелки.
   Используется в двух местах:
   — «Было – станет» (.before-after-stack): слайдер всегда;
   — «Автоматизация…» (.trust): слайдер только в мобильной версии.
   ============================================================ */
.car {
  position: relative;
}
/* В режиме слайдера контейнер — блок (у .trust своя grid-сетка для десктопа). */
.is-car {
  display: block;
}
.car-viewport {
  overflow: hidden;
  width: 100%;
  /* нижний отступ — чтобы тень активной карточки не обрезалась вьюпортом */
  padding: 6px 4px 34px;
  /* pan-y: вертикальную прокрутку страницы отдаём браузеру, а горизонтальный
     жест остаётся нам — иначе на тач-устройствах браузер перехватывает свайп
     под скролл (pointercancel) и слайд не листается. */
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.car-track {
  display: flex;
  align-items: stretch;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.car-track > * {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Точки-переключатели */
.car-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 24px;
}
.car-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(103, 121, 146, .32);
  transition: transform .2s ease, background .2s ease;
}
.car-dot:hover {
  background: rgba(103, 121, 146, .55);
}
.car-dot.is-active {
  background: var(--blue);
  transform: scale(1.35);
}

/* Стрелки влево/вправо */
.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.car-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.car-arrow svg {
  width: 22px;
  height: 22px;
}
.car-arrow--prev { left: 6px; }
.car-arrow--next { right: 6px; }

/* «Было – станет»: в режиме слайдера гасим «стопку» — карточки во всю ширину.
   Боковые поля — чтобы стрелки встали в отступы за карточкой, а не поверх текста. */
.before-after-stack.is-car {
  min-height: 0;
  padding-left: 64px;
  padding-right: 64px;
}
.before-after-stack.is-car .ba-stack-card,
.before-after-stack.is-car .ba-stack-card--after {
  width: 100%;
  margin: 0;
}

@media (max-width: 900px) {
  .car-arrow { width: 42px; height: 42px; }
  .car-arrow--prev { left: 2px; }
  .car-arrow--next { right: 2px; }
  .before-after-stack.is-car {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* «Было – станет» на телефоне (≤620px): убираем боковые стрелки и растягиваем
   слайдер на всю ширину экрана (full-bleed, выходя за поля контейнера). На
   планшете и десктопе слайдер со стрелками остаётся как был. */
@media (max-width: 620px) {
  .before-after-stack .car-arrow {
    display: none;
  }
  .before-after-stack.is-car {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }
  /* небольшой боковой отступ карточек от краёв экрана (как общий мобильный gutter) */
  .before-after-stack.is-car .car-viewport {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* === Inter SemiBold (self-hosted) — шрифт для всех заголовков лендинга === */
@font-face {
  font-family: 'Inter SemiBold';
  src: url('assets/fonts/inter-semibold.woff2') format('woff2'),
       url('assets/fonts/inter-semibold.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter SemiBold', Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* === Правки от 2026-08: hero-визуал, старая цена, плитки аудитории === */

/* 1. Визуал сборки документов — чуть меньше и чуть правее (сдвиг к правому краю).
   transform не влияет на поток, поэтому соседняя колонка с текстом не съезжает.
   На узких экранах (<1120px) сетка становится одноколоночной — сдвиг убираем. */
.hero-content--split .routine-pro__visual {
  transform: translateX(22px) scale(.94);
  transform-origin: center right;
}
@media (max-width: 1120px) {
  .hero-content--split .routine-pro__visual {
    transform: none;
  }
}

/* 2. Старая цена в бейдже карточки: 490 ₽ зачёркнуто, приглушённо-серым,
   чтобы читалось как «было столько, а стало 300». */
.price-card__badge--old {
  color: #94A3B8;
  background: rgba(148, 163, 184, .14);
  letter-spacing: normal;
  text-transform: none;
  font-size: 16px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #B23B4E;
}

/* 3. Плитки «для кого сервис» — сразу под hero. Белые карточки с тёмно-синим
   текстом, ряд из 4 → 2 → 1 на сужении. */
.audience-section {
  padding: 8px 0 44px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-tile {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 35, 43, .05);
  color: var(--ink);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.25;
  transition: transform .18s ease, box-shadow .18s ease;
}
.audience-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(30, 35, 43, .09);
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-tile { min-height: 72px; }
}
