:root {
  --color-violet: #5d1b9f;
  --color-violet-2: #5f19a0;
  --color-magenta: #a127ac;
  --color-text: #333333;
  --color-muted: #666666;
  --color-line: #efeaf8;
  --color-soft: #f5f5f5;
  --color-icon-bg: rgba(95, 25, 160, 0.15);
  --gradient-primary: linear-gradient(180deg, var(--color-violet) 0%, var(--color-magenta) 100%);
  --gradient-row: linear-gradient(90deg, #c9b9ff 0%, #ffc2ff 100%);
  --page-max: 1296px;
  font-family: "Circe", "Inter", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--color-text);
  font-family: "Circe", "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner,
.hero-inner {
  width: min(var(--page-max), calc(100% - 144px));
  margin: 0 auto;
}

.site-header {
  height: 116px;
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 84px 0 42px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo-ps {
  width: 103px;
  height: 78px;
  object-fit: contain;
}

.brand-plus {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-left: 19px;
  margin-right: 5px;
  color: var(--color-violet);
}

.brand-plus img {
  width: 37px;
  height: 37px;
  transform: rotate(45deg);
}

.brand-logo-unistream {
  width: 158px;
  height: 83px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 160ms ease, filter 160ms ease;
}

.button:hover {
  filter: brightness(1.04);
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.services-toggle:focus-visible,
input:focus-visible,
a:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(95, 25, 160, 0.35);
  outline-offset: 4px;
}

.button-header {
  width: 234px;
  height: 85px;
  font-size: 26px;
  line-height: 1.2;
}

.hero {
  min-height: 739px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(360px, 1fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: start;
  padding-top: 88px;
}

.hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  margin: 0 0 19px 3px;
  padding: 8px 19px;
  border-radius: 10px;
  background: rgba(161, 39, 172, 0.3);
  color: var(--color-violet);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 {
  width: min(672px, 100%);
  margin: 0;
  color: var(--color-text);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
}

.hero-title-accent,
.hero-title-rest {
  display: block;
}

.hero-title-accent {
  color: var(--color-violet);
  white-space: normal;
}

.hero-title-rest {
  color: var(--color-text);
  white-space: normal;
}

.hero-text {
  width: min(618px, 100%);
  margin: 25px 0 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.53;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  width: 610px;
  min-height: 186px;
  margin: 38px 0 0;
  padding: 28px 32px;
  list-style: none;
  border-radius: 24px;
  background: var(--color-soft);
}

.hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e7c7ef;
}

.feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero-features strong {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-visual {
  width: min(100%, 592px);
  height: auto;
  aspect-ratio: 1;
  margin-top: -24px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  padding-top: 27px;
  padding-bottom: 37px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h2 {
  margin: 0;
  color: var(--color-violet);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 37px;
}

.service-card {
  display: grid;
  grid-template-columns: 73px 1fr;
  gap: 20px;
  height: 200px;
  padding: 19px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #ffffff;
}

.service-card > div {
  padding-top: 27px;
}

.service-icon {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 73px;
  min-height: 160px;
  border-radius: 15px;
  background: var(--color-icon-bg);
}

.service-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.service-card h3 span {
  color: var(--color-violet);
}

.service-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.service-card:nth-child(3) > div,
.service-card:nth-child(6) > div {
  padding-top: 10px;
}

.service-card:nth-child(3) p,
.service-card:nth-child(6) p {
  font-size: 14px;
  line-height: 1.33;
}

.services-toggle {
  display: none;
}

.steps {
  padding-top: 36px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 301px;
  padding: 16px 22px 24px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-soft);
  text-align: center;
}

.step-number {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #eee1f8;
  color: var(--color-violet);
  font-family: "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.step-card img {
  width: 199px;
  height: 149px;
  margin: -6px auto 5px;
  object-fit: contain;
}

.step-card h3 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}

.cta {
  padding: 82px 0 0;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 338px 1fr 338px;
  align-items: start;
  min-height: 149px;
  padding: 21px 28px;
  border-radius: 28px;
  background: var(--gradient-row);
}

.cta-copy h2 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.cta-copy p {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.2;
}

.button-cta {
  justify-self: center;
  width: 372px;
  height: 85px;
  font-size: 26px;
  line-height: 1.2;
}

.cta-note {
  position: absolute;
  top: 119px;
  left: 50%;
  width: 267px;
  margin: 0;
  transform: translateX(-50%);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.cta-copy-right {
  text-align: right;
}

.benefits {
  width: min(var(--page-max), calc(100% - 144px));
  margin: 70px auto 57px;
}

.benefits ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 34px;
  align-items: center;
}

.benefits span {
  position: relative;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: #d9d9d9;
}

.benefits img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.benefits h3 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
}

.benefits p {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 175px 230px 320px clamp(360px, 27vw, 488px);
  column-gap: 50px;
  justify-content: space-between;
  min-height: 575px;
  margin: 0 15px;
  padding: 56px 52px 58px;
  overflow: hidden;
  border-radius: 38px 38px 0 0;
  background: linear-gradient(105deg, #5d1b9f 0%, #871cb0 48%, #bd27b6 100%);
  color: #ffffff;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.footer-logo img {
  width: 122px;
  height: auto;
  margin: 6px 0;
  object-fit: contain;
  filter: invert(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.15;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin: 0;
  font-style: normal;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-contacts svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.footer-form {
  display: flex;
  flex-direction: column;
  justify-self: end;
  width: min(100%, 488px);
  gap: 22px;
  padding: 25px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--color-text);
}

.footer-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
  line-height: 1.1;
}

.footer-form-message {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(95, 25, 160, 0.1);
  color: var(--color-violet);
  font-size: 16px;
}

.footer-form-message.is-error {
  background: #fee4e2;
  color: #9f1f17;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid #eadff7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 70px rgba(43, 25, 65, 0.18);
}

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

.cookie-banner__text {
  color: var(--color-text);
  font-size: 16px;
}

.cookie-banner__text a {
  color: var(--color-violet);
  font-weight: 700;
}

.cookie-banner__button {
  min-width: 128px;
  min-height: 48px;
  border-radius: 14px;
}

.order-shell,
.legal-page {
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f1fb 100%);
}

.order-logo {
  width: min(100%, 920px);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 28px;
  color: var(--color-violet);
  font-size: 22px;
  font-weight: 700;
}

.order-logo img {
  width: 78px;
  height: auto;
}

.order-card,
.legal-document {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #efe4fb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(93, 27, 159, 0.08);
}

.order-card h1 {
  margin: 0 0 16px;
  color: var(--color-violet);
  font-size: 42px;
  line-height: 1.1;
}

.order-card p {
  margin: 0 0 22px;
  font-size: 20px;
}

.order-form {
  display: grid;
  gap: 18px;
}

.order-form label {
  display: grid;
  gap: 9px;
  font-size: 18px;
  font-weight: 700;
}

.order-form input,
.order-form select {
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid #e4d8f2;
  border-radius: 16px;
  background: #f5effa;
  color: var(--color-text);
}

.order-form select {
  appearance: none;
  padding-right: 46px;
  background:
    linear-gradient(45deg, transparent 50%, var(--color-violet) 50%) calc(100% - 24px) 50% / 8px 8px no-repeat,
    linear-gradient(135deg, var(--color-violet) 50%, transparent 50%) calc(100% - 18px) 50% / 8px 8px no-repeat,
    #f5effa;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fee4e2;
  color: #9f1f17;
}

.order-summary {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.order-summary div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f8f4fc;
}

.order-summary dt {
  color: var(--color-muted);
}

.order-summary dd {
  margin: 0;
  font-weight: 700;
}

.order-payment-check {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #e8d9f6;
  border-radius: 18px;
  background: #fbf8ff;
  color: var(--color-text);
}

.order-payment-check__spinner {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 4px solid #eadcf7;
  border-top-color: var(--color-violet);
  border-radius: 50%;
  animation: payment-spin 0.9s linear infinite;
}

.order-payment-check strong {
  display: block;
  color: var(--color-violet);
  font-size: 20px;
}

.order-payment-check p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.35;
}

