@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff5a12;
  --orange-2: #ff7a36;
  --blue: #366df4;
  --violet: #6656ff;
  --green: #21bd63;
  --ink: #0e1427;
  --muted: #606b82;
  --soft: #eef1f7;
  --line: rgba(16, 24, 40, .1);
  --card: rgba(255, 255, 255, .78);
  --shadow: 0 22px 70px rgba(31, 45, 82, .08);
  --orange-shadow: 0 18px 46px rgba(255, 90, 18, .22);
  --blue-shadow: 0 18px 46px rgba(54, 109, 244, .2);
  --content: 1190px;
  --landing-scale: 1;
  --page-bg: #f8faff;
  --type-micro: 11px;
  --type-xs: 12px;
  --type-caption: 13px;
  --type-sm: 14px;
  --type-subtitle: 20px;
  --type-md: 15px;
  --type-base: 16px;
  --type-lead: 18px;
  --type-title: 22px;
  --type-section: clamp(32px, 2.9vw, 40px);
  --type-hero: clamp(38px, 3.6vw, 52px);
  --leading-tight: 1.12;
  --leading-title: 1.24;
  --leading-body: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(249, 115, 22, .05), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(54, 109, 244, .045), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, var(--page-bg) 48%, #fff 100%);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: var(--type-base);
  line-height: var(--leading-body);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.landing {
  width: 100%;
  overflow: visible;
  background: transparent;
}

@media (min-width: 1181px) {
  .landing {
    width: calc(100% / var(--landing-scale));
    margin-inline: auto;
    zoom: var(--landing-scale);
  }
}

.section-shell {
  position: relative;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding-block: 48px 12px;
}

.site-header {
  width: min(var(--content), calc(100% - 70px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: 8px;
  color: #111827;
  font-size: var(--type-sm);
  font-weight: 500;
}

.main-nav a {
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 14px 26px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  font-size: var(--type-md);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button--small {
  min-height: 38px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: var(--type-sm);
}

.button--white {
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 24px rgba(31, 45, 82, .08), inset 0 0 0 1px rgba(16, 24, 40, .05);
}

.button--orange {
  background: linear-gradient(180deg, #ff7a36 0%, #ff4d00 100%);
  box-shadow: var(--orange-shadow);
}

.button--blue {
  background: linear-gradient(180deg, #4d82ff 0%, #2f65f4 100%);
  box-shadow: var(--blue-shadow);
}

.button--outline-blue {
  color: #4c55ff;
  background: #fff;
  border: 2px solid #656bff;
  box-shadow: none;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.section-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 90, 18, .7);
}

.section-title {
  margin: 16px auto 0;
  color: var(--ink);
  font-size: var(--type-section);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: 0;
  text-align: center;
}

.section-title strong {
  color: var(--ink);
  font: inherit;
}

.section-lead {
  max-width: 650px;
  margin: 20px auto 0;
  color: #5e6880;
  font-size: var(--type-lead);
  font-weight: 400;
  line-height: var(--leading-body);
  text-align: center;
}

.hero {
  min-height: auto;
  padding-top: 14px;
  padding-bottom: 34px;
}

.hero::before,
.hero::after,
.how::after,
.pricing::after,
.cta-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  left: -40px;
  top: 150px;
  width: 300px;
  height: 170px;
  border-top: 1px solid rgba(255, 90, 18, .24);
  border-radius: 70% 40% 0 0;
  transform: rotate(-12deg);
}

.hero::after {
  right: -95px;
  top: 150px;
  width: 340px;
  height: 170px;
  border-top: 1px solid rgba(54, 109, 244, .15);
  border-radius: 70% 40% 0 0;
  transform: rotate(-9deg);
}

.hero__title {
  max-width: 775px;
  font-size: var(--type-hero);
  line-height: var(--leading-tight);
}

.hero__title strong {
  display: block;
}

.hero__lead {
  max-width: 610px;
}

.scenario-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 18px;
}

.scenario-card {
  position: relative;
  min-height: 360px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .09);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 49%, rgba(255, 255, 255, .9) 0 11%, transparent 13%),
    var(--card);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
}

