:root {
  --blue: #3034df;
  --blue-2: #1e5be8;
  --lime: #caff00;
  --ink: #111318;
  --muted: #707783;
  --soft: #edf1f7;
  --card: #ffffff;
  --line: #dce2ec;
  --gray-card: #9da2a7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f7f8;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 96px;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(1280px, 100%);
  min-height: 96px;
  margin: 0 auto;
  padding: 0 18px;
}

.logo-link {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.logo-link img {
  width: 260px;
  max-width: 100%;
  max-height: 74px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav,
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.nav a,
.nav-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.nav a:hover {
  background: #fff;
  color: var(--blue);
}

.nav-actions a {
  color: #fff;
}

.nav-actions .nav-login {
  background: var(--lime);
  color: #10122f;
}

.nav-actions .nav-trial {
  background: #fff;
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #fff;
  background: #2f68b6;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 45, 92, 0.76), rgba(24, 82, 156, 0.2) 52%, rgba(202, 255, 0, 0.12)),
    url("/landing/assets/multimodal-transport-hero.png?v=20260521");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 83, 166, 0.04), rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.headline-row {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(280px, 1fr);
  gap: 42px;
  align-items: end;
}

.headline-row h1 {
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-aside {
  display: grid;
  gap: 24px;
  align-content: end;
  min-width: 0;
}

.hero-lead {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.role-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.primary-action {
  border: 0;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(48, 52, 223, 0.24);
}

.secondary-action {
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.tariffs-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 34px;
  align-items: start;
}

.tariffs-copy {
  max-width: 760px;
}

.tariffs-copy h2,
.section-heading h2,
.finactiv h2,
.about-text h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.08;
  font-weight: 900;
}

.tariffs-copy p,
.section-heading p,
.finactiv p,
.about-text p {
  margin: 16px 0 0;
  color: #314078;
  font-size: 17px;
  line-height: 1.38;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 22px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border: 1px solid rgba(48, 52, 223, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  padding: 26px;
  box-shadow: 0 16px 34px rgba(35, 43, 72, 0.1);
}

.tariff-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-card h3 {
  margin: 22px 0 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.tariff-card strong {
  margin-top: 6px;
  color: #53627d;
  font-size: 13px;
}

.tariff-card p {
  margin: 18px 0 0;
  color: #314078;
  font-size: 15px;
  line-height: 1.36;
}

.tariff-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #253257;
  font-size: 14px;
  line-height: 1.28;
}

.tariff-card li {
  position: relative;
  padding-left: 18px;
}

.tariff-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.tariff-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(48, 52, 223, 0.22);
}

.tariff-card-trial {
  border-color: rgba(161, 215, 43, 0.58);
  background: linear-gradient(180deg, #f8ffe7, #fff);
}

.tariff-card-trial span {
  background: var(--lime);
  color: #10122f;
}

.tariff-card-accent {
  background: var(--blue);
  color: #fff;
  transform: translateY(-8px);
}

.tariff-card-accent span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.tariff-card-accent strong,
.tariff-card-accent p,
.tariff-card-accent ul {
  color: rgba(255, 255, 255, 0.84);
}

.tariff-card-accent a {
  background: var(--lime);
  color: #10122f;
  box-shadow: 0 12px 28px rgba(161, 215, 43, 0.28);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 74px;
  text-align: center;
}

.stats.is-ready div {
  opacity: 0;
  transform: translateY(18px);
}

.stats.is-visible div {
  animation: stat-rise 0.56s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.stats.is-visible div:nth-child(2) {
  animation-delay: 0.08s;
}

.stats.is-visible div:nth-child(3) {
  animation-delay: 0.16s;
}

.stats.is-visible div:nth-child(4) {
  animation-delay: 0.24s;
}

.stats.is-visible div:nth-child(5) {
  animation-delay: 0.32s;
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 56px;
  line-height: 0.9;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.stats b {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  text-transform: lowercase;
}

.stats span {
  display: block;
  max-width: 170px;
  margin: 14px auto 0;
  color: #314078;
  font-size: 13px;
  line-height: 1.24;
}

@keyframes stat-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 8px 26px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 0 2px var(--blue);
}

.section-heading {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 30px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.compare,
.proof,
.faq {
  padding: 0 0 74px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.compare-grid article,
.audience-card,
.testimonials article,
.faq details {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(35, 43, 72, 0.08);
}

.compare-grid article {
  padding: 28px;
}

.compare-positive {
  background: var(--blue) !important;
  color: #fff;
}

.compare-grid h3 {
  margin: 0;
  font-size: 28px;
}

.compare-grid ul,
.finactiv ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-grid li,
.finactiv li,
.audience-card li {
  position: relative;
  padding-left: 20px;
  color: #314078;
  line-height: 1.32;
}

.compare-positive li {
  color: rgba(255, 255, 255, 0.9);
}

.compare-grid li::before,
.finactiv li::before,
.audience-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.audiences {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 74px;
}

.audiences .section-heading {
  width: auto;
}

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

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
}

.audience-card-accent {
  background: var(--blue);
  color: #fff;
}

.audience-card span {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-card-accent span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.audience-card h3 {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.14;
}

.audience-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.audience-card-accent li {
  color: rgba(255, 255, 255, 0.86);
}

.audience-card blockquote {
  margin: auto 0 0;
  padding-top: 22px;
  color: #314078;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 700;
}

.audience-card-accent blockquote {
  color: rgba(255, 255, 255, 0.86);
}

.workflow {
  position: relative;
  overflow: hidden;
  padding: 8px 0 72px;
  background: #f7f7f8;
}

.workflow > .section-label {
  margin-left: max(20px, calc((100vw - 980px) / 2));
}

.deal-flow {
  position: relative;
  width: min(980px, calc(100% - 32px));
  height: 640px;
  margin: 34px auto 0;
  border-radius: 42px;
  overflow: hidden;
  background: #e6eaf3;
}

.deal-flow::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 34px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 560'%3E%3Cpath d='M82 96 C240 38 650 38 790 128 C885 190 845 300 688 308 C520 318 315 220 170 310 C35 394 120 508 332 508 L812 508' fill='none' stroke='%2399a8b8' stroke-width='102' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M82 96 C240 38 650 38 790 128 C885 190 845 300 688 308 C520 318 315 220 170 310 C35 394 120 508 332 508 L812 508' fill='none' stroke='%23f5f8fc' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='38 36'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.94;
}

.deal-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(48, 52, 223, 0.08), transparent 22%),
    radial-gradient(circle at 86% 78%, rgba(30, 91, 232, 0.1), transparent 24%);
  pointer-events: none;
}

.step {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 310px;
  min-height: 92px;
  padding: 14px 62px 14px 16px;
  border: 2px solid #9ba8b8;
  border-radius: 12px 32px 32px 12px;
  background:
    linear-gradient(90deg, transparent calc(100% - 48px), rgba(39, 68, 232, 0.12) calc(100% - 48px) calc(100% - 40px), var(--blue) calc(100% - 40px)),
    linear-gradient(180deg, rgba(236, 244, 255, 0.88), #fff 34%, #fff 66%, rgba(236, 244, 255, 0.88));
  box-shadow:
    0 5px 0 rgba(17, 19, 24, 0.12),
    0 16px 24px rgba(39, 51, 91, 0.08);
  overflow: visible;
  offset-anchor: center;
  offset-distance: var(--end);
  offset-path: path("M 112 128 C 274 68 695 68 839 162 C 936 227 895 340 733 349 C 560 359 350 257 201 349 C 62 436 149 558 367 558 L 862 558");
  offset-rotate: 0deg;
  transform: rotate(var(--angle, 0deg));
}

.step-1 {
  --angle: -4deg;
  --end: 7%;
  --duration: 0.82s;
}

.step-2 {
  --angle: 5deg;
  --end: 28%;
  --duration: 1.08s;
}

.step-3 {
  --angle: -6deg;
  --end: 47%;
  --duration: 1.34s;
}

.step-4 {
  --angle: -8deg;
  --end: 61%;
  --duration: 1.56s;
}

.step-5 {
  --angle: 4deg;
  --end: 76%;
  --duration: 1.78s;
}

.step-6 {
  --angle: 0deg;
  --end: 94%;
  --duration: 2s;
}

.step-3,
.step-4 {
  padding: 14px 16px 14px 62px;
  border-radius: 32px 12px 12px 32px;
  background:
    linear-gradient(90deg, var(--blue) 0 40px, rgba(39, 68, 232, 0.12) 40px 48px, transparent 48px),
    linear-gradient(180deg, rgba(236, 244, 255, 0.88), #fff 34%, #fff 66%, rgba(236, 244, 255, 0.88));
}

.step::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 28px;
  height: 46px;
  border-radius: 10px 20px 20px 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0 8px, transparent 8px 15px, rgba(255, 255, 255, 0.7) 15px 22px, transparent 22px),
    var(--blue-2);
  box-shadow: inset -4px 0 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.step-3::before,
.step-4::before {
  left: 7px;
  right: auto;
  border-radius: 20px 10px 10px 20px;
  background:
    linear-gradient(90deg, transparent 0 6px, rgba(255, 255, 255, 0.7) 6px 13px, transparent 13px 20px, rgba(255, 255, 255, 0.86) 20px 28px),
    var(--blue-2);
  box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.22);
}

.step::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 56px;
  top: -7px;
  bottom: -7px;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, #667284 0 38px, transparent 38px 72px) top / 112px 8px repeat-x no-repeat,
    repeating-linear-gradient(90deg, #667284 0 38px, transparent 38px 72px) bottom / 112px 8px repeat-x no-repeat;
}

.step-3::after,
.step-4::after {
  left: 56px;
  right: 24px;
}

.step span,
.step i {
  position: relative;
  z-index: 2;
}

.step span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.step b {
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
}

.step em {
  color: #43527a;
  font-size: 10.5px;
  line-height: 1.12;
  font-style: normal;
  font-weight: 800;
  text-wrap: balance;
}

.step i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.deal-flow.is-ready .step {
  opacity: 0;
  offset-distance: 0%;
  transform: rotate(var(--angle, 0deg));
}

.deal-flow.is-visible .step {
  animation: step-road-drive var(--duration, 1s) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.deal-flow.is-visible .step-1 {
  animation-delay: 0.08s;
}

.deal-flow.is-visible .step-2 {
  animation-delay: 0.42s;
}

.deal-flow.is-visible .step-3 {
  animation-delay: 0.76s;
}

.deal-flow.is-visible .step-4 {
  animation-delay: 1.1s;
}

.deal-flow.is-visible .step-5 {
  animation-delay: 1.44s;
}

.deal-flow.is-visible .step-6 {
  animation-delay: 1.78s;
}

@keyframes step-road-drive {
  0% {
    opacity: 0;
    offset-distance: 0%;
    transform: rotate(var(--angle, 0deg));
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    offset-distance: var(--end);
    transform: rotate(var(--angle, 0deg));
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.services-heading {
  grid-column: 1 / -1;
  max-width: 860px;
  margin-bottom: 6px;
}

.services-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
}

.services-heading p {
  max-width: 660px;
  margin: 14px 0 0;
  color: #314078;
  font-size: 17px;
  line-height: 1.3;
}

.services article {
  text-align: center;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--gray-card);
  color: #fff;
  font-size: 18px;
  line-height: 1.13;
}

.services article p {
  margin: 14px 0 0;
  color: #314078;
  font-size: 13px;
  line-height: 1.28;
}

.finactiv {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 74px;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 16px 34px rgba(35, 43, 72, 0.08);
}

.finactiv .primary-action {
  margin-top: 22px;
}

.finactiv ul {
  margin: 0;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: #fff;
}

.product-preview {
  min-height: 420px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2)) 42px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(48, 52, 223, 0.12), rgba(202, 255, 0, 0.08)),
    #eef2f8;
}

.preview-top {
  display: flex;
  gap: 8px;
  width: min(560px, 100%);
  padding: 14px;
  border-radius: 10px 10px 0 0;
  background: #3034df;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.74;
}

.preview-grid {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 14px;
  width: min(560px, 100%);
  padding: 16px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(35, 43, 72, 0.14);
}

.preview-sidebar {
  grid-row: span 2;
  min-height: 230px;
  border-radius: 8px;
  background:
    linear-gradient(#3034df 0 28px, transparent 28px),
    repeating-linear-gradient(#eef2ff 0 18px, transparent 18px 34px);
}

.preview-panel {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 108px;
  padding: 16px;
  border-radius: 8px;
  background: #f4f6fb;
}

.preview-panel.wide {
  grid-column: span 2;
}

.preview-panel strong {
  color: var(--blue);
  font-size: 13px;
}

.preview-panel b {
  font-size: 18px;
}

.preview-panel small {
  color: #667084;
}

.preview-progress {
  height: 10px;
  border-radius: 999px;
  background: #dde5f0;
}

.preview-progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px max(28px, calc((100vw - 1180px) / 2)) 56px 70px;
}

.proof {
  padding-top: 72px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 22px;
}

.trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 24px rgba(35, 43, 72, 0.06);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.testimonials article {
  padding: 24px;
}

.testimonials blockquote {
  margin: 0;
  color: #314078;
  font-size: 15px;
  line-height: 1.42;
}

.testimonials span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.faq details {
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: #314078;
  line-height: 1.42;
}

.footer {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1fr minmax(430px, 1.55fr);
  align-items: start;
  gap: 38px;
  padding: 46px max(28px, calc((100vw - 1180px) / 2)) 56px;
  background: var(--blue);
  color: #fff;
}

.footer h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

.footer a,
.footer p {
  display: block;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(170px, 220px);
  align-items: start;
  gap: 24px 34px;
}

.footer-contacts {
  min-width: 0;
}

.footer-brand img {
  width: 220px;
  max-height: 82px;
  height: auto;
  display: block;
  justify-self: end;
  margin-top: -2px;
  object-fit: contain;
}

.copyright {
  max-width: 330px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.rkn-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: 238px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(48, 52, 223, 0.94);
  color: #fff;
  box-shadow: 0 18px 38px rgba(17, 19, 24, 0.22);
  backdrop-filter: blur(12px);
}

.rkn-badge strong {
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.rkn-badge span,
.rkn-badge small {
  font-size: 12px;
  line-height: 1.22;
}

.rkn-badge span {
  font-weight: 800;
}

.rkn-badge small {
  color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .deal-flow.is-ready .step {
    opacity: 1;
    offset-distance: var(--end);
    transform: rotate(var(--angle, 0deg));
  }

  .deal-flow.is-visible .step {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .logo-link {
    justify-self: center;
  }

  .nav,
  .nav-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .headline-row,
  .tariffs-section,
  .compare-grid,
  .finactiv,
  .about {
    grid-template-columns: 1fr;
  }

  .stats,
  .services,
  .audience-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariff-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .testimonials,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    justify-self: start;
    width: 190px;
    margin-top: 8px;
  }

  .hero-lead {
    max-width: 720px;
  }

  .deal-flow {
    height: auto;
    min-height: auto;
    width: min(720px, calc(100% - 32px));
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .deal-flow::before {
    display: none;
  }

  .step {
    --angle: 0deg;
    position: relative;
    min-width: 0;
    width: 100%;
    min-height: 92px;
    offset-distance: auto;
    offset-path: none;
    offset-rotate: 0deg;
  }

  .deal-flow.is-ready .step,
  .deal-flow.is-visible .step {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .about-text {
    padding: 34px 24px;
  }
}

@media (max-width: 640px) {
  .nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .nav a,
  .nav-actions a {
    min-height: 42px;
    background: #f3f5f9;
    color: var(--blue);
  }

  .nav-actions .nav-login,
  .nav-actions .nav-trial {
    background: var(--lime);
    color: #10122f;
  }

  .hero-photo {
    background-position: 68% center;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-top: 34px;
  }

  .headline-row h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .stats,
  .services,
  .audience-grid,
  .trust-row,
  .testimonials,
  .footer,
  .preview-grid {
    grid-template-columns: 1fr;
  }

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

  .tariffs-section,
  .compare,
  .audiences,
  .proof,
  .faq,
  .services {
    padding-bottom: 52px;
  }

  .tariffs-copy h2,
  .section-heading h2,
  .finactiv h2,
  .about-text h2,
  .services-heading h2 {
    font-size: 28px;
  }

  .section-label {
    font-size: 24px;
  }

  .stats strong {
    font-size: 52px;
  }

  .preview-sidebar,
  .preview-panel.wide {
    grid-column: auto;
  }

  .tariff-card-accent {
    transform: none;
  }

  .preview-sidebar {
    min-height: 80px;
  }

  .footer-brand img {
    grid-row: 2;
  }

  .finactiv {
    padding: 24px;
  }

  .rkn-badge {
    position: static;
  width: calc(100% - 24px);
  margin: 12px;
  background: var(--blue);
  }
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(22, 44, 93, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(8, 24, 54, 0.18);
  color: #15233b;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(10px);
}

.cookie-consent__text {
  min-width: 0;
}

.cookie-consent__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.cookie-consent__text p {
  margin: 0;
  color: #4f5f78;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-consent__text a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.cookie-consent__text a:hover {
  text-decoration: underline;
}

.cookie-consent__button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: #10122f;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 12px 20px;
  box-shadow: 0 10px 22px rgba(161, 215, 43, 0.28);
}

.cookie-consent__button:hover {
  filter: brightness(0.96);
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
