@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #1b1c2e;
}

h1 {
  font-size: clamp(36px, 6vw, 60px);
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.5px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

a {
  color: #1b1c2e;
  transition: color 0.15s ease;
}
a:hover {
  color: #6b5fa0;
}

strong {
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1b1c2e;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(79, 67, 111, 0.4);
  color: #1b1c2e;
}

:focus-visible {
  outline: 2px solid #4f436f;
  outline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 251, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 22, 50, 0.1);
}
.site-header__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: 32px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1b1c2e;
}
.site-header__logo-img {
  display: block;
  height: 34px;
  width: auto;
}
.site-header__logo-text {
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: -0.2px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .site-header__logo-text {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .site-header__nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    background: #f4f6fb;
    border-bottom: 1px solid rgba(20, 22, 50, 0.1);
    padding: 16px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex !important;
  }
}
.site-header__nav.is-open {
  transform: translateY(0);
}
.site-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1024px) {
  .site-header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
.site-header__nav-link {
  display: block;
  padding: 8px 0;
  color: #5a5c76;
  font-size: 14px;
  font-weight: 500;
}
.site-header__nav-link:hover, .site-header__nav-link.is-active {
  color: #1b1c2e;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__actions .button {
  display: none;
}
@media (min-width: 768px) {
  .site-header__actions .button {
    display: inline-flex;
  }
}
.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1b1c2e;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
@media (min-width: 1024px) {
  .site-header__burger {
    display: none;
  }
}

.site-footer {
  background: #f4f6fb;
  border-top: 1px solid rgba(20, 22, 50, 0.1);
  padding-block: 64px 32px;
  color: #5a5c76;
}
.site-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding-inline: 32px;
  }
}
.site-footer__inner {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}
.site-footer__col-title {
  color: #1b1c2e;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__link {
  color: #5a5c76;
  font-size: 14px;
}
.site-footer__link:hover {
  color: #1b1c2e;
}
.site-footer__legal {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .site-footer__legal {
    padding-inline: 32px;
  }
}
.site-footer__legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 22, 50, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #9a9cb2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button:active {
  transform: translateY(0);
}
.button--primary {
  background: linear-gradient(135deg, #4f436f 0%, #7b2f49 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 26px rgba(123, 47, 73, 0.22);
}
.button--primary:hover {
  box-shadow: 0 0 40px rgba(79, 67, 111, 0.45);
}
.button--outline {
  background: transparent;
  color: #1b1c2e;
  border: 1px solid rgba(20, 22, 50, 0.18);
}
.button--outline:hover {
  border-color: #4f436f;
  color: #6b5fa0;
}
.button--block {
  width: 100%;
}
.button:disabled, .button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  box-shadow: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  color: #5a5c76;
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6f5099;
}
.badge--success {
  background: rgba(111, 80, 153, 0.12);
  border-color: transparent;
  color: #6f5099;
}
.badge--accent {
  background: linear-gradient(135deg, #4f436f 0%, #7b2f49 100%);
  border-color: transparent;
  color: #FFFFFF;
}

.section {
  padding-block: 64px;
}
@media (min-width: 768px) {
  .section {
    padding-block: 96px;
  }
}
.section--alt {
  background: #f4f6fb;
}
.section__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .section__inner {
    padding-inline: 32px;
  }
}
.section__head {
  max-width: 640px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.section__eyebrow {
  color: #6f5099;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section__subtitle {
  color: #5a5c76;
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  background: radial-gradient(60% 70% at 80% 0%, rgba(79, 67, 111, 0.18), transparent 70%), radial-gradient(50% 60% at 0% 100%, rgba(123, 47, 73, 0.16), transparent 70%);
}
.hero__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .hero__inner {
    padding-inline: 32px;
  }
}
.hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.hero__title {
  max-width: 12ch;
}
.hero__text {
  color: #5a5c76;
  font-size: 18px;
  max-width: 48ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__note {
  color: #9a9cb2;
  font-size: 14px;
}
.hero__aside {
  justify-self: stretch;
}
.hero__figure {
  margin: 0;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.hero__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(20, 22, 50, 0.1);
  box-shadow: 0 10px 30px rgba(20, 22, 60, 0.08);
}

.stat-panel {
  background: #f4f6fb;
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 22, 60, 0.08);
  padding: 32px;
  display: grid;
  gap: 24px;
}
.stat-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-panel__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-panel__value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #6f5099;
}
.stat-panel__label {
  color: #5a5c76;
  font-size: 14px;
}