.order-payment-check p.is-error {
  color: #9f1f17;
}

@keyframes payment-spin {
  to {
    transform: rotate(360deg);
  }
}

.legal-document {
  color: #2f2f35;
}

.legal-document h1 {
  margin: 0 0 22px;
  color: var(--color-violet);
  font-size: 40px;
  line-height: 1.15;
}

.legal-document .legal-lead {
  color: #4a4256;
  font-weight: 700;
}

.legal-document h2 {
  margin: 30px 0 14px;
  color: var(--color-violet);
  font-size: 26px;
}

.legal-document h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.legal-document p {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.65;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
}

.legal-document table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.legal-document td {
  padding: 12px;
  border: 1px solid #e3d5f2;
  vertical-align: top;
}

.footer-form input[type="text"],
.footer-form input[type="tel"] {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 12px;
  background: rgba(93, 27, 159, 0.2);
  color: var(--color-text);
  padding: 15px 22px;
  font-size: 20px;
}

.footer-form input::placeholder {
  color: rgba(51, 51, 51, 0.58);
  opacity: 1;
}

.footer-consent {
  display: grid !important;
  grid-template-columns: 28px 1fr;
  gap: 15px !important;
  align-items: start;
  margin-top: 2px;
  font-size: 20px !important;
  line-height: 1.12 !important;
}