.scenario-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.scenario-card--orange {
  border-color: rgba(255, 112, 79, .22);
  background: linear-gradient(105deg, #fff1ea 0%, #fff8f4 58%, rgba(255,255,255,.9) 100%);
}

.scenario-card--orange::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 112, 79, .16), transparent 28%),
    linear-gradient(160deg, rgba(255, 112, 79, .09), transparent 55%);
}

.scenario-card--blue {
  border-color: rgba(54, 132, 255, .22);
  background: linear-gradient(105deg, #eef6ff 0%, #f6fbff 62%, rgba(255,255,255,.9) 100%);
}

.scenario-card--blue::before {
  background:
    radial-gradient(circle at 82% 45%, rgba(54, 132, 255, .14), transparent 30%),
    linear-gradient(160deg, rgba(54, 132, 255, .09), transparent 58%);
}

.chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 31px;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: var(--type-xs);
  font-weight: 600;
  text-transform: none;
}

.chip svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.chip--orange {
  color: var(--ink);
  background: rgba(255, 112, 79, .11);
  border: 1px solid rgba(255, 112, 79, .16);
}

.chip--blue {
  color: var(--ink);
  background: rgba(54, 132, 255, .12);
  border: 1px solid rgba(54, 132, 255, .16);
}

.chip--orange svg {
  color: #ff704f;
}

.chip--blue svg {
  color: #2f7dff;
}

.scenario-card h2 {
  position: relative;
  z-index: 2;
  max-width: 292px;
  margin: 24px 0 0;
  font-size: var(--type-title);
  font-weight: 600;
  line-height: var(--leading-title);
}

.scenario-card p {
  position: relative;
  z-index: 2;
  width: 250px;
  margin: 18px 0 0;
  color: #344056;
  font-size: var(--type-md);
  font-weight: 400;
  line-height: var(--leading-body);
}

.scenario-card__button {
  position: relative;
  z-index: 3;
  width: 228px;
  min-height: 40px;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: var(--type-sm);
}

.scenario-card__image {
  position: absolute;
  z-index: 2;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.scenario-card__image--call {
  right: -22px;
  top: 68px;
  width: 300px;
}

.scenario-card__image--booking {
  right: -24px;
  top: 54px;
  width: 292px;
}

.scenario-progress {
  display: none;
}


.round-icon,
.benefit-icon,
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 32px rgba(31, 45, 82, .09), inset 0 0 0 1px rgba(16, 24, 40, .06);
}

.round-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.round-icon svg,
.benefit-icon svg,
.step-icon svg {
  width: 22px;
  height: 22px;
}

.round-icon--orange {
  color: var(--ink);
}

.round-icon--blue {
  color: var(--blue);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-height: 100px;
  margin-top: 29px;
  padding: 18px 27px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-benefits > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 0 24px;
}

.hero-benefits > div + div {
  border-left: 1px solid rgba(16, 24, 40, .1);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  grid-row: span 2;
}

.benefit-icon--orange {
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(255, 90, 18, .11), inset 0 0 0 1px rgba(255, 90, 18, .08);
}

.benefit-icon--violet {
  color: var(--violet);
  box-shadow: 0 16px 36px rgba(102, 86, 255, .11), inset 0 0 0 1px rgba(102, 86, 255, .08);
}

.benefit-icon--green {
  color: var(--green);
  box-shadow: 0 16px 36px rgba(33, 189, 99, .11), inset 0 0 0 1px rgba(33, 189, 99, .08);
}

.benefit-icon--blue {
  color: var(--blue);
  box-shadow: 0 16px 36px rgba(54, 109, 244, .11), inset 0 0 0 1px rgba(54, 109, 244, .08);
}

.hero-benefits strong {
  align-self: end;
  font-size: var(--type-md);
  font-weight: 600;
}

.hero-benefits p {
  align-self: start;
  margin: 5px 0 0;
  color: #59657c;
  font-size: var(--type-caption);
  font-weight: 400;
  line-height: 1.35;
}