.features {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
  border-color: rgba(20, 22, 50, 0.18);
  transform: translateY(-2px);
}
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(79, 67, 111, 0.1);
  color: #4f436f;
  margin-bottom: 8px;
}
.feature-card__title {
  color: #1b1c2e;
}
.feature-card__text {
  color: #5a5c76;
  font-size: 14px;
}

.about {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .about {
    grid-template-columns: minmax(300px, 360px) 1fr;
    gap: 48px;
    align-items: center;
  }
}
.about__card {
  background: #f4f6fb;
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__title {
  font-size: 24px;
  line-height: 1.2;
}
.about__text {
  color: #5a5c76;
  line-height: 1.7;
}

.journey {
  position: relative;
}
.journey__link {
  display: none;
  position: absolute;
  top: 10px;
  height: 44px;
  z-index: 0;
  pointer-events: none;
}
.journey__link svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .journey__link {
    display: block;
  }
}
.journey__link--1 {
  left: calc(16.6667% + 38px);
  width: calc(33.3333% - 76px);
}
.journey__link--2 {
  left: calc(50% + 38px);
  width: calc(33.3333% - 76px);
}
.journey__link--3 {
  left: calc(83.3333% + 43px);
  width: 19px;
}
.journey__plane {
  display: none;
  position: absolute;
  top: 18px;
  left: calc(83.3333% + 68px);
  width: 26px;
  height: 26px;
  z-index: 0;
  transform: rotate(-18deg);
}
@media (min-width: 768px) {
  .journey__plane {
    display: block;
  }
}
.journey__steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .journey__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.journey__node {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f4f6fb;
  border: 2px solid rgba(20, 22, 50, 0.18);
  display: grid;
  place-items: center;
}
.journey__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.journey__title {
  margin-top: 16px;
}
.journey__text {
  margin-top: 8px;
  max-width: 28ch;
  color: #5a5c76;
  font-size: 14px;
}

.learn {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .learn {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: stretch;
  }
}
.learn__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.learn__lead {
  color: #5a5c76;
  font-size: 18px;
  max-width: 52ch;
}
.learn__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 480px) {
  .learn__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.learn__figure {
  margin: 0;
  height: 100%;
}
.learn__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(20, 22, 50, 0.1);
}

.learn-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.learn-feature__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(111, 80, 153, 0.12);
  color: #6f5099;
}
.learn-feature__icon svg {
  width: 22px;
  height: 22px;
}
.learn-feature__title {
  color: #1b1c2e;
}
.learn-feature__text {
  margin-top: 4px;
  color: #5a5c76;
  font-size: 14px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f436f 0%, #7b2f49 100%);
  color: #FFFFFF;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__title {
  color: #1b1c2e;
}
.step__text {
  color: #5a5c76;
  font-size: 14px;
}

.pricing {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: #f4f6fb;
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card--featured {
  border-color: rgba(79, 67, 111, 0.6);
  box-shadow: 0 10px 26px rgba(123, 47, 73, 0.22);
}
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.price-card__name {
  color: #5a5c76;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card__price {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  color: #1b1c2e;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.price-card--featured .price-card__price {
  background: linear-gradient(135deg, #4f436f 0%, #7b2f49 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__period {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5a5c76;
}
.price-card__meta {
  color: #5a5c76;
  font-size: 14px;
}
.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: 8px;
  flex: 1;
}
.price-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #1b1c2e;
}
.price-card__check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(111, 80, 153, 0.12);
  color: #6f5099;
  font-size: 12px;
}

.pricing-included {
  margin-top: 32px;
  padding: 32px;
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
}
.pricing-included__title {
  color: #1b1c2e;
  margin-bottom: 16px;
}
.pricing-included__list {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .pricing-included__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-included__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a5c76;
  font-size: 14px;
}