.footer-consent input {
  width: 28px;
  height: 28px;
  margin: 0;
  accent-color: var(--color-violet);
  background: #ffffff;
}

.footer-consent a {
  text-decoration: none;
}

.button-submit {
  width: 100%;
  height: 62px;
  margin-top: 0;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-meta {
  position: absolute;
  left: clamp(270px, 18vw, 360px);
  right: calc(clamp(360px, 27vw, 488px) + 84px);
  bottom: 103px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.2;
  white-space: normal;
}

.footer-meta span {
  white-space: nowrap;
}

.footer-dev {
  position: absolute;
  left: clamp(270px, 18vw, 360px);
  bottom: 61px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 1360px) {
  .section-inner,
  .hero-inner {
    width: min(var(--page-max), calc(100% - 64px));
  }

  .benefits {
    width: min(var(--page-max), calc(100% - 64px));
  }

  .benefits ul {
    gap: 32px;
  }

  .benefits li {
    grid-template-columns: 104px 1fr;
    gap: 22px;
  }

  .benefits span {
    width: 104px;
    height: 104px;
  }

  .benefits h3 {
    font-size: 25px;
  }

  .benefits p {
    font-size: 18px;
  }

  .site-footer {
    grid-template-columns: 165px 205px 275px minmax(330px, 1fr);
    column-gap: 30px;
  }

  .footer-meta {
    left: 220px;
    right: 500px;
    gap: 20px;
    font-size: 18px;
  }

  .footer-dev {
    left: 220px;
    font-size: 18px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 44vw);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(46px, 4vw, 56px);
  }

  .hero-title-accent,
  .hero-title-rest {
    white-space: normal;
  }

  .hero-features {
    width: 100%;
    gap: 20px;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .cta-copy-right {
    text-align: center;
  }

  .cta-note {
    position: static;
    width: auto;
    transform: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
    min-height: auto;
  }

  .footer-form {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 520px;
  }

  .footer-meta,
  .footer-dev {
    position: static;
    grid-column: 1 / -1;
  }

  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 34px;
  }

  .footer-meta span {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .button-header {
    width: 188px;
    height: 68px;
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    width: 100%;
    max-width: 760px;
    font-size: clamp(40px, 6vw, 52px);
  }

  .hero-title-accent,
  .hero-title-rest {
    white-space: normal;
  }

  .hero-visual {
    width: min(592px, 100%);
    margin: 0 auto;
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .cta-copy-right {
    text-align: center;
  }

  .cta-note {
    position: static;
    width: auto;
    transform: none;
  }

  .benefits ul {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefits li {
    max-width: 640px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
    min-height: auto;
  }

  .footer-form {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-meta,
  .footer-dev {
    position: static;
    grid-column: 1 / -1;
  }

  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 34px;
  }

  .footer-meta span {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .section-inner,
  .hero-inner,
  .header-inner {
    width: min(100% - 40px, 335px);
    margin: 0 auto;
  }

  .site-header {
    height: 128px;
  }

  .header-inner {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
  }

  .brand-lockup {
    gap: 5px;
    width: 335px;
  }

  .brand-logo-ps {
    width: 75px;
    height: 52px;
  }

  .brand-plus {
    width: 55px;
    height: 55px;
    margin: 0;
  }

  .brand-plus img {
    width: 37px;
    height: 37px;
  }

  .brand-logo-unistream {
    width: 102px;
    height: 53px;
  }

  .button-header {
    display: none;
  }

  .hero {
    min-height: 637px;
    padding-bottom: 0;
  }

  .hero-inner {
    display: block;
    padding-top: 7px;
  }

  .hero-badge,
  .hero-text,
  .hero-features {
    display: none;
  }

  .hero h1 {
    width: 335px;
    font-size: 36px;
    line-height: 1.15;
  }

  .hero-title-accent {
    margin-bottom: 14px;
    white-space: normal;
  }

  .hero-title-rest {
    white-space: normal;
  }

  .services h2 {
    margin-left: 6px;
  }

  .hero-visual {
    width: 375px;
    height: 375px;
    margin: 43px 0 0 50%;
    transform: translateX(-50%);
  }

  h2 {
    font-size: 36px;
  }

  .services {
    padding-top: 0;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .service-card {
    grid-template-columns: 73px 1fr;
    gap: 20px;
    min-height: 200px;
    width: 319px;
    height: auto;
    margin: 0 auto;
    padding: 19px 14px 20px 20px;
  }

  .service-card > div,
  .service-card:nth-child(3) > div,
  .service-card:nth-child(6) > div {
    padding-top: 0;
  }

  .service-card h3 {
    margin: 2px 0 7px;
    font-size: 20px;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .service-card:nth-child(3) h3,
  .service-card:nth-child(6) h3,
  .service-card:nth-child(8) h3 {
    margin-top: 0;
  }

  .service-card:nth-child(3) p,
  .service-card:nth-child(6) p,
  .service-card:nth-child(8) p {
    font-size: 15px;
    line-height: 1.38;
  }

  .services:not(.is-expanded) .service-card.is-extra {
    display: none;
  }

  .services-toggle {
    display: grid;
    place-items: center;
    width: 319px;
    height: 70px;
    margin: 20px auto 0;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: #ffffff;
    color: var(--color-violet);
    cursor: pointer;
  }

  .toggle-circle {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eee1f8;
  }

  .toggle-circle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  .services.is-expanded .toggle-circle svg {
    transform: rotate(180deg);
  }

  .services.is-expanded .services-toggle .sr-only {
    position: static;
    width: auto;
    height: auto;
    margin-left: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .services.is-expanded .services-toggle {
    display: flex;
    justify-content: flex-start;
    gap: 36px;
    padding: 0 22px;
    color: var(--color-violet);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .steps {
    padding-top: 44px;
  }

  .steps .section-inner {
    width: min(100% - 95px, 280px);
  }

  .steps h2 {
    width: 288px;
    margin-left: -6px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 28px;
  }

  .step-card {
    min-height: 301px;
    padding: 16px 22px 24px;
  }

  .step-card img {
    margin-top: -7px;
  }

  .cta {
    padding-top: 37px;
  }

  .cta .section-inner {
    width: min(100% - 25px, 350px);
  }

  .cta-panel {
    display: block;
    min-height: 471px;
    padding: 37px 28px 42px;
  }

  .cta-copy h2 {
    margin-bottom: 25px;
    font-size: 32px;
  }

  .cta-copy p {
    font-size: 20px;
    line-height: 1.2;
  }

  .button-cta {
    width: 100%;
    height: 85px;
    margin-top: 44px;
    font-size: 26px;
  }

  .cta-note {
    margin-top: 9px;
    font-size: 16px;
  }

  .cta-copy-right {
    margin-top: 25px;
    text-align: right;
  }

  .benefits {
    display: block;
    width: min(100% - 36px, 363px);
    margin: 33px auto 0;
  }

  .benefits ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .benefits li {
    display: grid;
    grid-template-columns: 114px 1fr;
    gap: 8px;
    align-items: center;
    min-height: 112px;
    max-width: none;
  }

  .benefits span {
    position: relative;
    display: grid;
    place-items: center;
    width: 114px;
    height: 114px;
    background: transparent;
  }

  .benefits span::before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: #efe0f7;
  }

  .benefits img {
    position: relative;
    z-index: 1;
    width: 114px;
    height: 114px;
    object-fit: contain;
  }

  .benefits h3 {
    margin: 0 0 7px;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.12;
  }

  .benefits p {
    margin: 0;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 861px;
    margin-top: 58px;
    padding: 30px 20px 32px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--color-violet) 0%, var(--color-magenta) 100%);
    color: #ffffff;
  }

  .footer-logo {
    order: 1;
    font-size: 0;
  }

  .footer-logo img {
    width: 70px;
    height: 73px;
    object-fit: contain;
    filter: invert(1);
  }

  .footer-contacts {
    position: absolute;
    top: 82px;
    left: 115px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-style: normal;
  }

  .footer-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .footer-contacts a[href^="tel"] {
    order: -1;
  }

  .footer-contacts svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  .footer-form {
    order: 2;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
    padding: 20px 12px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    color: var(--color-text);
  }

  .footer-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 16px;
    line-height: 1.05;
  }

  .footer-form input[type="text"],
  .footer-form input[type="tel"] {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: rgba(93, 27, 159, 0.2);
    color: var(--color-text);
    padding: 14px 16px;
  }

  .footer-form input::placeholder {
    color: rgba(51, 51, 51, 0.6);
    opacity: 1;
  }

  .footer-consent {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 8px !important;
    margin-top: 1px;
    font-size: 12px !important;
    line-height: 1.05 !important;
  }

  .footer-consent input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--color-violet);
    flex: 0 0 auto;
  }

  .footer-consent a {
    text-decoration: underline;
  }

  .button-submit {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
  }

  .footer-links {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.05;
  }

  .footer-meta {
    order: 4;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.05;
    white-space: normal;
  }

  .footer-dev {
    order: 5;
    position: static;
    margin: 41px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.05;
  }
}

@media (max-width: 374px) {
  .section-inner,
  .hero-inner,
  .header-inner {
    width: calc(100% - 32px);
  }

  .brand-lockup {
    width: 100%;
  }

  .brand-logo-ps {
    width: 68px;
  }

  .brand-plus {
    width: 42px;
    margin: 0;
  }

  .brand-plus img {
    width: 30px;
    height: 30px;
  }

  .brand-logo-unistream {
    width: 92px;
    height: 48px;
  }

  .hero h1 {
    width: 100%;
    font-size: 34px;
  }

  .hero-visual {
    width: 100vw;
    height: 100vw;
  }

  .service-card,
  .services-toggle {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 70px 1fr;
    gap: 14px;
    padding-right: 12px;
  }

  .service-icon {
    width: 70px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 15px;
  }

  .steps .section-inner {
    width: calc(100% - 80px);
  }

  .steps h2 {
    width: 100%;
    margin-left: 0;
  }

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

  .benefits li {
    grid-template-columns: 104px 1fr;
  }

  .benefits span,
  .benefits img {
    width: 104px;
    height: 104px;
  }

  .footer-contacts {
    left: 105px;
  }

  .footer-contacts a {
    font-size: 13px;
  }
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .order-card,
  .legal-document {
    padding: 22px;
    border-radius: 18px;
  }

  .order-card h1,
  .legal-document h1 {
    font-size: 30px;
  }

  .order-summary div {
    grid-template-columns: 1fr;
  }

  .order-payment-check {
    align-items: flex-start;
    padding: 16px;
  }

  .order-payment-check strong {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