.how {
  min-height: auto;
  padding-top: 58px;
}

.how::after {
  left: -170px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 109, 244, .07), transparent 66%);
}

.how .section-title {
  max-width: 920px;
  font-size: var(--type-section);
}

.how .section-lead {
  max-width: 650px;
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.step-card {
  position: relative;
  min-width: 0;
  min-height: 380px;
  padding: 24px 22px 0;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(16px);
}

.step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  color: rgba(255, 90, 18, .31);
  font-size: 26px;
  font-weight: 600;
}

.step-card img {
  width: 177px;
  max-width: 100%;
  height: 145px;
  object-fit: contain;
  margin: 26px auto 22px;
}

.step-card:nth-child(2) img {
  width: 166px;
}

.step-card:nth-child(3) img {
  width: 198px;
}

.step-card:nth-child(4) img {
  width: 198px;
}

.step-card h3 {
  margin: 0;
  font-size: var(--type-subtitle);
  font-weight: 600;
  line-height: var(--leading-title);
}

.step-card p {
  margin: 20px auto 0;
  color: #57637b;
  font-size: var(--type-md);
  font-weight: 400;
  line-height: var(--leading-body);
}

.step-icon {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  color: var(--ink);
  transform: translateX(-50%);
}

.step-arrows {
  position: absolute;
  top: 330px;
  left: 305px;
  right: 306px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.step-arrows span {
  position: relative;
  width: 55px;
  border-top: 2px dashed rgba(255, 90, 18, .72);
}

.step-arrows span::after {
  position: absolute;
  right: -1px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.sales-strip {
  position: relative;
  min-height: 214px;
  margin-top: 28px;
  margin-bottom: 42px;
  padding: 34px 34px 32px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 17px;
  background:
    radial-gradient(circle at 94% 76%, rgba(255, 90, 18, .13), transparent 24%),
    rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 95px 350px 1fr;
  gap: 34px;
  align-items: start;
  overflow: visible;
}

.sales-strip > img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.sales-strip__copy {
  padding-right: 32px;
  border-right: 1px solid rgba(16, 24, 40, .1);
}

.sales-strip__copy h3 {
  margin: 0;
  font-size: var(--type-title);
  line-height: var(--leading-title);
  font-weight: 600;
}

.sales-strip__copy strong {
  color: var(--ink);
}

.sales-strip__copy p {
  margin: 18px 0 0;
  color: #56627a;
  font-size: var(--type-sm);
  font-weight: 400;
  line-height: 1.5;
}

.sales-strip__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 2px;
  text-align: center;
}

.sales-strip__stats strong {
  display: inline-flex;
  min-width: 112px;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 112, 67, .13);
  color: var(--ink);
  font-size: var(--type-title);
  font-weight: 600;
  line-height: 1;
}

.sales-strip__stats div:nth-child(2) strong {
  background: rgba(102, 86, 255, .13);
  color: #4d46ff;
}

.sales-strip__stats div:nth-child(3) strong {
  background: rgba(33, 189, 99, .13);
  color: #16a650;
}

.sales-strip__stats span {
  display: block;
  margin-top: 16px;
  color: #2f3b54;
  font-size: var(--type-caption);
  font-weight: 400;
  line-height: 1.35;
}

.safety-badge {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(31,45,82,.1);
  color: #1e293b;
  font-size: var(--type-md);
  font-weight: 500;
  white-space: nowrap;
}

.safety-badge svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.safety-badge .safety-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  opacity: .55;
}

.reviews {
  min-height: auto;
  padding-top: 58px;
}

.reviews .section-title {
  max-width: 640px;
  font-size: var(--type-section);
  font-weight: 600;
}

.reviews .section-title strong {
  color: var(--ink);
}

.reviews__quote {
  position: absolute;
  right: 10px;
  top: 70px;
  width: 250px;
  opacity: .95;
  pointer-events: none;
}

.review-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.review-grid.is-changing .review-card {
  animation: reviewFade .2s ease;
}

.review-card.is-hidden {
  display: none;
}