.formats {
  margin-top: 32px;
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  padding: 32px;
}
.formats__title {
  margin-bottom: 8px;
}
.formats__note {
  color: #5a5c76;
  font-size: 14px;
  margin-bottom: 16px;
}
.formats__list {
  display: flex;
  flex-direction: column;
}
.formats__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(20, 22, 50, 0.1);
}
.formats__row:first-child {
  border-top: 0;
  padding-top: 0;
}
.formats__name {
  color: #1b1c2e;
  font-weight: 600;
  min-width: 160px;
}
.formats__meta {
  color: #5a5c76;
  font-size: 14px;
  flex: 1;
}
.formats__price {
  color: #1b1c2e;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.formats__price small {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5a5c76;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1b1c2e;
}
.checklist__check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(111, 80, 153, 0.12);
  color: #6f5099;
  font-size: 13px;
  margin-top: 1px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #1b1c2e;
}
.faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #4f436f;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #5a5c76;
  font-size: 14px;
}
.faq-item__answer-inner {
  padding: 0 24px 24px;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-size: 14px;
  color: #5a5c76;
}
.form__required {
  color: #6f5099;
}
.form__control {
  width: 100%;
  padding: 12px 14px;
  background: rgba(79, 67, 111, 0.06);
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 8px;
  color: #1b1c2e;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__control::placeholder {
  color: #9a9cb2;
}
.form__control:focus {
  outline: none;
  border-color: #4f436f;
  box-shadow: 0 0 0 3px rgba(79, 67, 111, 0.2);
}
.form textarea.form__control {
  min-height: 120px;
  resize: vertical;
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #5a5c76;
}
.form__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #4f436f;
}
.form__error {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
}
.form__group.is-invalid .form__error {
  display: block;
}
.form__group.is-invalid .form__control {
  border-color: #ff6b6b;
}
.form__status {
  font-size: 14px;
  color: #6f5099;
}

.section.cta {
  padding-top: 0;
}

.cta__box {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .cta__box {
    padding-inline: 32px;
  }
}
.cta__box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(20, 22, 50, 0.1);
  background: radial-gradient(70% 120% at 0% 0%, rgba(79, 67, 111, 0.25), transparent 60%), radial-gradient(70% 120% at 100% 100%, rgba(123, 47, 73, 0.25), transparent 60%), #f4f6fb;
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta__text {
  color: #5a5c76;
  font-size: 18px;
  max-width: 52ch;
}
.cta__note {
  color: #9a9cb2;
  font-size: 14px;
}

.legal {
  padding-block: 64px 96px;
}
.legal__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .legal__inner {
    padding-inline: 32px;
  }
}
.legal__inner {
  max-width: 820px;
}
.legal__updated {
  color: #9a9cb2;
  font-size: 14px;
  margin-bottom: 32px;
}
.legal__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #5a5c76;
}
.legal__body h2 {
  color: #1b1c2e;
  font-size: 24px;
  margin-top: 24px;
}
.legal__body h3 {
  color: #1b1c2e;
}
.legal__body p {
  line-height: 1.7;
}
.legal__body ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__body a {
  color: #4f436f;
}
.legal__body a:hover {
  color: #6b5fa0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #f4f6fb;
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 22, 60, 0.08);
  padding: 32px;
}
.modal__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-right: 32px;
}
.modal__subtitle {
  color: #5a5c76;
  font-size: 14px;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 67, 111, 0.06);
  color: #5a5c76;
}
.modal__close:hover {
  color: #1b1c2e;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f436f 0%, #7b2f49 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 26px rgba(123, 47, 73, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  max-width: 760px;
  margin-inline: auto;
  background: #f4f6fb;
  border: 1px solid rgba(20, 22, 50, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 22, 60, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie[hidden] {
  display: none;
}
.cookie__text {
  color: #5a5c76;
  font-size: 14px;
}
.cookie__text a {
  color: #4f436f;
  text-decoration: underline;
}
.cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.content-split {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .content-split {
    padding-inline: 32px;
  }
}
.content-split {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .content-split {
    grid-template-columns: 1fr 1fr;
  }
}
.content-split__media {
  border-radius: 16px;
  border: 1px solid rgba(20, 22, 50, 0.1);
  background: rgba(79, 67, 111, 0.06);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: #9a9cb2;
  font-size: 14px;
  overflow: hidden;
}
.content-split__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #5a5c76;
}
.content-split__body p {
  line-height: 1.7;
}
.content-split__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(20, 22, 50, 0.1);
}
@media (min-width: 1024px) {
  .content-split__img {
    height: 100%;
  }
}

.page-head {
  padding-block: 64px 32px;
  background: radial-gradient(60% 100% at 100% 0%, rgba(79, 67, 111, 0.14), transparent 70%), #f4f6fb;
  border-bottom: 1px solid rgba(20, 22, 50, 0.1);
}
.page-head__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .page-head__inner {
    padding-inline: 32px;
  }
}
.page-head__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-head__breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #9a9cb2;
}
.page-head__breadcrumbs a:hover {
  color: #1b1c2e;
}
.page-head__lead {
  color: #5a5c76;
  font-size: 18px;
  max-width: 60ch;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a9cb2;
}
.contacts__value {
  color: #1b1c2e;
  font-size: 16px;
}