@keyframes reviewFade {
  from {
    opacity: .55;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  height: 305px;
  padding: 24px 18px 18px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 17px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}

.review-card__head {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
}

.review-card__head img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.review-card__head strong {
  display: block;
  font-size: var(--type-caption);
  font-weight: 600;
}

.review-card__head span {
  display: block;
  margin-top: 4px;
  color: #5f687b;
  font-size: var(--type-micro);
  font-weight: 400;
}

.review-card__head b {
  color: #111827;
  font-size: var(--type-md);
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.review-card__head small {
  color: #7d8698;
  font-size: var(--type-micro);
  font-weight: 400;
  letter-spacing: .12em;
}

.stars {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: .1em;
}

.stars span {
  color: var(--ink);
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: 0;
}

.review-card p {
  margin: 14px 0 0;
  min-height: 74px;
  color: #1e293b;
  font-size: var(--type-caption);
  font-weight: 400;
  line-height: var(--leading-body);
}

.review-result {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-top: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 90, 18, .16);
  border-radius: 9px;
  color: #1f2937;
  font-size: var(--type-xs);
  font-weight: 600;
  white-space: nowrap;
}

.review-result svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.review-result strong {
  color: var(--ink);
}

.slider-arrow {
  position: absolute;
  top: 354px;
  z-index: 30;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  border: 1px solid rgba(16, 24, 40, .06);
  background: #fff;
  box-shadow: 0 15px 34px rgba(31, 45, 82, .13);
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.slider-arrow:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 45, 82, .14);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
  margin: 0;
  stroke-width: 3;
}

.slider-arrow--left {
  left: -22px;
}

.slider-arrow--right {
  right: -22px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.slider-dots button,
.slider-dots span {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6d9df;
  font-size: 0;
}

.slider-dots .active,
.slider-dots button.is-active {
  background: var(--orange);
}

.trust-strip {
  display: grid;
  grid-template-columns: 270px 1fr 220px;
  gap: 30px;
  align-items: center;
  min-height: 107px;
  margin-top: 27px;
  padding: 20px 25px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 17px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.trust-strip__count {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-strip__count p {
  margin: 0;
  color: #5b6579;
  font-size: var(--type-sm);
  line-height: 1.5;
  font-weight: 400;
}

.trust-strip__count strong {
  color: var(--ink);
  font-weight: 600;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  color: #8c94a5;
  font-size: var(--type-lead);
  font-weight: 600;
  filter: grayscale(1);
  opacity: .82;
}

.trust-logos b {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.trust-logos small {
  font-size: var(--type-micro);
  letter-spacing: .12em;
  font-weight: 500;
}

.trust-rating {
  padding-left: 28px;
  border-left: 1px solid rgba(16, 24, 40, .11);
}

.trust-rating span {
  display: block;
  color: var(--ink);
  font-size: var(--type-lead);
  font-weight: 600;
}

.trust-rating span strong {
  font-size: var(--type-title);
}

.trust-rating p {
  margin: 7px 0 0;
  color: #5b6579;
  font-size: var(--type-caption);
  font-weight: 400;
  line-height: 1.35;
}

.pricing {
  min-height: auto;
  padding-top: 58px;
  padding-bottom: 28px;
}

.pricing::after {
  right: -210px;
  top: -42px;
  width: 360px;
  height: 190px;
  border-top: 1px solid rgba(255, 90, 18, .18);
  border-radius: 70% 40% 0 0;
  transform: rotate(-13deg);
}

.pricing .section-title {
  max-width: 980px;
  font-size: var(--type-section);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 520px;
  min-height: 0;
  padding: 30px 26px 20px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: rgba(255, 90, 18, .75);
  background:
    radial-gradient(circle at 71% 20%, rgba(255, 90, 18, .11), transparent 23%),
    rgba(255,255,255,.84);
}

.plan-art {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.plan-art--gift {
  top: 27px;
  right: 33px;
  width: 102px;
}

.plan-art--phone {
  top: 25px;
  right: 28px;
  width: 118px;
}

.plan-art--chart {
  top: 27px;
  right: 25px;
  width: 132px;
}

.price-card h3 {
  max-width: 190px;
  margin: 0;
  font-size: var(--type-title);
  font-weight: 600;
}

.price {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: var(--type-md);
  font-weight: 600;
}

.price strong {
  font-size: 30px;
  font-weight: 600;
}

.price--orange strong {
  color: var(--ink);
}

.plan-copy {
  max-width: 245px;
  min-height: 35px;
  margin: 10px 0 0;
  color: #5b6579;
  font-size: var(--type-sm);
  font-weight: 400;
  line-height: var(--leading-body);
}

.feature-list {
  display: grid;
  flex: 1;
  gap: 10px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  color: #2f3b54;
  font-size: var(--type-caption);
  font-weight: 400;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 19px;
  line-height: 1.3;
}

.feature-icon {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.feature-list .no {
  color: #8b94a5;
}

.limit-box {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 55px;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 10px;
  background: rgba(255,255,255,.86);
}

.limit-box .round-icon {
  width: 38px;
  height: 38px;
}

.limit-box p {
  margin: 0;
  color: #747d8e;
  font-size: var(--type-xs);
  font-weight: 400;
  line-height: 1.25;
}

.limit-box strong {
  color: var(--ink);
  font-size: var(--type-md);
  font-weight: 600;
}

.price-card .button {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 12px;
  border-radius: 9px;
}

.price-card__cta {
  position: static;
  margin-top: auto;
}

.price-card .price-card__cta {
  width: 100%;
  margin-top: 0;
}

.price-card small {
  position: absolute;
  left: 50%;
  bottom: -31px;
  color: #737d90;
  font-size: var(--type-xs);
  font-weight: 400;
  white-space: nowrap;
  transform: translateX(-50%);
}

.price-card small span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 12px 1px;
  border-radius: 50%;
  background: #7d8798;
  opacity: .7;
}

.faq {
  min-height: auto;
  padding-top: 58px;
  padding-bottom: 24px;
}

.faq .section-title {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.faq .section-lead {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.faq-layout {
  display: grid;
  grid-template-columns: 425px 1fr;
  gap: 9px;
  margin-top: 21px;
}

.support-card,
.faq-card {
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 17px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.support-card {
  min-height: 527px;
  padding: 29px 42px 26px;
}

.support-card img {
  width: 345px;
  height: 255px;
  object-fit: contain;
  margin: 0 auto;
}

.support-card h3 {
  margin: 24px 0 0;
  font-size: var(--type-title);
  font-weight: 600;
}

.support-card p {
  max-width: 270px;
  margin: 13px 0 0;
  color: #5b6579;
  font-size: var(--type-md);
  font-weight: 400;
  line-height: var(--leading-body);
}

.button--support {
  min-height: 60px;
  margin-top: 22px;
  padding: 16px 24px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255, 90, 18, .13);
  box-shadow: 0 15px 34px rgba(255, 90, 18, .08);
}

.support-card small {
  display: block;
  margin-top: 19px;
  color: #6c7484;
  font-size: var(--type-xs);
  font-weight: 400;
}

.faq-card {
  min-height: 527px;
  padding: 20px 18px;
}

.faq-item {
  border: 1px solid rgba(16, 24, 40, .07);
  border-radius: 13px;
  background: rgba(255,255,255,.84);
  overflow: hidden;
}

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

.faq-item.is-open {
  border-color: rgba(255, 90, 18, .25);
  box-shadow: 0 12px 34px rgba(255, 90, 18, .05);
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: var(--type-base);
  font-weight: 500;
}

.faq-item button svg {
  width: 20px;
  height: 20px;
}

.faq-item__answer {
  display: none;
  align-items: center;
  gap: 28px;
  padding: 0 28px 18px;
}

.faq-item.is-open .faq-item__answer {
  display: flex;
}

.faq-item__answer p {
  flex: 1;
  margin: 0;
  color: #4f5c73;
  font-size: var(--type-sm);
  font-weight: 400;
  line-height: var(--leading-body);
}

.faq-item__answer img {
  width: 180px;
  height: 70px;
  object-fit: contain;
}

.cta {
  width: min(var(--content), calc(100% - 40px));
  min-height: auto;
  margin: 44px auto 0;
  padding: 0;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: center;
  column-gap: 36px;
  width: 100%;
  height: auto;
  min-height: 560px;
  margin: 0 auto;
  padding: 44px 46px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 89% 34%, rgba(255, 90, 18, .12), transparent 18%),
    rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-card::after {
  right: 12px;
  top: 84px;
  width: 240px;
  height: 155px;
  border-top: 1px solid rgba(255, 90, 18, .25);
  border-radius: 70% 40% 0 0;
  transform: rotate(14deg);
}

.cta-content {
  position: relative;
  z-index: 2;
  width: auto;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(30px, 2.7vw, 36px);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: 0;
}

.cta-content h2 strong {
  color: var(--ink);
}

.cta-content p {
  max-width: 455px;
  margin: 19px 0 0;
  color: #5b6579;
  font-size: var(--type-md);
  font-weight: 400;
  line-height: 1.5;
}

.cta-content ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #303b52;
  font-size: var(--type-sm);
  font-weight: 400;
}

.cta-content li {
  position: relative;
  padding-left: 27px;
}

.cta-content li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--ink);
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 31px;
}

.button--demo {
  min-height: 55px;
  padding: 10px 20px;
  color: #182236;
  background: rgba(255,255,255,.9);
  box-shadow: 0 15px 34px rgba(31, 45, 82, .09);
}

.button--demo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 90, 18, .1);
}

.button--demo span svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.button--demo b {
  display: grid;
  gap: 3px;
  font-size: var(--type-md);
  text-align: left;
}

.button--demo small {
  color: #667085;
  font-size: var(--type-xs);
  font-weight: 400;
}

.cta-notes {
  display: flex;
  gap: 42px;
  margin-top: 34px;
  color: #6a7486;
  font-size: var(--type-caption);
  font-weight: 400;
  line-height: 1.35;
}

.cta-notes span {
  display: flex;
  align-items: center;
  gap: 13px;
}

.cta-notes svg {
  width: 25px;
  height: 25px;
  color: var(--ink);
}

.cta-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.site-footer {
  width: min(var(--content), calc(100% - 40px));
  min-height: 435px;
  margin: 22px auto 10px;
  padding: 38px 42px 27px;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.footer-top {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) 280px;
  gap: 34px;
  padding-bottom: 29px;
  border-bottom: 1px solid rgba(16, 24, 40, .1);
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
}

.footer-logo {
  width: 128px;
  height: auto;
  display: block;
}

.footer-mark {
  color: var(--ink);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  transform: skewX(-12deg);
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 278px;
  color: #5d6679;
  font-size: var(--type-md);
  font-weight: 400;
  line-height: var(--leading-body);
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.socials a {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 7px;
  background: rgba(255,255,255,.82);
  color: #111827;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.footer-nav h3,
.footer-contact h3,
.footer-bottom h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin-top: 12px;
  color: #46536b;
  font-size: var(--type-xs);
  font-weight: 400;
}

.footer-contact {
  padding-left: 32px;
  border-left: 1px solid rgba(16, 24, 40, .1);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 17px;
  color: #3f4a61;
  font-size: var(--type-md);
  font-weight: 500;
}

.footer-contact svg {
  width: 23px;
  height: 23px;
  color: var(--ink);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 330px minmax(220px, 1fr) minmax(245px, 1fr) 210px;
  gap: 22px;
  padding-top: 24px;
  color: #626c80;
  font-size: var(--type-xs);
  font-weight: 400;
  line-height: var(--leading-body);
}

.footer-bottom p {
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid rgba(16, 24, 40, .1);
}

.footer-bottom a {
  color: #626c80;
}

.footer-payment-button {
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #626c80;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.footer-payment-button:hover {
  color: var(--ink);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.legal-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, .55);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(940px, 100%);
  max-height: min(86vh, 840px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,.28);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.modal-close svg { width: 100%; height: 100%; display: block; }

.modal-card h2 {
  margin: 0 50px 12px 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 40px);
  line-height: var(--leading-tight);
  letter-spacing: 0;
}

.modal-lead {
  max-width: 740px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.5;
}

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

.modal-section {
  padding: 20px;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 24px;
  background: #fff;
}

.modal-section h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--type-subtitle);
  letter-spacing: 0;
}

.modal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #626c80;
  line-height: var(--leading-body);
  list-style: none;
}

.modal-section b {
  color: var(--ink);
}

.modal-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.modal-docs a {
  padding: 10px 13px;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 999px;
  color: var(--ink);
  font-size: var(--type-caption);
  font-weight: 500;
}

.modal-note {
  margin: 18px 0 0;
  color: #777;
  font-size: var(--type-caption);
  line-height: var(--leading-body);
}

.lock-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #4e4e4e;
  font-weight: 500;
}

.lock-line::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px #fff0e9;
  content: "";
}

.payments {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 7px;
  overflow: visible;
}

.payment-card {
  flex: 0 0 63px;
  height: 28px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 5px;
  background: rgba(255,255,255,.85);
}

.payment-card img {
  display: block;
  width: 49px;
  height: 16px;
  object-fit: contain;
}

.payment-card svg {
  display: block;
}


.ssl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

.ssl svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .main-nav {
    gap: 20px;
  }

  .scenario-card__image--call,
  .scenario-card__image--booking {
    opacity: .55;
  }

  .hero-benefits,
  .steps-grid,
  .review-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-benefits > div:nth-child(3) {
    border-left: 0;
  }

  .step-arrows {
    display: none;
  }

  .sales-strip,
  .trust-strip,
  .faq-layout,
  .footer-top,
  .footer-bottom,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .sales-strip__copy,
  .footer-contact,
  .footer-bottom p {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
  }

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

  .cta-visual {
    justify-self: center;
    max-width: 460px;
    margin-top: 6px;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .landing {
    background: #fbfcff;
  }

  .site-header {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .button--small {
    padding-inline: 14px;
    font-size: var(--type-xs);
  }

  .header-actions .button--white {
    display: none;
  }

  .section-shell {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 36px 0;
  }

  .section-title,
  .pricing .section-title,
  .how .section-title,
  .reviews .section-title {
    font-size: 30px;
  }

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

  .scenario-grid,
  .hero-benefits,
  .steps-grid,
  .review-grid,
  .pricing-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  /* Сценарии — мобильный слайдер (свайп между карточками) */
  .scenario-grid {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .scenario-grid::-webkit-scrollbar { display: none; }

  .scenario-card {
    flex: 0 0 88%;
    min-height: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transform: scale(.92);
    transform-origin: center top;
    opacity: .72;
    transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .4s ease;
  }

  .scenario-card.is-active {
    transform: scale(1);
    opacity: 1;
  }

  .scenario-card p {
    width: auto;
    max-width: none;
  }

  /* иллюстрация и шаги — в поток: картинка меньше, карточки равной высоты */
  .scenario-card__image--call,
  .scenario-card__image--booking {
    position: static;
    width: min(200px, 60%);
    margin: 16px auto 6px;
    top: auto;
    left: auto;
    right: auto;
    opacity: 1;
    transform: none;
  }


  /* прогресс-бар слайдера */
  .scenario-progress {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 18px auto 0;
  }
  .scenario-progress i {
    width: 22px;
    height: 4px;
    border-radius: 999px;
    background: rgba(16, 24, 40, .14);
    transition: width .2s ease, background .2s ease;
  }
  .scenario-progress i.active {
    width: 30px;
    background: var(--orange);
  }

  .hero-benefits > div {
    border-left: 0 !important;
    padding: 14px 0;
  }

  .sales-strip {
    padding-bottom: 84px;
  }

  .sales-strip__stats {
    grid-template-columns: 1fr;
  }

  .safety-badge {
    max-width: calc(100% - 24px);
    white-space: normal;
    text-align: center;
  }

  .reviews__quote,
  .slider-arrow {
    display: none;
  }

  .trust-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 24px;
  }

  .trust-rating span,
  .trust-rating p {
    width: auto;
    white-space: normal;
  }

  .price-card small {
    position: static;
    display: block;
    margin-top: 18px;
    transform: none;
    white-space: normal;
    text-align: center;
  }

  .price-card__cta {
    position: static;
    width: 100%;
  }

  .faq-layout {
    gap: 16px;
  }

  .support-card {
    padding: 24px;
  }

  .support-card img {
    width: 100%;
    height: auto;
  }

  .faq-item__answer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    min-height: auto;
    padding: 14px;
  }

  .cta-card {
    min-height: auto;
    padding: 28px 22px 330px;
  }

  .cta-content {
    width: auto;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-actions,
  .cta-notes {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-visual {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 20px;
    width: 100%;
    max-width: 420px;
    opacity: 1;
    transform: translateX(-50%);
  }

  .site-footer {
    width: calc(100% - 18px);
    padding: 32px 22px;
  }

  .modal-card {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .footer-top,
  .footer-bottom {
    gap: 28px;
  }

  .hero__title {
    max-width: 410px;
    font-size: 32px;
    line-height: var(--leading-tight);
  }

  .hero__title strong {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .scenario-card {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .scenario-card h2 {
    max-width: none;
    margin-top: 24px;
    min-height: auto;
    font-size: 21px;
  }

  .scenario-card p {
    width: auto;
    max-width: none;
    margin-top: 18px;
  }

  .scenario-card__button {
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
  }

  .scenario-card__image,
  .scenario-card__image--call,
  .scenario-card__image--booking {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    display: block;
    width: min(190px, 56%);
    margin: 14px auto 4px;
    opacity: 1;
    transform: none;
  }


  .safety-badge {
    min-height: 72px;
    padding: 0 24px;
    gap: 12px;
    font-size: var(--type-base);
  }

  .safety-badge svg {
    width: 34px;
    height: 34px;
  }

  .safety-badge .safety-dot,
  .safety-badge .safety-item:not(:first-of-type) {
    display: none;
  }

  .price-card {
    height: auto;
    min-height: auto;
    padding: 26px 24px 34px;
  }

  .price-card .price-card__cta {
    width: 100%;
    margin-top: 26px;
  }

  .feature-list {
    gap: 13px;
  }

  .faq-card {
    order: 1;
  }

  .support-card {
    order: 2;
  }

  .cta {
    width: calc(100% - 28px);
    min-height: auto;
    margin: 0 auto;
    padding: 36px 0;
  }

  .cta-card {
    min-height: auto;
    height: auto;
    padding: 28px 24px 34px;
  }

  .cta-content p,
  .cta-content ul {
    max-width: none;
  }

  .cta-visual {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: block;
    width: min(430px, 108%);
    height: auto;
    margin: 24px auto 0;
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .cta-actions {
    width: 100%;
    margin-top: 28px;
  }

  .cta-actions .button {
    width: 100%;
  }

}


/* Раздел «Интеграции» */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.integration-card {
  min-width: 0;
  padding: 30px 30px 32px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.integration-brand {
  display: flex;
  align-items: center;
  width: 200px;
  max-width: 100%;
  height: 52px;
}

.integration-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.integration-brand--amo {
  position: relative;
  overflow: hidden;
}

.integration-brand--amo img {
  position: absolute;
  top: -114px;
  left: -47px;
  width: 284px;
  height: 284px;
  max-width: none;
  max-height: none;
  object-fit: fill;
}

.integration-card[data-crm="bitrix"] .integration-brand img {
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.integration-card h3 {
  margin: 16px 0 0;
  font-size: var(--type-subtitle);
  font-weight: 600;
  line-height: var(--leading-title);
}

.integration-card p {
  margin: 12px 0 0;
  color: #57637b;
  font-size: var(--type-md);
  font-weight: 400;
  line-height: var(--leading-body);
}

@media (max-width: 760px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}
