@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("../fonts/cormorant-garamond-700-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("../fonts/cormorant-garamond-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: block;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: block;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --page-bg: #f5f5f7;
  --page-surface: #ffffff;
  --page-text: #0e1630;
  --page-muted: #5e667f;
  --page-border: rgba(14, 22, 48, 0.18);
  --brand-blue: #0f4ecf;
  --brand-blue-dark: #093a9c;
  --layout-max: 1680px;
  --layout-gutter: clamp(24px, 4.2vw, 70px);
  --header-height: clamp(56px, 4.1vw, 68px);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: Manrope, Inter, "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

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

.page {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.page__skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 1000;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-decoration: none;
}

.page__skip-link:focus {
  top: 12px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(87, 112, 210, 0.08);
  box-shadow: 0 10px 30px rgba(20, 34, 74, 0.04);
  backdrop-filter: blur(14px);
}

.header__inner {
  width: min(100%, var(--layout-max));
  margin: 0 auto;
  min-height: var(--header-height);
  padding: 5px var(--layout-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.4vw, 24px);
}

.logo {
  width: clamp(136px, 9.4vw, 158px);
  height: 42px;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo__image {
  position: absolute;
  left: -6px;
  top: 50%;
  width: clamp(146px, 9.9vw, 166px);
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.logo__wordmark {
  font-size: 28px;
  letter-spacing: 0;
  font-weight: 700;
}
.logo__subline {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: -1px;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 32px);
}

.menu__link {
  color: #111a35;
  text-decoration: none;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.2;
  font-weight: 700;
}

.menu__link:hover {
  color: var(--page-text);
}

.page__main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.page__main > section:not(.hero),
.page__main > .footer {
  width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), var(--layout-max));
  margin-left: auto;
  margin-right: auto;
}

.page__main > section.trust-section {
  width: calc(100vw - 4px);
  max-width: none;
}

.page__main > .footer {
  width: 100%;
  max-width: none;
}

.hero {
  position: relative;
  height: min(900px, calc(100svh - var(--header-height) + 34px));
  min-height: 0;
  padding: 0;
  background: #f8fbff;
  overflow: hidden;
}

.hero::after {
  content: none;
}

.hero::before {
  content: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  left: -4%;
  width: 108%;
  height: 100%;
  min-width: 0;
  max-width: none;
  object-fit: cover;
  object-position: 45% 58%;
  pointer-events: none;
}

.hero__inner {
  width: min(100%, var(--layout-max));
  height: 100%;
  margin: 0 auto;
  position: relative;
  transform: translateY(-16px);
  padding:
    clamp(126px, 17vh, 164px)
    var(--layout-gutter)
    clamp(10px, 1.6vh, 18px);
}

.hero__content {
  max-width: min(50vw, 820px);
  position: relative;
  z-index: 3;
  isolation: isolate;
  transform: translateY(-18px);
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: -30px -54px -24px -36px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 31% 28%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.48) 44%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(90deg, rgba(248, 251, 255, 0.42) 0%, rgba(248, 251, 255, 0.18) 56%, rgba(248, 251, 255, 0) 86%);
  filter: blur(5px);
  pointer-events: none;
}

.hero__title {
  margin: 0 0 clamp(24px, 2.8vw, 36px);
  font-size: clamp(48px, 4.45vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--page-text);
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.92);
}

.hero__subtitle {
  margin: 0;
  color: #62708d;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 500;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.9);
}

.hero__subtitle + .hero__subtitle {
  margin-top: 8px;
}

.hero__actions {
  margin-top: clamp(28px, 4.2vh, 40px);
  display: flex;
  gap: clamp(24px, 2.7vw, 34px);
}

.hero .button {
  box-shadow: 0 14px 28px rgba(42, 84, 231, 0.12);
}

.hero__actions .button_theme_outline {
  min-width: clamp(304px, 18vw, 340px);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(52.5vw, 910px, calc((100svh - var(--header-height)) * 1.14));
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero__visual::before {
  content: none;
}

.hero-phone,
.hero__float-card {
  position: absolute;
  display: block;
  max-width: none;
}

.hero-phone {
  z-index: 3;
  aspect-ratio: 578 / 1283;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(39, 55, 119, 0.22));
}

.hero-phone_primary {
  left: 24.2%;
  top: auto;
  bottom: 14.8%;
  width: 27.2%;
  transform: rotate(-6deg);
}

.hero-phone_partner {
  left: 52.2%;
  top: auto;
  bottom: 14.8%;
  width: 28.2%;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-phone__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero__float-card {
  z-index: 4;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(79, 91, 166, 0.12));
}

.hero__float-card_partner {
  top: 11.5%;
  left: 2.2%;
  width: 25.6%;
  transform: rotate(-7deg);
}

.hero__float-card_link {
  top: 30.6%;
  right: 1.2%;
  width: 19.6%;
}

.hero__float-card_income {
  top: 49.8%;
  right: 3.6%;
  width: 19.6%;
}

.hero__benefits {
  position: relative;
  z-index: 3;
  list-style: none;
  width: min(50vw, 760px);
  margin: clamp(62px, 7.4vh, 76px) 0 0;
  transform: translateY(-18px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-benefit {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(87, 112, 210, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 255, 0.64));
  box-shadow: 0 14px 28px rgba(76, 91, 158, 0.08);
}

.hero-benefit__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(239, 243, 255, 0.98), rgba(229, 236, 255, 0.86));
  color: #4d5fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(74, 95, 255, 0.08);
}

.hero-benefit__icon img,
.hero-benefit__icon svg {
  width: 26px;
  max-width: none;
  height: 26px;
  object-fit: contain;
}

.hero-benefit__icon.hero-benefit__icon_type_shield svg,
.hero-benefit__icon.hero-benefit__icon_type_team svg {
  width: 28px;
  height: 28px;
}

.hero-benefit__body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.hero-benefit__title {
  color: #101936;
  font-size: clamp(15px, 1.02vw, 18px);
  line-height: 1.2;
  font-weight: 850;
  white-space: normal;
}

.hero-benefit__text {
  color: #56647f;
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.38;
  font-weight: 600;
}

.hero-benefit__mobile-text {
  display: none;
}

.hero-benefit__nowrap {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 12px;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  min-height: 84px;
  padding: 10px 42px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.button_theme_primary {
  background: linear-gradient(135deg, #0659ff 0%, #6b60ff 100%);
  color: #fff;
  border: 1px solid transparent;
}

.button_theme_primary:hover {
  background: linear-gradient(135deg, #034ce5 0%, #5a50ee 100%);
}

.button_theme_outline {
  color: #0950ea;
  border: 2px solid rgba(12, 81, 235, 0.75);
  background: rgba(255, 255, 255, 0.78);
}

.button_theme_outline:hover {
  border-color: var(--brand-blue);
}

.button_size_medium {
  font-size: 15px;
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 10px;
}

.button_size_large {
  font-size: 21px;
  min-height: 72px;
  min-width: clamp(282px, 17vw, 320px);
  padding: 14px 34px;
  border-radius: 12px;
}

.button__arrow {
  flex: 0 0 auto;
  font-size: 1.25em;
  line-height: 1;
}

.button > span:first-child {
  min-width: 0;
  white-space: nowrap;
}

.header__mobile-action,
.header__menu-button {
  display: none;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header__cta {
    display: none;
  }

  .menu {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}

.page__main > section.mission-section {
  width: 100%;
  max-width: none;
}

.mission-section {
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  scroll-margin-top: var(--header-height);
  height: min(941px, 100svh);
  min-height: 0;
  margin-top: clamp(26px, 3.6vw, 58px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(246, 251, 255, 0.08) 37%, rgba(246, 251, 255, 0) 70%),
    #edf6ff url("../img/mission/mission-bg.png") center / cover no-repeat;
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.mission-section__layout {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  min-height: 0;
}

.mission-section__content {
  position: absolute;
  left: 5.02%;
  top: 8.8%;
  width: 36.8%;
  max-width: none;
}

.mission-section__eyebrow {
  position: relative;
  top: clamp(-14px, -0.65cqw, -10px);
  margin: 0 0 clamp(22px, min(1.55cqw, 3.15svh), 30px);
  text-transform: uppercase;
  color: #0c8f38;
  letter-spacing: 0.18em;
  font-size: clamp(13px, min(0.98cqw, 2.1svh), 18px);
  line-height: 1.1;
  font-weight: 800;
}

.mission-section__title {
  margin: 0;
  color: #080e3b;
  font-family: var(--font-heading);
  font-size: clamp(52px, min(3.75cqw, 7.2svh), 66px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}

.mission-section__title span {
  color: #1175f0;
}

.mission-section__title::after {
  content: "";
  display: block;
  width: min(5.26cqw, 88px);
  height: max(3px, min(0.24cqw, 4px));
  margin-top: clamp(12px, min(0.95cqw, 1.9svh), 18px);
  background: linear-gradient(90deg, #078634 0%, rgba(7, 134, 52, 0.76) 48%, rgba(7, 134, 52, 0) 100%);
  border-radius: 999px;
}

.mission-section__text {
  max-width: min(32.6cqw, 570px);
  margin: clamp(15px, min(1.05cqw, 2.25svh), 20px) 0 0;
  color: #0c1740;
  font-size: clamp(16px, min(1.08cqw, 2.12svh), 19px);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
}

.mission-section__text + .mission-section__text {
  margin-top: clamp(14px, min(0.95cqw, 2svh), 18px);
}

.mission-section__quote {
  max-width: min(32.6cqw, 570px);
  display: block;
  position: relative;
  padding-left: clamp(32px, 2.15cqw, 40px);
  margin: clamp(48px, min(2.85cqw, 6svh), 58px) 0 0;
  color: #0b8d3b;
  font-style: italic;
  font-size: clamp(22px, min(1.45cqw, 2.9svh), 25px);
  line-height: 1.32;
  font-weight: 500;
}

.mission-section__quote-mark {
  display: inline;
  color: #0a9b42;
  font-family: var(--font-heading);
  font-size: 1.72em;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  vertical-align: -0.16em;
}

.mission-section__quote-mark:not(.mission-section__quote-mark_end) {
  position: absolute;
  left: 0;
  top: -0.16em;
  font-size: 2.15em;
}

.mission-section__quote-mark_end {
  margin-left: 0.18em;
  transform: none;
}

.mission-section__quote-text {
  display: inline;
}

.mission-section__cards {
  position: absolute;
  top: 14.7%;
  right: clamp(54px, 6.1cqw, 116px);
  list-style: none;
  width: clamp(386px, 23.2cqw, 452px);
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(10px, 0.72cqw, 14px);
}

.mission-card {
  height: clamp(172px, 9.75cqw, 188px);
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(66px, 4.05cqw, 76px) minmax(0, 1fr);
  gap: clamp(12px, 0.82cqw, 16px);
  align-items: center;
  padding: clamp(13px, 0.85cqw, 16px) clamp(18px, 1.2cqw, 22px);
  border: 1px solid rgba(85, 131, 194, 0.18);
  border-radius: min(1.08cqw, 18px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  box-shadow: 0 14px 28px rgba(31, 80, 140, 0.14);
  backdrop-filter: blur(4px);
}

.mission-card__icon {
  width: clamp(66px, 4.05cqw, 76px);
  height: clamp(66px, 4.05cqw, 76px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c76f6;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.96), rgba(235, 244, 255, 0.9));
  border: 1px solid rgba(31, 110, 225, 0.12);
  box-shadow: 0 14px 28px rgba(23, 69, 130, 0.16);
}

.mission-card__icon svg {
  width: clamp(36px, 2.45cqw, 43px);
  height: clamp(36px, 2.45cqw, 43px);
}

.mission-card__title {
  margin: 0;
  color: #07103b;
  font-size: clamp(20px, 1.16cqw, 23px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.mission-card__description {
  margin: clamp(6px, 0.45cqw, 8px) 0 0;
  color: #101a43;
  font-size: clamp(16px, min(1.02cqw, 2.05svh), 18.5px);
  line-height: 1.32;
  letter-spacing: 0;
  font-weight: 500;
}

.products-section {
  margin-top: clamp(30px, 4.5vw, 64px);
  padding-bottom: 18px;
}

.products-section__head {
  text-align: center;
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

.products-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #1d3fa5;
  font-size: 12px;
  font-weight: 700;
}

.products-section__title {
  margin: 10px 0 0;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.products-section__subtitle {
  margin: 10px 0 0;
  color: #5f6475;
  font-size: clamp(16px, 1.2vw, 24px);
}

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

.product-card {
  border: 1px solid rgba(14, 22, 48, 0.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(130px, 0.95fr) minmax(0, 1fr);
}

.product-card__media {
  min-height: 230px;
  background: linear-gradient(180deg, #f8f9fd, #eef2f8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.product-card__media_kind_bottle {
  background: linear-gradient(180deg, #f6f7fa, #eef1f6);
}

.product-card__media_kind_phone {
  background: linear-gradient(180deg, #f8f9fc, #eef3f8);
}

.product-card__media_kind_dashboard {
  background: radial-gradient(circle at 20% 20%, #1b3f8e, #081a40 60%, #03122f 100%);
}

.product-card__bottle {
  width: 90px;
  height: 152px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 22, 48, 0.12);
  box-shadow: 0 10px 22px rgba(11, 22, 54, 0.15);
  position: relative;
}

.product-card__bottle::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 17px;
  width: 56px;
  height: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 22, 48, 0.1);
}

.product-card__bottle-brand {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 14px;
  border-radius: 10px;
  background: linear-gradient(160deg, #0f4ecf, #0c2e79);
  color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 1.05;
  padding: 10px 0 8px;
  font-weight: 700;
}

.product-card__phone {
  width: 110px;
  height: 200px;
  border-radius: 22px;
  border: 2px solid #161d2f;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.product-card__phone::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: #05080f;
}

.product-card__phone-top {
  margin: 28px 10px 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #2e8a64, #175943);
  color: #fff;
  font-size: 16px;
  padding: 16px 8px;
  text-align: center;
  font-weight: 600;
}

.product-card__phone-bottom {
  margin: 12px 10px 0;
  height: 96px;
  border-radius: 8px;
  background: repeating-linear-gradient(
    to bottom,
    #edf2f8 0,
    #edf2f8 10px,
    #ffffff 10px,
    #ffffff 20px
  );
}

.product-card__dash {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0f2a63, #06153a);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px;
}

.product-card__dash-row {
  height: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.24);
  margin-bottom: 10px;
}

.product-card__dash-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-card__dash-cards span {
  display: block;
  height: 52px;
  border-radius: 8px;
  background: rgba(70, 136, 255, 0.45);
}

.product-card__content {
  padding: 12px 14px 12px 12px;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.product-card__tag_theme_health {
  background: #e7f6ee;
  color: #19815f;
}

.product-card__tag_theme_tech {
  background: #e9efff;
  color: #244cb1;
}

.product-card__title {
  margin: 10px 0 0;
  font-size: clamp(20px, 1.7vw, 34px);
  line-height: 1.1;
}

.product-card__description {
  margin: 8px 0 0;
  color: #4f5870;
  font-size: clamp(13px, 0.85vw, 18px);
  line-height: 1.4;
}

.product-card__price {
  margin: 12px 0 0;
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.12;
  font-weight: 700;
}

.product-card__bonus {
  margin: 8px 0 0;
  color: #138664;
  font-size: clamp(12px, 0.78vw, 16px);
  line-height: 1.25;
}

.product-card__more {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: #1f44ad;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  font-weight: 500;
}

.product-card__more::after {
  content: "→";
  margin-left: 8px;
}

.products-section__note {
  margin: 14px 0 0;
  text-align: center;
  color: #8c91a2;
  font-style: italic;
  font-size: 16px;
}

.process-section {
  margin-top: clamp(34px, 4.8vw, 76px);
  padding-bottom: 26px;
}

.process-section__head {
  text-align: center;
}

.process-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: #24358c;
  font-size: 12px;
  font-weight: 700;
}

.process-section__flow {
  position: relative;
  height: 96px;
  margin: 8px auto -24px;
  max-width: 1080px;
}

.process-section__line {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  filter: blur(0.2px);
}

.process-section__line_theme_blue {
  left: 160px;
  top: 52px;
  width: 240px;
  background: linear-gradient(90deg, rgba(68, 142, 255, 0), rgba(68, 142, 255, 0.85));
}

.process-section__line_theme_green {
  left: 395px;
  top: 46px;
  width: 260px;
  background: linear-gradient(90deg, rgba(51, 207, 159, 0.75), rgba(51, 207, 159, 0.65));
}

.process-section__line_theme_purple {
  left: 650px;
  top: 52px;
  width: 240px;
  background: linear-gradient(90deg, rgba(145, 88, 207, 0.8), rgba(145, 88, 207, 0));
}

.process-section__point {
  position: absolute;
  top: 44px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.75), 0 0 24px currentColor;
}

.process-section__point_theme_blue {
  left: 388px;
  color: #4f8ff3;
}

.process-section__point_theme_green {
  left: 640px;
  color: #2bcf96;
}

.process-section__point_theme_purple {
  left: 890px;
  color: #8a58d0;
}

.process-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.process-card {
  position: relative;
  border: 1px solid rgba(14, 22, 48, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfdff, #f7f9ff);
  box-shadow: 0 10px 26px rgba(11, 24, 66, 0.08);
  padding: 14px 18px 18px;
}

.process-card__art {
  height: 158px;
  border-radius: 14px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.process-card__art::before,
.process-card__art::after {
  content: "";
  position: absolute;
}

.process-card__art_type_select {
  background: radial-gradient(circle at 32% 35%, #7c91d9, #3058b5 55%, #2a4582);
}

.process-card__art_type_select::before {
  width: 90px;
  height: 120px;
  right: 20px;
  top: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #edf2fc);
  border: 2px solid #1f2740;
  transform: rotate(10deg);
}

.process-card__art_type_select::after {
  left: 22px;
  top: 20px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f2f4fb, #b9c5ed);
}

.process-card__art_type_share {
  background: radial-gradient(circle at 35% 30%, #7bc7aa, #4c9e7c 60%, #2f6451);
}

.process-card__art_type_share::before {
  width: 56px;
  height: 56px;
  right: 26px;
  top: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.45);
}

.process-card__art_type_share::after {
  left: 30px;
  top: 28px;
  width: 140px;
  height: 80px;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
}

.process-card__art_type_profit {
  background: radial-gradient(circle at 35% 35%, #b8a4e5, #7b61c6 58%, #4e3a92);
}

.process-card__art_type_profit::before {
  left: 20px;
  bottom: 18px;
  width: 82px;
  height: 56px;
  border-radius: 12px;
  background: #1f2a42;
}

.process-card__art_type_profit::after {
  right: 16px;
  bottom: 18px;
  width: 92px;
  height: 70px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
  clip-path: polygon(0 100%, 0 70%, 26% 70%, 26% 48%, 52% 48%, 52% 28%, 78% 28%, 78% 0, 100% 0, 100% 100%);
}

.process-card__title {
  margin: 0;
  font-size: clamp(26px, 1.5vw, 34px);
  letter-spacing: 0;
  line-height: 1.1;
}

.process-card__text {
  margin: 6px 0 0;
  color: #5e667e;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.35;
}

.process-section__note {
  margin: 16px auto 0;
  width: fit-content;
  color: #8b91a3;
  font-style: italic;
  font-size: 15px;
  position: relative;
  padding: 0 66px;
}

.process-section__note::before,
.process-section__note::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: rgba(33, 42, 71, 0.2);
}

.process-section__note::before {
  left: 0;
}

.process-section__note::after {
  right: 0;
}

.income-section {
  margin-top: clamp(34px, 4.6vw, 72px);
  padding-bottom: 24px;
}

.income-section__head {
  text-align: center;
  margin-bottom: clamp(16px, 2.2vw, 30px);
}

.income-section__title {
  margin: 8px 0 0;
  font-size: clamp(34px, 3.6vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.income-card {
  border: 1px solid rgba(14, 22, 48, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfdff, #f7f9ff);
  padding: 18px 16px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.7fr);
  gap: 14px;
  align-items: end;
}

.income-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.income-card__tag_theme_green {
  background: #eaf6ef;
  color: #227859;
}

.income-card__tag_theme_blue {
  background: #e9efff;
  color: #284cad;
}

.income-card__title {
  margin: 12px 0 0;
  font-size: clamp(34px, 2.5vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.income-card__description {
  margin: 12px 0 0;
  color: #4f5870;
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.35;
}

.income-card__list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.income-card__item {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: #3f4a64;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.35;
}

.income-card__item + .income-card__item {
  margin-top: 10px;
}

.income-card__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(31, 62, 134, 0.35);
  color: #2a58c6;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.income-card__visual {
  display: flex;
  justify-content: center;
}

.income-phone {
  width: 174px;
  height: 336px;
  border-radius: 30px;
  border: 2px solid #1b2234;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(11, 22, 54, 0.18);
  position: relative;
  overflow: hidden;
  transform: rotate(-4deg);
}

.income-phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 14px;
  border-radius: 999px;
  background: #06090f;
}

.income-phone__screen {
  position: absolute;
  inset: 30px 10px 10px;
  border-radius: 16px;
  padding: 12px;
}

.income-phone__screen_type_partner {
  background: linear-gradient(180deg, #f4f8ff, #eef4fc);
}

.income-phone__screen_type_invest {
  background: linear-gradient(180deg, #f6f8fc, #eef3f9);
}

.income-phone__line {
  height: 12px;
  border-radius: 8px;
  background: rgba(28, 46, 93, 0.16);
}

.income-phone__line + .income-phone__line {
  margin-top: 8px;
}

.income-phone__line_size_s {
  width: 62%;
}

.income-phone__line_size_m {
  width: 78%;
}

.income-phone__stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.income-phone__stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  min-height: 34px;
  background: #dff2e8;
  color: #1e7d5b;
  font-weight: 700;
  font-size: 16px;
}

.income-phone__bar {
  margin-top: 14px;
  height: 172px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(33, 74, 170, 0.14), rgba(33, 74, 170, 0.02)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 20px,
      rgba(31, 58, 124, 0.08) 20px,
      rgba(31, 58, 124, 0.08) 21px
    );
}

.income-card_theme_invest .income-phone {
  transform: rotate(4deg);
}

.trust-section {
  margin-top: clamp(34px, 4.8vw, 76px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: auto;
  height: clamp(560px, 40.5vw, 770px);
  min-height: 0;
  padding: clamp(70px, 4.45vw, 86px) clamp(52px, 4.78vw, 92px) clamp(44px, 3.75vw, 72px);
  border-radius: clamp(18px, 1.44vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(238, 246, 255, 0.14) 48%, rgba(202, 224, 255, 0.2) 100%),
    url("../img/trust/trust-bg.png") center / cover no-repeat,
    #edf6ff;
  color: #07185f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 20px 42px rgba(37, 90, 164, 0.1);
  display: flex;
  flex-direction: column;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 23%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 25%, rgba(255, 255, 255, 0) 51%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(235, 244, 255, 0.28) 100%);
  pointer-events: none;
}

.trust-section__head,
.trust-section__grid {
  position: relative;
  z-index: 1;
}

.trust-section__head {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.trust-section__title {
  margin: 0;
  color: #07165e;
  font-size: clamp(52px, 3.75vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.trust-section__subtitle {
  margin: clamp(18px, 1.65vw, 30px) 0 0;
  color: rgba(7, 22, 94, 0.72);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.25;
  font-weight: 500;
}

.trust-section__grid {
  width: min(100%, 1716px);
  margin: clamp(118px, 7.55vw, 146px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.55vw, 30px);
}

.trust-item {
  min-height: clamp(156px, 10.4vw, 204px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: clamp(18px, 1.32vw, 26px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow: 0 22px 46px rgba(70, 111, 176, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  padding: clamp(12px, 0.9vw, 17px) clamp(16px, 1.35vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-item__icon {
  width: clamp(64px, 4.4vw, 82px);
  height: clamp(64px, 4.4vw, 82px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b68ff;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.9) 45%, rgba(224, 236, 255, 0.82) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 14px 30px rgba(78, 124, 195, 0.1);
  flex: 0 0 auto;
}

.trust-item__icon svg {
  width: clamp(40px, 3vw, 56px);
  height: clamp(40px, 3vw, 56px);
  filter: drop-shadow(0 10px 12px rgba(8, 85, 220, 0.18));
}

@media (min-width: 621px) {
  .trust-section__grid .trust-item:first-child .trust-item__icon svg {
    width: clamp(46px, 3.45vw, 64px);
    height: clamp(46px, 3.45vw, 64px);
  }
}

.trust-item__content {
  min-width: 0;
}

.trust-item__title {
  margin: clamp(9px, 0.72vw, 14px) 0 0;
  color: #07165e;
  font-size: clamp(20px, 1.34vw, 26px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.trust-item__text {
  margin: clamp(5px, 0.42vw, 8px) 0 0;
  color: rgba(7, 22, 94, 0.68);
  font-size: clamp(16.5px, 1.04vw, 20px);
  line-height: 1.32;
  font-weight: 500;
}

.trust-section__cta {
  --trust-cta-shift: 0px;

  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  width: min(100%, 1716px);
  min-height: clamp(106px, 7.4vw, 136px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: clamp(18px, 1.32vw, 26px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7));
  box-shadow: 0 22px 54px rgba(60, 103, 172, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  padding: clamp(16px, 1.08vw, 22px) clamp(26px, 2.5vw, 48px);
  display: grid;
  grid-template-columns: minmax(170px, 15vw) minmax(0, 1fr) minmax(240px, 17.2vw);
  align-items: center;
  gap: clamp(22px, 3.2vw, 62px);
}

.trust-section__brand {
  width: clamp(74px, 5.2vw, 96px);
  height: clamp(74px, 5.2vw, 96px);
  border-radius: clamp(16px, 1.08vw, 22px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(66, 103, 173, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-section__brand img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.trust-section__brand span {
  display: none;
  color: #071238;
  font-size: clamp(24px, 1.78vw, 34px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.trust-section__cta-copy {
  min-width: 0;
}

.trust-section__cta-title {
  margin: 0;
  color: #07165e;
  font-size: clamp(24px, 1.72vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.trust-section__mobile-break {
  display: none;
}

.trust-section__cta-text {
  margin: clamp(7px, 0.58vw, 11px) 0 0;
  color: rgba(7, 22, 94, 0.72);
  font-size: clamp(16px, 1.12vw, 21px);
  line-height: 1.32;
  font-weight: 500;
}

.trust-section__cta-button {
  transform: translateX(var(--trust-cta-shift));
  min-height: clamp(58px, 4.25vw, 76px);
  border-radius: 14px;
  background: linear-gradient(135deg, #1685ff 0%, #0050ff 100%);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 1.7vw, 32px);
  padding: 10px clamp(24px, 2vw, 38px);
  font-size: clamp(22px, 1.55vw, 29px);
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(4, 88, 235, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.trust-section__cta-button:hover {
  filter: saturate(1.08) brightness(1.02);
  transform: translateX(var(--trust-cta-shift)) translateY(-1px);
  box-shadow: 0 20px 34px rgba(4, 88, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.trust-section__cta-button svg {
  width: clamp(27px, 1.9vw, 36px);
  height: auto;
  flex: 0 0 auto;
}

.trust-section__mobile-divider,
.trust-section__mobile-telegram {
  display: none;
}

@media (min-width: 621px) and (max-width: 1199px) {
  .trust-section {
    padding-right: clamp(38px, 4vw, 52px);
    padding-left: clamp(38px, 4vw, 52px);
  }

  .trust-section__grid {
    gap: clamp(12px, 1.55vw, 18px);
  }

  .trust-item {
    min-height: clamp(136px, 13.6vw, 156px);
    padding: clamp(9px, 1.2vw, 13px) clamp(10px, 1.35vw, 16px);
  }

  .trust-item__icon {
    width: clamp(52px, 5.7vw, 62px);
    height: clamp(52px, 5.7vw, 62px);
  }

  .trust-item__icon svg {
    width: clamp(34px, 4vw, 40px);
    height: clamp(34px, 4vw, 40px);
  }

  .trust-section__grid .trust-item:first-child .trust-item__icon svg {
    width: clamp(39px, 4.6vw, 46px);
    height: clamp(39px, 4.6vw, 46px);
  }

  .trust-item__title {
    margin-top: clamp(7px, 0.9vw, 10px);
    font-size: clamp(17.2px, 1.72vw, 20.2px);
  }

  .trust-item__text {
    margin-top: clamp(3px, 0.55vw, 5px);
    font-size: clamp(14px, 1.35vw, 16.2px);
    line-height: 1.25;
  }

  .trust-section__cta {
    grid-template-columns: minmax(140px, 17vw) minmax(0, 1fr) minmax(190px, 24vw);
    gap: clamp(16px, 2.5vw, 28px);
    padding-right: clamp(22px, 2.8vw, 34px);
    padding-left: clamp(22px, 2.8vw, 34px);
  }

  .trust-section__brand {
    width: clamp(140px, 17vw, 170px);
    height: clamp(46px, 5.2vw, 56px);
  }

  .trust-section__cta-title {
    font-size: clamp(20px, 2.1vw, 24px);
  }

  .trust-section__cta-text {
    font-size: clamp(14px, 1.65vw, 17px);
  }

  .trust-section__cta-button {
    min-height: clamp(52px, 5.8vw, 58px);
    font-size: clamp(20px, 2.2vw, 23px);
  }
}

/* Contact request section */
.page__main > section.contact-section {
  width: 100%;
  max-width: none;
}

/* Final screen 3 fit layer: keep the full desktop composition in one viewport. */
@media (min-width: 901px) {
  .page__main > section.products-section {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .products-section {
    --products-ink: #050c2d;
    --products-muted: #70799b;
    --products-blue: #075bff;
    --products-green: #009b4b;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(14px, 2.4svh, 30px);
    height: calc(100svh - var(--header-height));
    min-height: 0;
    margin: 0;
    padding:
      clamp(20px, 4.4svh, 70px)
      clamp(18px, 3.55vw, 68px)
      clamp(16px, 3svh, 44px);
    overflow: hidden;
    scroll-margin-top: var(--header-height);
    background: url("../img/products/products-bg.png") center / cover no-repeat;
    color: var(--products-ink);
  }

  .products-section::before {
    content: none;
  }

  .products-section__head,
  .products-section__grid {
    width: min(100%, 1556px);
    margin-right: auto;
    margin-left: auto;
  }

  .products-section__head {
    margin-bottom: 0;
    text-align: center;
  }

  .products-section__eyebrow {
    display: none;
  }

  .products-section__title {
    margin: 0;
    color: var(--products-ink);
    font-size: clamp(40px, min(4.2vw, 9.6svh), 80px);
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 850;
  }

  .products-section__subtitle {
    margin: clamp(6px, 1svh, 14px) 0 0;
    color: var(--products-muted);
    font-size: clamp(17px, min(1.55vw, 3.5svh), 29px);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
  }

  .products-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.45vw, 28px);
    min-height: 0;
  }

  .product-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(92px, 1fr) auto;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(106, 137, 200, 0.2);
    border-radius: clamp(16px, 1.35vw, 26px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 22px 48px rgba(40, 65, 112, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
  }

  .product-card__media {
    min-height: 0;
    padding: 0;
    border-bottom: 1px solid rgba(106, 137, 200, 0.1);
    background-repeat: no-repeat;
    background-position: center;
  }

  .product-card__media_kind_bottle {
    background-image: url("../img/products/product-inulovit-display.webp");
    background-size: cover;
    background-color: #edf4e5;
  }

  .product-card__media_kind_phone {
    background-image: url("../img/products/product-lifeum-phone.webp");
    background-size: auto 112%;
    background-position: center 18%;
    background-color: #f8fbff;
  }

  .product-card__media_kind_dashboard {
    background-image: url("../img/products/product-smm-dashboard.png");
    background-size: contain;
    background-position: center;
    background-color: #0c111b;
  }

  .product-card__media_kind_learn {
    background-image: url("../img/products/product-niap-display.png");
    background-size: contain;
    background-position: center;
    background-color: #f5fbff;
  }

  .product-card__media > * {
    display: none;
  }

  .product-card__content {
    display: grid;
    align-content: start;
    min-height: 0;
    padding: clamp(14px, min(1.55vw, 3svh), 30px);
  }

  .product-card__tag {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: clamp(24px, min(2vw, 4.2svh), 36px);
    padding: 0 clamp(11px, 1vw, 18px);
    border-radius: 999px;
    font-size: clamp(11px, min(0.82vw, 1.9svh), 16px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 800;
    white-space: nowrap;
  }

  .product-card__tag_theme_health {
    color: #00864b;
    background: linear-gradient(135deg, #dcfae7 0%, #c9f6ef 100%);
  }

  .product-card__tag_theme_tech {
    color: #075bff;
    background: linear-gradient(135deg, #eaf2ff 0%, #e1edff 100%);
  }

  .product-card__tag_theme_education {
    color: #7a48ff;
    background: linear-gradient(135deg, #f2eaff 0%, #eae2ff 100%);
  }

  .product-card__title {
    margin: clamp(12px, 1.55svh, 24px) 0 0;
    color: var(--products-ink);
    font-size: clamp(22px, min(1.75vw, 4.3svh), 36px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 850;
  }

  .product-card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin: clamp(7px, 1svh, 14px) 0 0;
    color: #1d294e;
    font-size: clamp(12px, min(0.98vw, 2.35svh), 20px);
    line-height: 1.34;
    letter-spacing: 0;
    font-weight: 500;
  }

  .product-card__price {
    margin: clamp(12px, 1.8svh, 26px) 0 0;
    color: var(--products-ink);
    font-size: clamp(18px, min(1.5vw, 3.75svh), 32px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 850;
  }

  .product-card__bonus {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: clamp(7px, 1svh, 14px) 0 0;
    color: var(--products-green);
    font-size: clamp(11px, min(0.88vw, 2.05svh), 18px);
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 600;
  }

  .product-card__more {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    margin-top: clamp(14px, 2.3svh, 34px);
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--products-blue);
    font-size: clamp(13px, min(1vw, 2.3svh), 20px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 850;
    cursor: pointer;
  }

  .product-card__more::after {
    content: "\2192";
    margin: 0;
    font-size: 1.2em;
    line-height: 1;
  }

  .products-section__note {
    display: none;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .products-section {
    gap: clamp(10px, 1.8svh, 18px);
    padding-top: clamp(14px, 2.8svh, 28px);
    padding-bottom: clamp(12px, 2.2svh, 22px);
  }

  .products-section__title {
    font-size: clamp(34px, min(3.7vw, 8.6svh), 64px);
  }

  .products-section__subtitle {
    font-size: clamp(15px, min(1.25vw, 3svh), 22px);
  }

  .product-card {
    grid-template-rows: minmax(84px, 0.82fr) auto;
  }

  .product-card__content {
    padding: clamp(12px, min(1.25vw, 2.45svh), 22px);
  }

  .product-card__description {
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .products-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card {
    min-height: 0;
  }

  .product-card__content {
    padding: clamp(12px, 1.45vw, 18px);
  }

  .product-card__title {
    font-size: clamp(18px, 2.2vw, 28px);
  }

  .product-card__description {
    font-size: clamp(11px, 1.25vw, 15px);
    -webkit-line-clamp: 4;
  }

  .product-card__price {
    font-size: clamp(16px, 1.9vw, 24px);
  }

  .product-card__bonus,
  .product-card__more {
    font-size: clamp(10.5px, 1.18vw, 14px);
  }
}

/* Screen 3, products section from the current mockup. */
.page__main > section.products-section {
  width: 100%;
  max-width: none;
  margin: 0;
}

.products-section {
  --products-ink: #050c2d;
  --products-muted: #70799b;
  --products-blue: #075bff;
  --products-green: #009b4b;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(20px, 2.45svh, 34px);
  height: clamp(720px, calc(100svh - var(--header-height)), 941px);
  padding:
    clamp(28px, 5svh, 78px)
    clamp(24px, 3.6vw, 72px)
    clamp(24px, 3.2svh, 46px);
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.78), rgba(244, 248, 255, 0.74)),
    url("../img/products/products-bg.png") center / cover no-repeat;
  color: var(--products-ink);
}

.products-section::before {
  content: "";
  position: absolute;
  top: clamp(-18px, -2svh, -8px);
  right: max(-80px, -4vw);
  z-index: -1;
  width: min(52vw, 760px);
  aspect-ratio: 1536 / 1024;
  background: url("../img/hero/hero-bg-full.webp") right top / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.products-section__head,
.products-section__grid,
.products-section__note {
  width: min(100%, 1760px);
  margin-right: auto;
  margin-left: auto;
}

.products-section__head {
  margin-bottom: 0;
  text-align: center;
}

.products-section__eyebrow {
  display: none;
}

.products-section__title {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(50px, 4.2vw, 80px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 850;
}

.products-section__subtitle {
  margin: clamp(8px, 1svh, 14px) 0 0;
  color: var(--products-muted);
  font-size: clamp(21px, 1.55vw, 29px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
}

.products-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.45vw, 28px);
  min-height: 0;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 0.94fr) auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(106, 137, 200, 0.2);
  border-radius: clamp(18px, 1.35vw, 26px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 48px rgba(40, 65, 112, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.product-card__media {
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(106, 137, 200, 0.1);
  background-repeat: no-repeat;
  background-position: center;
}

.product-card__media_kind_bottle {
  background-image: url("../img/products/product-inulovit-display.webp");
  background-size: cover;
  background-color: #edf4e5;
}

.product-card__media_kind_phone {
  background-image: url("../img/products/product-lifeum-phone.webp");
  background-size: auto 111%;
  background-position: center 18%;
  background-color: #f8fbff;
}

.product-card__media_kind_dashboard {
  background-image: url("../img/products/product-smm-dashboard.png");
  background-size: contain;
  background-position: center;
  background-color: #0c111b;
}

.product-card__media_kind_learn {
  background-image: url("../img/products/product-niap-display.png");
  background-size: contain;
  background-position: center;
  background-color: #f5fbff;
}

.product-card__media > * {
  display: none;
}

.product-card__content {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: clamp(20px, 1.55vw, 30px);
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: clamp(28px, 2vw, 36px);
  padding: 0 clamp(13px, 1vw, 18px);
  border-radius: 999px;
  font-size: clamp(13px, 0.82vw, 16px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.product-card__tag_theme_health {
  color: #00864b;
  background: linear-gradient(135deg, #dcfae7 0%, #c9f6ef 100%);
}

.product-card__tag_theme_tech {
  color: #075bff;
  background: linear-gradient(135deg, #eaf2ff 0%, #e1edff 100%);
}

.product-card__tag_theme_education {
  color: #7a48ff;
  background: linear-gradient(135deg, #f2eaff 0%, #eae2ff 100%);
}

.product-card__title {
  margin: clamp(18px, 1.55svh, 24px) 0 0;
  color: var(--products-ink);
  font-size: clamp(28px, 1.75vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

.product-card__description {
  margin: clamp(10px, 1svh, 14px) 0 0;
  color: #1d294e;
  font-size: clamp(16px, 0.98vw, 20px);
  line-height: 1.36;
  letter-spacing: 0;
  font-weight: 500;
}

.product-card__price {
  margin: clamp(18px, 1.8svh, 26px) 0 0;
  color: var(--products-ink);
  font-size: clamp(24px, 1.5vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

.product-card__bonus {
  margin: clamp(10px, 1svh, 14px) 0 0;
  color: var(--products-green);
  font-size: clamp(14px, 0.88vw, 18px);
  line-height: 1.28;
  letter-spacing: 0;
  font-weight: 600;
}

.product-card__more {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  margin-top: clamp(24px, 2.3svh, 34px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--products-blue);
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 850;
  cursor: pointer;
}

.product-card__more::after {
  content: "->";
  margin: 0;
  font-size: 1.2em;
  line-height: 1;
}

.products-section__note {
  display: none;
}

.product-modal__preview-visual[data-visual="inulovit"] {
  background-image: url("../img/products/product-inulovit-display.webp");
  background-size: cover;
  background-color: #edf4e5;
}

.product-modal__preview-visual[data-visual="lifeum"] {
  background-image: url("../img/products/product-lifeum-phone.webp");
  background-size: contain;
  background-color: #f7faff;
}

.product-modal__preview-visual[data-visual="smm"] {
  background-image: url("../img/products/product-smm-dashboard.png");
  background-size: contain;
  background-position: center;
  background-color: #0c111b;
}

.product-modal__preview-visual[data-visual="learn"] {
  background-image: url("../img/products/product-niap-display.png");
  background-size: contain;
  background-color: #f5fbff;
}

@media (min-width: 901px) and (max-height: 820px) {
  .products-section {
    gap: clamp(14px, 1.8svh, 22px);
    padding-top: clamp(22px, 3.2svh, 38px);
    padding-bottom: clamp(18px, 2.5svh, 28px);
  }

  .products-section__title {
    font-size: clamp(44px, 3.65vw, 68px);
  }

  .products-section__subtitle {
    font-size: clamp(18px, 1.3vw, 24px);
  }

  .product-card__content {
    padding: clamp(16px, 1.25vw, 24px);
  }

  .product-card__tag {
    min-height: 28px;
    font-size: clamp(12px, 0.75vw, 14px);
  }

  .product-card__title {
    margin-top: 14px;
    font-size: clamp(24px, 1.55vw, 31px);
  }

  .product-card__description {
    margin-top: 8px;
    font-size: clamp(14px, 0.86vw, 17px);
    line-height: 1.32;
  }

  .product-card__price {
    margin-top: 14px;
    font-size: clamp(21px, 1.32vw, 27px);
  }

  .product-card__bonus {
    font-size: clamp(13px, 0.78vw, 15px);
  }

  .product-card__more {
    margin-top: 16px;
  }
}

@media (max-width: 1180px) {
  .products-section {
    height: auto;
    min-height: calc(100svh - var(--header-height));
    grid-template-rows: auto auto;
  }

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

  .product-card {
    min-height: clamp(520px, 58vw, 620px);
  }
}

@media (max-width: 900px) {
  .products-section {
    gap: clamp(24px, 5.4vw, 38px);
    min-height: 100svh;
    padding:
      clamp(50px, 10vw, 86px)
      clamp(22px, 6vw, 50px)
      clamp(34px, 8vw, 62px);
    border-radius: 0 0 clamp(34px, 9vw, 58px) clamp(34px, 9vw, 58px);
    background:
      linear-gradient(180deg, rgba(250, 253, 255, 0.88), rgba(243, 248, 255, 0.84)),
      url("../img/products/products-bg.png") center top / cover no-repeat;
  }

  .products-section::before {
    top: clamp(22px, 6vw, 54px);
    right: clamp(-120px, -18vw, -44px);
    width: min(82vw, 520px);
    opacity: 0.32;
  }

  .products-section__head {
    text-align: left;
  }

  .products-section__title {
    max-width: 720px;
    font-size: clamp(42px, 9.8vw, 78px);
    line-height: 1.06;
  }

  .products-section__subtitle {
    margin-top: clamp(12px, 2.6vw, 18px);
    font-size: clamp(19px, 4.1vw, 29px);
  }

  .products-section__grid {
    grid-template-columns: 1fr;
    gap: clamp(14px, 3.3vw, 22px);
  }

  .product-card {
    grid-template-columns: minmax(118px, 37%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: clamp(208px, 43vw, 306px);
    border-radius: clamp(17px, 3.9vw, 26px);
  }

  .product-card__media {
    border-right: 1px solid rgba(106, 137, 200, 0.08);
    border-bottom: 0;
  }

  .product-card__media_kind_bottle {
    background-position: center;
    background-size: cover;
  }

  .product-card__media_kind_phone {
    background-size: auto 113%;
    background-position: center top;
  }

  .product-card__media_kind_dashboard {
    background-size: contain;
    background-position: center;
  }

  .product-card__media_kind_learn {
    background-size: contain;
    background-position: center;
  }

  .product-card__content {
    padding:
      clamp(18px, 4.2vw, 32px)
      clamp(70px, 14vw, 112px)
      clamp(18px, 4.2vw, 32px)
      clamp(18px, 4.6vw, 34px);
  }

  .product-card__tag {
    min-height: clamp(27px, 6.2vw, 38px);
    padding: 0 clamp(12px, 3vw, 18px);
    font-size: clamp(12px, 2.8vw, 17px);
  }

  .product-card__title {
    margin-top: clamp(16px, 3.5vw, 24px);
    font-size: clamp(27px, 6.4vw, 42px);
  }

  .product-card__description {
    margin-top: clamp(9px, 2.3vw, 14px);
    font-size: clamp(15px, 3.45vw, 22px);
    line-height: 1.36;
  }

  .product-card__price {
    margin-top: clamp(18px, 4.1vw, 28px);
    font-size: clamp(24px, 5.7vw, 37px);
  }

  .product-card__bonus {
    margin-top: clamp(8px, 2vw, 12px);
    font-size: clamp(13px, 3vw, 19px);
  }

  .product-card__more {
    position: absolute;
    top: 50%;
    right: clamp(18px, 4.8vw, 34px);
    justify-content: center;
    width: clamp(54px, 12.5vw, 82px);
    height: clamp(54px, 12.5vw, 82px);
    margin: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(36, 68, 130, 0.13);
    font-size: 0;
    transform: translateY(-50%);
  }

  .product-card__more::after {
    content: "->";
    color: var(--products-blue);
    font-size: clamp(25px, 6.3vw, 38px);
    font-weight: 800;
  }

  .products-section__note {
    display: grid;
    grid-template-columns: clamp(46px, 11vw, 64px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(16px, 4.1vw, 26px);
    margin-top: clamp(12px, 3vw, 20px);
    color: #66709a;
    text-align: left;
    font-size: clamp(16px, 3.7vw, 22px);
    line-height: 1.35;
    font-style: normal;
    font-weight: 600;
  }

  .products-section__note::before {
    content: "";
    width: clamp(46px, 11vw, 64px);
    height: clamp(46px, 11vw, 64px);
    border-radius: 50%;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(135deg, rgba(7, 91, 255, 0.18), rgba(7, 91, 255, 0.04)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 12px 24px rgba(26, 70, 150, 0.1);
  }
}

@media (max-width: 620px) {
  .products-section {
    gap: clamp(20px, 5.3vw, 30px);
    padding:
      clamp(42px, 10.2vw, 62px)
      clamp(16px, 5vw, 28px)
      clamp(28px, 7vw, 44px);
  }

  .products-section__title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .products-section__subtitle {
    font-size: clamp(17px, 4.6vw, 22px);
  }

  .product-card {
    grid-template-columns: minmax(108px, 38%) minmax(0, 1fr);
    min-height: clamp(194px, 57vw, 256px);
  }

  .product-card__content {
    padding:
      clamp(14px, 3.8vw, 20px)
      clamp(60px, 15vw, 78px)
      clamp(14px, 3.8vw, 20px)
      clamp(14px, 4vw, 22px);
  }

  .product-card__tag {
    min-height: clamp(24px, 6.6vw, 32px);
    font-size: clamp(10px, 3vw, 14px);
  }

  .product-card__title {
    margin-top: clamp(11px, 3.1vw, 16px);
    font-size: clamp(22px, 6.6vw, 31px);
  }

  .product-card__description {
    font-size: clamp(12.5px, 3.55vw, 16px);
    line-height: 1.33;
  }

  .product-card__price {
    margin-top: clamp(13px, 3.7vw, 18px);
    font-size: clamp(18px, 5.5vw, 26px);
  }

  .product-card__bonus {
    font-size: clamp(11.5px, 3.2vw, 14.5px);
  }
}

@media (max-width: 430px) {
  .products-section {
    padding-right: clamp(12px, 4vw, 18px);
    padding-left: clamp(12px, 4vw, 18px);
  }

  .product-card {
    grid-template-columns: minmax(102px, 36%) minmax(0, 1fr);
  }

  .product-card__content {
    padding-right: clamp(58px, 16vw, 68px);
  }

  .product-card__title {
    font-size: clamp(20px, 6.4vw, 28px);
  }

  .product-card__description {
    font-size: clamp(12px, 3.45vw, 15px);
  }
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: min(965px, calc(100svh - var(--header-height)));
  min-height: 0;
  margin-top: clamp(30px, 4.2vw, 72px);
  scroll-margin-top: var(--header-height);
  padding:
    clamp(22px, 3svh, 106px)
    clamp(44px, 7.25vw, 118px)
    clamp(20px, 2.8svh, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    url("../img/contact/contact-bg-desktop.png") center bottom / 100% 100% no-repeat,
    #f9fcff;
  color: #070e4d;
}

.contact-section__inner {
  width: min(100%, 1520px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(480px, 598px);
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.contact-section__content {
  min-width: 0;
  transform: translateY(clamp(-116px, -10.2svh, -64px));
}

.contact-section__title {
  margin: 0;
  color: #080d49;
  font-family: var(--font-heading);
  font-size: clamp(50px, 8svh, 70px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.contact-section__title span {
  color: #0877ff;
}

.contact-section__subtitle {
  margin: clamp(24px, 5svh, 48px) 0 0;
  color: #080d49;
  font-size: clamp(21px, 3.3svh, 28px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.contact-form {
  width: 100%;
  height: clamp(560px, calc(100svh - var(--header-height) - 78px), 742px);
  min-height: 0;
  align-self: center;
  padding:
    clamp(28px, 4.2svh, 44px)
    clamp(38px, 3.3vw, 54px)
    clamp(28px, 3.9svh, 40px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 28px 70px rgba(62, 94, 148, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.contact-form__field + .contact-form__field {
  margin-top: clamp(15px, 2.35svh, 22px);
}

.contact-form__label {
  display: block;
  margin: 0 0 clamp(8px, 1.45svh, 14px);
  color: #07104e;
  font-size: clamp(17px, 2.35svh, 22px);
  font-weight: 700;
  line-height: 1.2;
}

.contact-form__input {
  width: 100%;
  height: clamp(48px, 6.8svh, 68px);
  border: 2px solid rgba(182, 190, 215, 0.58);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  color: #07104e;
  font: inherit;
  font-size: clamp(16px, 2.35svh, 22px);
  font-weight: 500;
  line-height: 1.2;
  padding: 0 clamp(18px, 3svh, 27px);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form__textarea {
  display: block;
  height: clamp(76px, 10svh, 104px);
  min-height: clamp(76px, 10svh, 104px);
  padding-top: clamp(14px, 2svh, 20px);
  padding-bottom: clamp(14px, 2svh, 20px);
  line-height: 1.35;
  resize: none;
}

.contact-form__input::placeholder {
  color: rgba(82, 87, 129, 0.52);
}

.contact-form__input:focus {
  border-color: rgba(8, 119, 255, 0.82);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 119, 255, 0.12);
}

.contact-form__checkbox {
  position: relative;
  min-width: 0;
  margin-top: clamp(14px, 2.15svh, 20px);
  display: grid;
  grid-template-columns: clamp(26px, 3.7svh, 31px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(14px, 2.5svh, 21px);
  color: #07104e;
  cursor: default;
}

.contact-form__field + .contact-form__checkbox {
  margin-top: clamp(16px, 2.4svh, 24px);
}

.contact-form__checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__checkbox-mark {
  width: clamp(26px, 3.7svh, 31px);
  height: clamp(26px, 3.7svh, 31px);
  margin-top: 2px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: linear-gradient(135deg, #158cff 0%, #0057ec 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(8, 112, 255, 0.24);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-form__checkbox-mark svg {
  width: 18px;
  height: 14px;
}

.contact-form__checkbox-input:not(:checked) + .contact-form__checkbox-mark {
  border-color: rgba(182, 190, 215, 0.82);
  background: rgba(255, 255, 255, 0.8);
  color: transparent;
  box-shadow: none;
}

.contact-form__checkbox-input:focus-visible + .contact-form__checkbox-mark {
  box-shadow:
    0 8px 18px rgba(8, 112, 255, 0.24),
    0 0 0 4px rgba(8, 119, 255, 0.16);
}

.contact-form__checkbox-text {
  display: block;
  min-width: 0;
  color: #07104e;
  font-size: clamp(15px, 2.2svh, 19px);
  font-weight: 500;
  line-height: 1.42;
  text-decoration: none;
}

.contact-form__checkbox-text[href],
.contact-form__checkbox-text a {
  color: #0877ff;
}

.contact-form__checkbox-text[href]:hover,
.contact-form__checkbox-text:hover,
.contact-form__checkbox-text:focus-visible,
.contact-form__checkbox-text a:hover {
  text-decoration: underline;
}

.contact-form__submit {
  position: relative;
  width: 100%;
  min-height: clamp(56px, 7.8svh, 76px);
  margin-top: clamp(16px, 2.7svh, 26px);
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #0a86ff 0%, #0052f3 100%);
  color: #fff;
  font: inherit;
  font-size: clamp(19px, 2.75svh, 25px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 88px 16px 42px;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(4, 88, 235, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-form__submit:hover {
  filter: saturate(1.08) brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(4, 88, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.contact-form__submit:focus-visible {
  outline: 4px solid rgba(8, 119, 255, 0.22);
  outline-offset: 3px;
}

.contact-form__submit svg {
  position: absolute;
  top: 50%;
  right: 37px;
  width: 34px;
  height: 24px;
  transform: translateY(-50%);
}

@media (max-width: 1380px) {
  .contact-section {
    padding-inline: clamp(42px, 6vw, 86px);
  }

  .contact-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
    gap: 28px;
  }

  .contact-section__title {
    font-size: clamp(48px, 7svh, 58px);
  }

  .contact-section__subtitle {
    margin-top: 40px;
    font-size: 25px;
  }

  .contact-form {
    height: clamp(520px, calc(100svh - var(--header-height) - 70px), 660px);
    min-height: 0;
    padding:
      clamp(24px, 3.75svh, 36px)
      clamp(32px, 3vw, 42px)
      clamp(24px, 3.4svh, 34px);
  }

  .contact-form__label,
  .contact-form__input {
    font-size: clamp(16px, 2.25svh, 20px);
  }

  .contact-form__input {
    height: clamp(46px, 6.7svh, 60px);
  }

  .contact-form__textarea {
    height: clamp(70px, 9.8svh, 92px);
    min-height: clamp(70px, 9.8svh, 92px);
  }

  .contact-form__checkbox-text {
    font-size: clamp(14px, 2.05svh, 18px);
  }

  .contact-form__submit {
    min-height: clamp(54px, 7.4svh, 68px);
    font-size: clamp(18px, 2.6svh, 23px);
  }
}

@media (max-width: 1180px) {
  .contact-section {
    height: min(720px, calc(100svh - var(--header-height)));
    min-height: 0;
    padding:
      clamp(22px, 4svh, 76px)
      clamp(34px, 5vw, 52px)
      clamp(20px, 4svh, 92px);
  }

  .contact-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: clamp(24px, 3.4vw, 42px);
  }

  .contact-section__content {
    transform: translateY(clamp(-68px, -7.5svh, -38px));
  }

  .contact-section__title {
    font-size: clamp(38px, 5.7svh, 46px);
  }

  .contact-section__subtitle {
    margin-top: clamp(18px, 3.6svh, 34px);
    font-size: clamp(17px, 2.75svh, 23px);
  }

  .contact-form {
    height: clamp(500px, calc(100svh - var(--header-height) - 58px), 620px);
    min-height: 0;
    padding:
      clamp(20px, 3.3svh, 32px)
      clamp(26px, 3.3vw, 36px)
      clamp(20px, 3svh, 30px);
  }

  .contact-form__field + .contact-form__field {
    margin-top: clamp(14px, 2.2svh, 20px);
  }

  .contact-form__label {
    margin-bottom: clamp(7px, 1.3svh, 11px);
    font-size: clamp(15px, 2.05svh, 18px);
  }

  .contact-form__input {
    height: clamp(44px, 6.5svh, 54px);
    border-radius: 14px;
    font-size: clamp(15px, 2.05svh, 18px);
    padding-inline: 22px;
  }

  .contact-form__textarea {
    height: clamp(66px, 9.3svh, 84px);
    min-height: clamp(66px, 9.3svh, 84px);
    padding-top: clamp(12px, 1.8svh, 16px);
    padding-bottom: clamp(12px, 1.8svh, 16px);
  }

  .contact-form__field + .contact-form__checkbox {
    margin-top: clamp(14px, 2.4svh, 22px);
  }

  .contact-form__checkbox {
    margin-top: clamp(12px, 2.1svh, 18px);
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-form__checkbox-mark {
    width: 29px;
    height: 29px;
  }

  .contact-form__checkbox-text {
    font-size: clamp(14px, 1.85svh, 16px);
  }

  .contact-form__submit {
    min-height: clamp(52px, 7.4svh, 62px);
    margin-top: clamp(14px, 2.5svh, 22px);
    font-size: clamp(17px, 2.35svh, 20px);
    padding-right: 72px;
  }

  .contact-form__submit svg {
    right: 28px;
    width: 30px;
  }
}

@media (max-width: 900px) {
  .contact-section {
    height: auto;
    min-height: 0;
    margin-top: clamp(30px, 7vw, 58px);
    padding: 78px clamp(36px, 8vw, 54px) 132px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
      url("../img/contact/contact-bg-mobile.png") center bottom / cover no-repeat,
      #f9fcff;
  }

  .contact-section__inner {
    width: min(100%, 696px);
    display: block;
  }

  .contact-section__content {
    transform: none;
  }

  .contact-section__title {
    font-size: 52px;
    line-height: 1.17;
  }

  .contact-section__subtitle {
    margin-top: 38px;
    font-size: 27px;
    line-height: 1.55;
  }

  .contact-form {
    height: auto;
    margin-top: 58px;
    border-radius: 30px;
    padding: 50px 48px 58px;
  }

  .contact-form__label {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .contact-form__input {
    height: 84px;
    border-radius: 16px;
    font-size: 25px;
    padding-inline: 31px;
  }

  .contact-form__textarea {
    height: 146px;
    min-height: 146px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .contact-form__field + .contact-form__field {
    margin-top: 42px;
  }

  .contact-form__field + .contact-form__checkbox {
    margin-top: 48px;
  }

  .contact-form__checkbox {
    margin-top: 35px;
    grid-template-columns: 33px minmax(0, 1fr);
    gap: 24px;
  }

  .contact-form__checkbox-mark {
    width: 33px;
    height: 33px;
  }

  .contact-form__checkbox-text {
    font-size: 24px;
  }

  .contact-form__submit {
    min-height: 106px;
    margin-top: 60px;
    border-radius: 16px;
    font-size: 30px;
    padding-right: 96px;
  }

  .contact-form__submit svg {
    right: 40px;
    width: 34px;
  }
}

@media (max-width: 620px) {
  .contact-section {
    padding: 66px clamp(20px, 6vw, 32px) 108px;
  }

  .contact-section__title {
    font-size: 34px;
  }

  .contact-section__subtitle {
    margin-top: 28px;
    font-size: 21px;
    line-height: 1.55;
  }

  .contact-form {
    margin-top: 52px;
    padding: 30px;
    border-radius: 26px;
  }

  .contact-form__label {
    margin-bottom: 13px;
    font-size: 17px;
  }

  .contact-form__input {
    height: 58px;
    border-radius: 13px;
    font-size: 18px;
    padding-inline: 19px;
  }

  .contact-form__textarea {
    height: 96px;
    min-height: 96px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .contact-form__field + .contact-form__field {
    margin-top: 28px;
  }

  .contact-form__field + .contact-form__checkbox {
    margin-top: 32px;
  }

  .contact-form__checkbox {
    margin-top: 25px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 15px;
  }

  .contact-form__checkbox-mark {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .contact-form__checkbox-mark svg {
    width: 16px;
    height: 12px;
  }

  .contact-form__checkbox-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-form__submit {
    min-height: 68px;
    margin-top: 36px;
    border-radius: 13px;
    font-size: 21px;
    padding: 14px 66px 14px 24px;
  }

  .contact-form__submit svg {
    right: 25px;
    width: 28px;
  }
}

@media (max-width: 430px) {
  .contact-section {
    padding: 56px 20px 94px;
  }

  .contact-section__title {
    font-size: 31px;
  }

  .contact-section__subtitle {
    margin-top: 24px;
    font-size: 18px;
  }

  .contact-form {
    margin-top: 44px;
    padding: 26px 22px 28px;
    border-radius: 24px;
  }

  .contact-form__input {
    height: 54px;
    font-size: 16px;
    padding-inline: 17px;
  }

  .contact-form__textarea {
    height: 88px;
    min-height: 88px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .contact-form__checkbox {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 13px;
  }

  .contact-form__checkbox-mark {
    width: 26px;
    height: 26px;
  }

  .contact-form__checkbox-text {
    font-size: 15px;
  }

  .contact-form__submit {
    min-height: 62px;
    font-size: 19px;
    padding-right: 58px;
  }

  .contact-form__submit svg {
    right: 21px;
    width: 26px;
  }
}

@media (max-width: 370px) {
  .contact-section {
    padding-inline: 16px;
  }

  .contact-section__title {
    font-size: 29px;
  }

  .contact-section__subtitle {
    font-size: 17px;
  }

  .contact-form {
    padding-inline: 18px;
  }

  .contact-form__checkbox-text {
    font-size: 14px;
  }

  .contact-form__submit {
    font-size: 17px;
  }
}

.footer {
  margin-top: clamp(28px, 4vw, 72px);
  background: transparent;
  color: #071238;
}

.footer__panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(210px, 15vw, 300px);
  border: 1px solid rgba(117, 140, 178, 0.22);
  border-radius: clamp(12px, 0.8vw, 16px) clamp(12px, 0.8vw, 16px) 0 0;
  background:
    radial-gradient(circle at 16% 42%, rgba(229, 241, 255, 0.72), transparent 33%),
    radial-gradient(circle at 78% 32%, rgba(243, 248, 255, 0.9), transparent 32%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(44, 74, 126, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: clamp(36px, 3.4vw, 62px) clamp(54px, 3.9vw, 88px) clamp(16px, 1.35vw, 26px);
}

.footer__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(6px, 0.52vw, 10px);
  background: linear-gradient(90deg, #0c62ff, #086af8 52%, #0058e9);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(250px, auto) minmax(520px, 1fr) minmax(230px, 0.32fr);
  align-items: center;
  gap: clamp(30px, 3.2vw, 64px);
}

.footer__logo {
  min-width: 0;
  width: clamp(220px, 16.8vw, 320px);
  height: clamp(52px, 4vw, 76px);
  display: inline-flex;
  align-items: center;
  color: #071238;
  text-decoration: none;
}

.footer__logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer__logo-mark {
  width: clamp(54px, 3.3vw, 66px);
  height: clamp(54px, 3.3vw, 66px);
  flex: 0 0 auto;
}

.footer__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__logo-text {
  font-size: clamp(25px, 1.62vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  white-space: nowrap;
}

.footer__nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 clamp(16px, 1.32vw, 28px);
  border-left: 1px solid rgba(118, 138, 172, 0.34);
  color: #071238;
  text-decoration: none;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.footer__nav a:last-child {
  border-right: 1px solid rgba(118, 138, 172, 0.34);
}

.footer__nav a:hover,
.footer__contacts a:hover,
.footer__legal a:hover {
  color: #0c62ff;
}

.footer__contacts {
  margin: 0;
  padding-left: clamp(28px, 2.6vw, 54px);
  border-left: 1px solid rgba(118, 138, 172, 0.34);
  color: #071238;
  font-style: normal;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1.42;
  font-weight: 500;
}

.footer__contacts a,
.footer__contacts span {
  display: block;
}

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

.footer__bottom {
  margin-top: clamp(18px, 1.65vw, 30px);
  padding-top: clamp(12px, 1vw, 18px);
  border-top: 1px solid rgba(118, 138, 172, 0.25);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.footer__copy {
  margin: 0;
  color: #071238;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.35;
  font-weight: 500;
}

.footer__legal {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}

.footer__legal a {
  color: #071238;
  text-decoration: none;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
}

.footer__legal a + a {
  margin-left: clamp(24px, 2.7vw, 52px);
  padding-left: clamp(24px, 2.7vw, 52px);
  border-left: 1px solid rgba(118, 138, 172, 0.34);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.product-modal[data-open="true"] {
  display: block;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 27, 0.55);
  backdrop-filter: blur(3px);
}

.product-modal__dialog {
  position: relative;
  width: min(1360px, calc(100% - 24px));
  margin: 24px auto;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px 20px;
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.product-modal__close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 30px;
  color: #6a7288;
  cursor: pointer;
  line-height: 1;
}

.product-modal__back {
  border: 0;
  background: transparent;
  color: #50576a;
  font-size: 15px;
  padding: 4px 0;
  cursor: pointer;
}

.product-modal__layout {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(320px, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.product-modal__preview-visual {
  border-radius: 14px;
  min-height: 350px;
  background: linear-gradient(180deg, #f6f7fb, #eef1f8);
  border: 1px solid rgba(15, 22, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal__preview-visual::before {
  content: attr(data-label);
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  width: 168px;
  height: 226px;
  border-radius: 20px;
  background: linear-gradient(160deg, #0f4ecf, #0b2f7b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(10, 30, 84, 0.2);
}

.product-modal__preview-link {
  display: inline-flex;
  margin-top: 12px;
  color: #1f44ad;
  text-decoration: none;
  font-size: 18px;
}

.product-modal__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #e7f6ee;
  color: #19815f;
}

.product-modal__title {
  margin: 12px 0 0;
  font-size: clamp(38px, 3vw, 62px);
  line-height: 1.08;
}

.product-modal__lead {
  margin: 14px 0 0;
  color: #42495f;
  font-size: clamp(20px, 1.35vw, 28px);
}

.product-modal__text {
  margin: 12px 0 0;
  color: #5c6377;
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.4;
}

.product-modal__stats {
  margin-top: 22px;
  border-top: 1px solid rgba(14, 22, 48, 0.12);
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-modal__stat {
  border: 1px solid rgba(14, 22, 48, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
}

.product-modal__stat-label {
  display: block;
  color: #646c82;
  font-size: 14px;
}

.product-modal__stat-value {
  display: block;
  margin-top: 6px;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.product-modal__partner {
  border: 1px solid rgba(14, 22, 48, 0.12);
  border-radius: 14px;
  background: #f3f7ff;
  padding: 22px 18px;
}

.product-modal__partner-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.product-modal__partner-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #39435a;
  font-size: 20px;
  line-height: 1.4;
}

.product-modal__partner-list li + li {
  margin-top: 10px;
}

.product-modal__cta {
  margin-top: 18px;
  width: 100%;
}

@media (max-width: 1180px) {
  .hero {
    height: min(760px, calc(100svh - var(--header-height)));
    min-height: 0;
  }

  .hero__inner {
    padding-top: clamp(42px, 5.7vh, 64px);
  }

  .hero__content {
    max-width: 52vw;
  }

  .hero__title {
    font-size: clamp(42px, 5vw, 60px);
  }

  .hero__visual {
    right: -56px;
    width: min(55vw, 660px, calc((100svh - var(--header-height)) * 1.06));
  }

  .hero__benefits {
    width: min(52vw, 600px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: clamp(38px, 4.5vh, 52px);
    padding: 8px;
    border-radius: 18px;
  }

  .hero-benefit {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 7px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .hero-benefit__icon {
    width: 38px;
    height: 38px;
  }

  .hero-benefit__icon img,
  .hero-benefit__icon svg {
    width: 25px;
    height: 25px;
  }

  .hero-benefit__title {
    font-size: 15px;
    line-height: 1.18;
    white-space: normal;
  }

  .hero-benefit__text {
    font-size: 13px;
    line-height: 1.34;
  }

  .mission-section {
    container-type: normal;
    aspect-ratio: auto;
    height: min(820px, 100svh);
    min-height: min(650px, 100svh);
    padding: clamp(30px, 4.2vw, 48px) clamp(28px, 3.6vw, 42px);
    background-size: cover;
    background-position: center;
  }

  .mission-section__layout {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(390px, 1fr) minmax(350px, 0.82fr);
    gap: clamp(22px, 3.2vw, 38px);
    height: 100%;
    align-items: start;
  }

  .mission-section__content {
    position: static;
    width: auto;
    max-width: 540px;
  }

  .mission-section__eyebrow {
    top: -5px;
    margin-bottom: clamp(20px, 2vw, 25px);
    font-size: clamp(12px, 1.25vw, 15px);
  }

  .mission-section__title {
    font-size: clamp(40px, 4.3vw, 54px);
  }

  .mission-section__title::after {
    margin-top: clamp(14px, 1.8vw, 22px);
  }

  .mission-section__text {
    max-width: 100%;
    margin-top: clamp(14px, 1.7vw, 18px);
    font-size: clamp(15px, 1.42vw, 17px);
    line-height: 1.38;
  }

  .mission-section__quote {
    max-width: 100%;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-top: clamp(44px, 4vw, 54px);
    text-align: center;
    font-size: clamp(18px, 1.82vw, 22px);
    line-height: 1.3;
  }

  .mission-section__quote-mark:not(.mission-section__quote-mark_end) {
    position: static;
    left: auto;
    top: auto;
  }

  .mission-section__cards {
    position: static;
    justify-self: end;
    width: min(100%, 362px);
    gap: clamp(10px, 1vw, 12px);
    margin-top: clamp(22px, 2.8vw, 32px);
  }

  .mission-card {
    height: clamp(158px, 15.2vw, 170px);
    min-height: 0;
    grid-template-columns: clamp(62px, 6vw, 70px) minmax(0, 1fr);
    gap: clamp(11px, 1.15vw, 13px);
    padding: clamp(12px, 1.3vw, 14px);
  }

  .mission-card__icon {
    width: clamp(62px, 6vw, 70px);
    height: clamp(62px, 6vw, 70px);
  }

  .mission-card__icon svg {
    width: clamp(35px, 3.55vw, 40px);
    height: clamp(35px, 3.55vw, 40px);
  }

  .mission-card__title {
    font-size: clamp(19px, 2vw, 21px);
  }

  .mission-card__description {
    margin-top: 6px;
    font-size: clamp(15px, 1.45vw, 16px);
    line-height: 1.32;
  }

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

  .product-card {
    grid-template-columns: minmax(132px, 0.92fr) minmax(0, 1fr);
  }

  .product-modal__layout {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
  }

  .product-modal__partner {
    grid-column: 1 / -1;
  }

  .product-modal__partner-title {
    font-size: clamp(28px, 2.2vw, 38px);
  }

  .product-modal__partner-list {
    font-size: clamp(16px, 1.5vw, 20px);
  }

  .process-section__flow {
    max-width: 760px;
    height: 72px;
    margin-bottom: -12px;
  }

  .process-section__line_theme_blue {
    left: 104px;
    top: 40px;
    width: 178px;
  }

  .process-section__line_theme_green {
    left: 278px;
    top: 36px;
    width: 186px;
  }

  .process-section__line_theme_purple {
    left: 456px;
    top: 40px;
    width: 176px;
  }

  .process-section__point {
    top: 32px;
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .process-section__point_theme_blue {
    left: 273px;
  }

  .process-section__point_theme_green {
    left: 450px;
  }

  .process-section__point_theme_purple {
    left: 626px;
  }

  .process-card__art {
    height: 126px;
  }

  .income-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .income-card {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.56fr);
  }

  .income-card__title {
    font-size: clamp(30px, 3vw, 42px);
  }

  .income-card__description {
    font-size: clamp(16px, 1.75vw, 21px);
  }

  .income-card__item {
    font-size: clamp(15px, 1.58vw, 18px);
  }

  .footer__panel {
    padding-right: clamp(34px, 4vw, 52px);
    padding-left: clamp(34px, 4vw, 52px);
  }

  .footer__top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .footer__logo {
    width: clamp(220px, 28vw, 300px);
    height: clamp(50px, 6vw, 68px);
  }

  .footer__nav {
    justify-content: flex-start;
  }

  .footer__nav a:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .footer__contacts {
    width: min(100%, 420px);
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(118, 138, 172, 0.25);
    border-left: 0;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer__legal {
    grid-column: 1;
    justify-self: center;
    flex-wrap: wrap;
    gap: 8px 0;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .mission-section__layout {
    grid-template-columns: minmax(360px, 1fr) minmax(330px, 0.78fr);
    gap: clamp(34px, 4.4vw, 46px);
  }

  .mission-section__cards {
    width: min(100%, 350px);
    margin-top: clamp(18px, 2.2vw, 26px);
  }

  .mission-card {
    height: clamp(152px, 14.8vw, 162px);
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }

  .mission-card__icon {
    width: 60px;
    height: 60px;
  }

  .mission-card__icon svg {
    width: 35px;
    height: 35px;
  }

  .mission-card__title {
    font-size: 19px;
  }

  .mission-card__description {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.32;
  }
}

.frame-preview + .frame-preview {
  margin-top: 24px;
}

.frame-preview__picture,
.frame-preview__image {
  width: 100%;
}

.frame-preview__image {
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--page-border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
  background: #000;
}

@media (max-width: 900px) {
  :root {
    --header-height: clamp(56px, 10vw, 88px);
  }

  .header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  .header::after {
    content: "";
    position: fixed;
    inset: var(--header-height) 0 0;
    background: linear-gradient(180deg, rgba(7, 18, 56, 0.12), rgba(7, 18, 56, 0));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  .header.header_menu_open::after {
    opacity: 1;
  }

  .header__inner {
    position: relative;
    z-index: 2;
    min-height: var(--header-height);
    padding:
      clamp(8px, 2.4vw, 18px)
      clamp(16px, 5.2vw, 44px);
    gap: clamp(8px, 2vw, 14px);
    justify-content: space-between;
  }

  .logo {
    z-index: 3;
    width: clamp(122px, 21vw, 176px);
    height: clamp(34px, 6.4vw, 54px);
  }

  .logo__image {
    left: 0;
    width: clamp(122px, 21vw, 176px);
  }

  .menu {
    position: fixed;
    top: calc(var(--header-height) + clamp(7px, 2.1vw, 12px));
    right: clamp(12px, 3.8vw, 24px);
    left: auto;
    z-index: 90;
    width: min(calc(100vw - 44px), 238px);
    display: grid;
    gap: 2px;
    padding: 7px;
    border: 1px solid rgba(117, 140, 178, 0.2);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92)),
      #ffffff;
    box-shadow: 0 18px 46px rgba(31, 54, 112, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
  }

  .menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(117, 140, 178, 0.18);
    border-left: 1px solid rgba(117, 140, 178, 0.18);
    background: rgba(255, 255, 255, 0.96);
    transform: rotate(45deg);
  }

  .header.header_menu_open .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu__link {
    position: relative;
    min-height: 36px;
    padding: 0 9px 0 13px;
    border-radius: 12px;
    color: #071238;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    text-align: right;
    font-size: clamp(13.5px, 3.35vw, 15px);
    line-height: 1.18;
    font-weight: 800;
    transition:
      background-color 0.16s ease,
      color 0.16s ease,
      transform 0.16s ease;
  }

  .menu__link::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 0;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.32;
    transform: rotate(45deg);
    flex: 0 0 auto;
  }

  .menu__link + .menu__link {
    border-top: 0;
  }

  .menu__link:hover,
  .menu__link:focus-visible {
    outline: none;
    background: rgba(12, 98, 255, 0.075);
    color: #0c62ff;
    transform: translateX(-2px);
  }

  .menu__link:active {
    background: rgba(12, 98, 255, 0.12);
    transform: translateX(-1px);
  }

  .header__cta {
    display: none;
  }

  .header__mobile-action {
    position: absolute;
    top: 50%;
    right: clamp(72px, 14vw, 118px);
    z-index: 3;
    width: clamp(132px, 34vw, 152px);
    min-height: clamp(38px, 7.5vw, 48px);
    padding: 0 clamp(11px, 2.5vw, 16px);
    border-radius: clamp(11px, 2vw, 14px);
    background: linear-gradient(135deg, #0659ff 0%, #6b60ff 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(12px, 2.65vw, 15px);
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(52, 83, 255, 0.18);
    transform: translateY(-50%);
    white-space: nowrap;
  }

  .header__menu-button {
    position: absolute;
    top: 50%;
    right: clamp(14px, 4.8vw, 40px);
    z-index: 4;
    width: clamp(34px, 5.2vw, 46px);
    height: clamp(34px, 5.2vw, 46px);
    border: 1px solid rgba(117, 140, 178, 0.18);
    padding: 7px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #111a35;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(44, 74, 126, 0.08);
    transform: translateY(-50%);
    touch-action: manipulation;
  }

  .header__menu-button span {
    width: clamp(24px, 4.6vw, 38px);
    height: clamp(2px, 0.35vw, 3px);
    border-radius: 999px;
    background: currentColor;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .header__menu-button:hover,
  .header__menu-button:focus-visible {
    outline: none;
    border-color: rgba(12, 98, 255, 0.26);
    background: rgba(239, 246, 255, 0.92);
    color: #0c62ff;
  }

  .header.header_menu_open .header__menu-button span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header.header_menu_open .header__menu-button span:nth-child(2) {
    opacity: 0;
  }

  .header.header_menu_open .header__menu-button span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .button_size_medium {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 9px;
  }

  .page__main {
    padding: 0;
  }

  .page__main > section:not(.hero),
  .page__main > .footer {
    width: min(calc(100% - 16px), var(--layout-max));
  }

  .page__main > .footer {
    width: 100%;
  }

  .page__main > section.mission-section {
    width: 100%;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--header-height));
    background:
      radial-gradient(circle at 82% 28%, rgba(113, 124, 255, 0.22), transparent 24%),
      linear-gradient(160deg, #ffffff 0%, #f8fbff 40%, #eef1ff 100%);
  }

  .hero__bg {
    top: clamp(34px, 8vw, 76px);
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 88.5%;
    object-fit: cover;
    object-position: 57% 100%;
    opacity: 0.82;
    transform: none;
  }

  .hero__inner {
    min-height: inherit;
    transform: none;
    padding:
      clamp(18px, 5vw, 42px)
      clamp(22px, 5.7vw, 49px)
      clamp(20px, 4vw, 34px);
    display: flex;
    flex-direction: column;
  }

  .hero__inner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: min(36%, 320px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.56) 58%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .hero::before,
  .hero::after {
    content: none;
  }

  .hero__content {
    display: contents;
    max-width: 100%;
    transform: none;
  }

  .hero__content::before {
    content: none;
  }

  .hero__title {
    order: 1;
    position: relative;
    z-index: 3;
    font-size: clamp(30px, 7.7vw, 66px);
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: clamp(8px, 2.6vw, 22px);
  }

  .hero__subtitle {
    order: 1;
    position: relative;
    z-index: 3;
    font-size: clamp(15px, 3.65vw, 31px);
    line-height: 1.34;
  }

  .hero__subtitle + .hero__subtitle {
    margin-top: clamp(4px, 1vw, 8px);
  }

  .hero__actions {
    order: 5;
    position: relative;
    z-index: 3;
    margin-top: clamp(16px, 4vw, 34px);
    flex-direction: column;
    gap: clamp(8px, 2.4vw, 20px);
  }

  .button_size_large {
    width: min(100%, 433px);
    min-width: 0;
    min-height: clamp(46px, 9.6vw, 82px);
    font-size: clamp(17px, 3vw, 26px);
    padding: clamp(10px, 2.4vw, 20px) clamp(22px, 5vw, 42px);
    border-radius: clamp(12px, 2.2vw, 19px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 100vw;
    height: auto;
    aspect-ratio: 853 / 817;
    margin: clamp(6px, 4vw, 34px) calc(clamp(22px, 5.7vw, 49px) * -1) 0;
    order: 2;
  }

  .hero__visual::before {
    display: none;
  }

  .hero-phone_primary {
    left: 22%;
    top: 17%;
    bottom: auto;
    width: 31%;
  }

  .hero-phone_partner {
    left: 46.5%;
    top: 4.5%;
    bottom: auto;
    width: 31.5%;
  }

  .hero__float-card {
    display: block;
    z-index: 4;
    filter: drop-shadow(0 16px 24px rgba(61, 76, 152, 0.18)) contrast(1.08) saturate(1.08);
  }

  .hero__float-card_partner {
    top: 2%;
    left: 4%;
    width: 32%;
  }

  .hero__float-card_link {
    top: 30%;
    right: 4%;
    width: 22.5%;
  }

  .hero__float-card_income {
    top: 59.5%;
    right: 6%;
    width: 25%;
  }

  .hero__benefits {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 8px), 789px);
    align-self: center;
    order: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 2vw, 18px);
    margin: clamp(8px, 1.5vw, 14px) auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .hero-benefit {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(7px, 1.8vw, 14px);
    padding: clamp(16px, 3.4vw, 28px) clamp(8px, 2vw, 18px);
    text-align: center;
    border-color: rgba(87, 112, 210, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.78));
    box-shadow: 0 16px 34px rgba(83, 96, 166, 0.1);
    backdrop-filter: blur(8px);
  }

  .hero-benefit__icon {
    width: clamp(44px, 7vw, 60px);
    height: clamp(44px, 7vw, 60px);
  }

  .hero-benefit__icon img,
  .hero-benefit__icon svg {
    width: clamp(27px, 4.2vw, 34px);
    height: clamp(27px, 4.2vw, 34px);
  }

  .hero-benefit__body {
    gap: clamp(6px, 1.3vw, 10px);
  }

  .hero-benefit__title {
    font-size: clamp(15px, 2.9vw, 24px);
    line-height: 1.18;
    white-space: normal;
  }

  .hero-benefit__text {
    color: #5d6882;
    font-size: clamp(12px, 2.25vw, 18px);
    line-height: 1.34;
  }

  .mission-section {
    height: auto;
    min-height: 0;
    margin-top: 20px;
    padding: clamp(34px, 7vw, 54px) clamp(20px, 5.2vw, 44px);
    background: #f4faff;
  }

  .mission-section::after {
    content: "";
    position: absolute;
    inset: -28px;
    z-index: 0;
    background: url("../img/mission/mission-bg.png") 76% 48px / clamp(840px, 128vw, 1120px) auto no-repeat;
    filter: none;
    opacity: 0.82;
    transform: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.22) 28px, #000 108px, #000 calc(100% - 150px), rgba(0, 0, 0, 0.4) calc(100% - 72px), transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.22) 28px, #000 108px, #000 calc(100% - 150px), rgba(0, 0, 0, 0.4) calc(100% - 72px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
  }

  .mission-section::before {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46) 42%, rgba(255, 255, 255, 0.62)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.34) 56%, rgba(255, 255, 255, 0.04) 100%);
  }

  .mission-section__layout {
    position: relative;
    z-index: 2;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: clamp(26px, 5vw, 38px);
  }

  .mission-section__content {
    max-width: 650px;
  }

  .mission-section__eyebrow {
    top: -4px;
    margin-bottom: 21px;
    font-size: clamp(12px, 2vw, 14px);
  }

  .mission-section__title {
    font-size: clamp(40px, 8.9vw, 64px);
    line-height: 1.02;
  }

  .mission-section__title::after {
    width: 72px;
    margin-top: 18px;
  }

  .mission-section__text {
    margin-top: 18px;
    font-size: clamp(16px, 3.2vw, 20px);
    line-height: 1.5;
  }

  .mission-section__quote {
    margin-top: 54px;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: clamp(20px, 4.1vw, 26px);
    line-height: 1.38;
  }

  .mission-section__quote-mark:not(.mission-section__quote-mark_end) {
    position: static;
    left: auto;
    top: auto;
  }

  .mission-section__cards {
    justify-self: stretch;
    width: min(100%, 640px);
    margin: 0 auto;
    gap: 12px;
  }

  .mission-card {
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    border-radius: 16px;
    padding: 18px;
  }

  .mission-card__icon {
    width: 78px;
    height: 78px;
  }

  .mission-card__icon svg {
    width: 44px;
    height: 44px;
  }

  .mission-card__title {
    font-size: clamp(22px, 4.4vw, 26px);
  }

  .mission-card__description {
    margin-top: 8px;
    font-size: clamp(14px, 3vw, 17px);
    line-height: 1.46;
  }

  .products-section {
    margin-top: 24px;
    padding-bottom: 10px;
  }

  .products-section__title {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  .products-section__subtitle {
    font-size: clamp(14px, 3.9vw, 18px);
  }

  .products-section__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    grid-template-columns: 120px 1fr;
  }

  .product-card__media {
    min-height: 190px;
    padding: 10px;
  }

  .product-card__title {
    font-size: clamp(22px, 6.3vw, 28px);
  }

  .product-card__description {
    font-size: clamp(13px, 3.7vw, 16px);
  }

  .product-card__price {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .product-card__bonus {
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .product-card__more {
    font-size: 18px;
  }

  .products-section__note {
    font-size: 14px;
  }

  .product-modal__dialog {
    width: calc(100% - 12px);
    margin: 6px auto;
    max-height: calc(100vh - 12px);
    border-radius: 12px;
    padding: 10px 10px 14px;
  }

  .product-modal__layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-modal__preview-visual {
    min-height: 240px;
  }

  .product-modal__preview-visual::before {
    width: 120px;
    height: 170px;
    font-size: 42px;
    border-radius: 14px;
  }

  .product-modal__preview-link {
    font-size: 15px;
  }

  .product-modal__title {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .product-modal__lead {
    font-size: clamp(16px, 4.4vw, 20px);
  }

  .product-modal__text {
    font-size: clamp(14px, 4vw, 18px);
  }

  .product-modal__stats {
    grid-template-columns: 1fr;
  }

  .product-modal__stat-value {
    font-size: 26px;
  }

  .product-modal__partner-title {
    font-size: clamp(24px, 6.8vw, 30px);
  }

  .product-modal__partner-list {
    font-size: clamp(14px, 3.9vw, 17px);
  }

  .process-section {
    margin-top: 24px;
    padding-bottom: 12px;
  }

  .process-section__flow {
    display: none;
  }

  .process-section__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card {
    border-radius: 14px;
    padding: 12px;
  }

  .process-card__art {
    height: 140px;
    margin-bottom: 10px;
  }

  .process-card__title {
    font-size: clamp(24px, 6vw, 30px);
  }

  .process-card__text {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .process-section__note {
    margin-top: 12px;
    padding: 0 10px;
    text-align: center;
    font-size: 13px;
  }

  .process-section__note::before,
  .process-section__note::after {
    display: none;
  }

  .income-section {
    margin-top: 24px;
    padding-bottom: 10px;
  }

  .income-section__title {
    font-size: clamp(32px, 8.4vw, 40px);
  }

  .income-section__grid {
    gap: 12px;
  }

  .income-card {
    grid-template-columns: 1fr;
    border-radius: 14px;
    padding: 12px;
  }

  .income-card__title {
    font-size: clamp(30px, 8vw, 38px);
    margin-top: 10px;
  }

  .income-card__description {
    font-size: clamp(15px, 4.1vw, 18px);
  }

  .income-card__item {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .income-card__visual {
    justify-content: center;
  }

  .income-phone {
    width: 150px;
    height: 290px;
  }

  .trust-section {
    margin-top: 24px;
    aspect-ratio: auto;
    height: auto;
    min-height: 92svh;
    padding: clamp(72px, 15vw, 92px) clamp(16px, 5vw, 30px) clamp(24px, 6vw, 42px);
    border-radius: clamp(20px, 5vw, 28px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(245, 249, 255, 0.1) 45%, rgba(240, 247, 255, 0.24) 100%),
      url("../img/trust/trust-bg-mobile.png") center top / cover no-repeat,
      #f2f7ff;
  }

  .trust-section::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(236, 245, 255, 0.22) 100%);
  }

  .trust-section__title {
    max-width: min(82vw, 360px);
    margin: 0 auto;
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1.06;
  }

  .trust-section__subtitle {
    max-width: min(88vw, 390px);
    margin: clamp(16px, 4vw, 22px) auto 0;
    font-size: clamp(16px, 4.05vw, 20px);
    line-height: 1.34;
  }

  .trust-section__grid {
    width: min(82vw, 360px);
    max-width: none;
    margin: clamp(38px, 9vw, 54px) auto 0;
    grid-template-columns: 1fr;
    gap: clamp(14px, 3.7vw, 20px);
  }

  .trust-item {
    min-height: clamp(82px, 20vw, 96px);
    border-radius: clamp(18px, 5vw, 24px);
    padding: clamp(9px, 2.2vw, 13px) clamp(18px, 4.8vw, 28px);
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(18px, 5vw, 26px);
    text-align: left;
  }

  .trust-item__icon {
    width: clamp(58px, 15.2vw, 70px);
    height: clamp(58px, 15.2vw, 70px);
  }

  .trust-item__icon svg {
    width: clamp(40px, 10.8vw, 52px);
    height: clamp(40px, 10.8vw, 52px);
  }

  .trust-item__title {
    margin-top: 0;
    font-size: clamp(18px, 4.65vw, 24px);
    line-height: 1.12;
    white-space: nowrap;
  }

  .trust-item__text {
    margin-top: clamp(4px, 1.2vw, 7px);
    font-size: clamp(14px, 3.65vw, 17px);
    line-height: 1.28;
  }

  .trust-section__cta {
    width: min(88vw, 390px);
    max-width: none;
    margin: clamp(24px, 6.4vw, 36px) auto 0;
    grid-template-columns: clamp(68px, 18vw, 84px) minmax(0, 1fr);
    gap: clamp(14px, 3.8vw, 22px) clamp(16px, 4.2vw, 24px);
    padding: clamp(18px, 4.7vw, 26px) clamp(16px, 4.7vw, 28px) clamp(18px, 4.7vw, 26px);
    border-radius: clamp(22px, 6vw, 30px);
  }

  .trust-section__brand {
    width: clamp(68px, 18vw, 84px);
    height: clamp(68px, 18vw, 84px);
    border-radius: clamp(14px, 3.8vw, 20px);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(66, 103, 173, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    justify-content: center;
    padding: 0;
  }

  .trust-section__brand img {
    width: 74%;
    height: 74%;
  }

  .trust-section__brand span {
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .trust-section__cta-copy {
    align-self: center;
  }

  .trust-section__cta-title {
    font-size: clamp(23px, 6.1vw, 30px);
    line-height: 1.14;
    white-space: normal;
  }

  .trust-section__mobile-break {
    display: block;
  }

  .trust-section__cta-text {
    font-size: clamp(14px, 3.75vw, 18px);
    line-height: 1.34;
  }

  .trust-section__cta-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: clamp(62px, 15.6vw, 76px);
    font-size: clamp(23px, 6.3vw, 31px);
    border-radius: clamp(14px, 3.2vw, 18px);
  }

  .trust-section__mobile-divider {
    grid-column: 1 / -1;
    color: rgba(7, 22, 94, 0.64);
    display: flex;
    align-items: center;
    gap: clamp(14px, 4vw, 22px);
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1;
    font-weight: 800;
    text-transform: lowercase;
  }

  .trust-section__mobile-divider::before,
  .trust-section__mobile-divider::after {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    background: rgba(74, 105, 166, 0.2);
  }

  .trust-section__mobile-telegram {
    grid-column: 1 / -1;
    color: rgba(7, 22, 94, 0.72);
    text-decoration: none;
    display: grid;
    grid-template-columns: clamp(52px, 14vw, 66px) minmax(0, 1fr) 14px;
    align-items: center;
    gap: clamp(14px, 4vw, 22px);
    font-size: clamp(16px, 4.45vw, 21px);
    line-height: 1.25;
    font-weight: 500;
  }

  .trust-section__mobile-telegram-icon {
    width: clamp(52px, 14vw, 66px);
    height: clamp(52px, 14vw, 66px);
    border-radius: 50%;
    background: rgba(232, 241, 255, 0.84);
    color: #0b68ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .trust-section__mobile-telegram-icon svg {
    width: 48%;
    height: 48%;
  }

  .trust-section__mobile-telegram-text {
    min-width: 0;
  }

  .trust-section__mobile-telegram strong {
    color: #006dff;
    font-weight: 500;
  }

  .trust-section__mobile-telegram-arrow {
    width: 14px;
    height: auto;
    color: #07165e;
  }

  .trust-section__brand img {
    width: 74%;
    max-width: 74%;
    height: 74%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .footer {
    margin-top: clamp(22px, 8vw, 40px);
  }

  .footer__panel {
    min-height: 0;
    border-radius: clamp(22px, 7vw, 32px) clamp(22px, 7vw, 32px) 0 0;
    padding: clamp(24px, 6.3vw, 34px) clamp(24px, 6.6vw, 38px) clamp(16px, 4.4vw, 26px);
    box-shadow: 0 24px 66px rgba(44, 74, 126, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .footer__panel::before {
    height: 8px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
  }

  .footer__logo {
    width: clamp(180px, 52vw, 250px);
    height: clamp(42px, 11vw, 56px);
    justify-content: center;
  }

  .footer__logo-image {
    object-position: center;
  }

  .footer__logo-mark {
    width: clamp(32px, 8.4vw, 42px);
    height: clamp(32px, 8.4vw, 42px);
  }

  .footer__logo-mark img {
    width: 100%;
  }

  .footer__logo-text {
    font-size: clamp(20px, 5.7vw, 28px);
  }

  .footer__nav {
    grid-column: 1 / -1;
    margin-top: clamp(12px, 3.5vw, 20px);
    padding-top: clamp(8px, 2.4vw, 14px);
    border-top: 1px solid rgba(118, 138, 172, 0.26);
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer__nav a,
  .footer__nav a:first-child,
  .footer__nav a:last-child {
    width: 100%;
    min-height: 0;
    padding: clamp(7px, 2.2vw, 11px) 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(118, 138, 172, 0.22);
    font-size: clamp(16px, 4.35vw, 21px);
    line-height: 1.18;
    justify-content: center;
    text-align: center;
  }

  .footer__contacts {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 337px;
    margin-top: clamp(12px, 3.8vw, 22px);
    margin-right: auto;
    margin-left: auto;
    padding-top: clamp(12px, 3.6vw, 20px);
    border-top: 0;
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.48;
    text-align: center;
  }

  .footer__bottom {
    margin-top: clamp(12px, 3.8vw, 22px);
    padding-top: 0;
    border-top: 0;
    display: flex;
    flex-direction: column;
  }

  .footer__copy {
    order: 2;
    margin-top: clamp(12px, 3.8vw, 20px);
    font-size: clamp(10px, 2.85vw, 13px);
  }

  .footer__legal {
    order: 1;
    width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
    padding-top: clamp(12px, 3.6vw, 20px);
    border-top: 1px solid rgba(118, 138, 172, 0.25);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    column-gap: clamp(18px, 5vw, 28px);
    align-items: stretch;
  }

  .footer__legal::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    width: 1px;
    min-height: 26px;
    background: rgba(118, 138, 172, 0.34);
  }

  .footer__legal a {
    min-width: 0;
    grid-row: 1;
    white-space: normal;
    font-size: clamp(10px, 2.85vw, 13px);
  }

  .footer__legal a:first-child {
    grid-column: 1;
  }

  .footer__legal a + a {
    grid-column: 3;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .frame-preview + .frame-preview {
    margin-top: 12px;
  }

  .frame-preview__image {
    border-radius: 12px;
  }
}

/* Source-aligned visual assets */

.product-card__media,
.process-card__art,
.product-modal__preview-visual,
.income-phone {
  background-repeat: no-repeat;
}

.product-card__media > *,
.product-modal__preview-visual::before,
.income-phone::before,
.income-phone__screen,
.process-card__art::before,
.process-card__art::after {
  display: none;
}

.product-card__media_kind_bottle,
.product-card__media_kind_phone,
.product-card__media_kind_dashboard {
  background-size: contain;
  background-position: center;
  background-color: #f7f8fb;
}

.product-card__media_kind_bottle {
  background-image: url("../img/crops/product-inulovit.webp");
}

.product-card__media_kind_phone {
  background-image: url("../img/crops/product-lifeum.webp");
}

.product-card__media_kind_dashboard {
  background-image: url("../img/products/product-smm-dashboard.png");
}

.product-modal__preview-visual {
  background-size: contain;
  background-position: center;
  background-color: #f7f8fb;
}

.product-modal__preview-visual[data-visual="inulovit"] {
  background-image: url("../img/crops/modal-inulovit.webp");
}

.product-modal__preview-visual[data-visual="lifeum"] {
  background-image: url("../img/crops/product-lifeum.webp");
}

.product-modal__preview-visual[data-visual="smm"] {
  background-image: url("../img/products/product-smm-dashboard.png");
  background-size: contain;
  background-position: center;
  background-color: #0c111b;
}

.process-card__art_type_select,
.process-card__art_type_share,
.process-card__art_type_profit {
  background-size: cover;
  background-position: center;
  background-color: #fbfcff;
}

.process-card__art_type_select {
  background-image: url("../img/crops/process-select.webp");
}

.process-card__art_type_share {
  background-image: url("../img/crops/process-share.webp");
}

.process-card__art_type_profit {
  background-image: url("../img/crops/process-profit.webp");
}

.income-phone {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background-size: contain;
  background-position: center bottom;
  background-color: transparent;
}

.income-phone_type_partner {
  width: 270px;
  height: 390px;
  background-image: none;
}

.income-phone_type_invest {
  width: 240px;
  height: 390px;
  background-image: none;
}

.income-card_theme_invest .income-phone,
.income-phone {
  transform: none;
}

@media (max-width: 900px) {
  .product-modal__preview-visual {
    background-size: contain;
  }

  .income-phone_type_partner,
  .income-phone_type_invest {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 620px) {
  .header,
  .header__inner,
  .hero,
  .hero__inner {
    max-width: 100vw;
  }

  .header__mobile-action {
    right: 72px;
    width: 132px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 12px;
  }

  .header__menu-button {
    right: 16px;
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .header__menu-button span {
    width: 21px;
  }

  .hero__actions {
    width: calc(100vw - 54px);
    max-width: calc(100vw - clamp(44px, 11.4vw, 70px));
  }

  .hero__title {
    font-size: clamp(45px, 8.5vw, 52px);
  }

  .button_size_large {
    width: 100%;
    max-width: 100%;
  }

  .hero__benefits {
    width: min(calc(100% - 24px), 480px);
    align-self: center;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 7px;
    margin-top: 12px;
  }

  .hero-benefit {
    min-width: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 10px;
    text-align: left;
    min-height: 64px;
    padding: 9px 12px;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.78));
    box-shadow: 0 10px 24px rgba(83, 96, 166, 0.09);
  }

  .hero-benefit__body {
    min-width: 0;
    gap: 0;
  }

  .hero-benefit__icon {
    width: 38px;
    height: 38px;
  }

  .hero-benefit__icon img,
  .hero-benefit__icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-benefit__title,
  .hero-benefit__text {
    display: none;
  }

  .hero-benefit__mobile-text {
    display: block;
    color: #25304a;
    font-size: clamp(15px, 3.8vw, 17px);
    line-height: 1.32;
    font-weight: 560;
    letter-spacing: 0;
  }

  .hero-benefit__mobile-text {
    overflow-wrap: anywhere;
  }

  .hero-benefit__nowrap {
    white-space: normal;
  }

  .mission-section {
    padding: 30px 16px 32px;
  }

  .mission-section::after {
    inset: -34px;
    background-position: 82% 126px;
    background-size: clamp(720px, 190vw, 820px) auto;
    filter: none;
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent 96px, rgba(0, 0, 0, 0.35) 128px, #000 184px, #000 500px, rgba(0, 0, 0, 0.38) 558px, transparent 640px);
    mask-image: linear-gradient(180deg, transparent 0, transparent 96px, rgba(0, 0, 0, 0.35) 128px, #000 184px, #000 500px, rgba(0, 0, 0, 0.38) 558px, transparent 640px);
  }

  .mission-section::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.48) 42%, rgba(255, 255, 255, 0.62)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0.04) 100%);
  }

  .mission-section__eyebrow {
    top: -2px;
    margin-bottom: 18px;
    font-size: 11px;
  }

  .mission-section__title {
    font-size: clamp(36px, 10.4vw, 44px);
  }

  .mission-section__text {
    font-size: clamp(15px, 4vw, 17px);
  }

  .mission-section__quote {
    display: block;
    padding-left: 0;
    text-align: center;
    margin-top: 52px;
    font-size: clamp(19px, 5.2vw, 22px);
  }

  .mission-section__quote-mark {
    display: inline;
    font-size: 1.62em;
    line-height: 1;
    vertical-align: -0.14em;
  }

  .mission-section__quote-mark:not(.mission-section__quote-mark_end) {
    top: -0.12em;
    font-size: 1.95em;
  }

  .mission-section__quote-mark_end {
    margin-left: 2px;
    transform: none;
  }

  .mission-section__quote-text {
    display: inline;
  }

  .mission-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .mission-card__icon {
    width: 64px;
    height: 64px;
  }

  .mission-card__icon svg {
    width: 36px;
    height: 36px;
  }

  .mission-card__title {
    font-size: 21px;
  }

  .mission-card__description {
    font-size: 14px;
    line-height: 1.44;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .hero__actions {
    width: min(calc(100% - 8px), 789px);
    align-self: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .hero__actions .button_size_large {
    width: auto;
    flex: 1 1 0;
    max-width: 360px;
  }
}

@media (max-width: 430px) {
  .header__inner {
    width: 100%;
    padding-left: 16px;
    padding-right: 14px;
    gap: 8px;
  }

  .logo {
    width: 118px;
    height: 34px;
  }

  .logo__image {
    width: 118px;
  }

  .header__mobile-action {
    right: 78px;
    width: 126px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .hero__inner {
    overflow: hidden;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero__bg {
    top: 66px;
    height: 86.5%;
    object-position: 58% 100%;
    opacity: 0.78;
  }

  .hero__title {
    font-size: clamp(39px, 10.8vw, 45px);
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 14px;
  }

  .hero__subtitle {
    font-size: clamp(16px, 4.6vw, 18px);
  }

  .hero__visual {
    width: calc(100% + 8px);
    aspect-ratio: 1 / 1.07;
    margin: 22px -4px 0;
  }

  .hero-phone {
    filter: drop-shadow(0 12px 18px rgba(39, 55, 119, 0.2));
  }

  .hero-phone_primary {
    left: 9%;
    top: 19%;
    bottom: auto;
    width: 40%;
  }

  .hero-phone_partner {
    left: 36%;
    top: 6.5%;
    bottom: auto;
    width: 38%;
  }

  .hero__float-card_partner {
    top: 3%;
    left: 2%;
    width: 41%;
  }

  .hero__float-card_link {
    top: 34%;
    left: 58%;
    right: auto;
    width: 34%;
  }

  .hero__float-card_income {
    top: 63.5%;
    left: 58%;
    right: auto;
    width: 36%;
  }

  .hero__benefits {
    width: calc(100% - 18px);
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 14px;
  }

  .hero-benefit {
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    gap: 10px;
    min-height: 62px;
    padding: 9px 12px;
    border-radius: 15px;
  }

  .hero-benefit__icon {
    width: 38px;
    height: 38px;
  }

  .hero-benefit__icon img,
  .hero-benefit__icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-benefit__body {
    gap: 4px;
  }

  .hero-benefit__mobile-text {
    font-size: 15px;
    line-height: 1.32;
  }

  .hero__actions {
    width: 100%;
    max-width: none;
  }
}

/* Updated process section */
.page__main > section.process-section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.process-section {
  position: relative;
  isolation: isolate;
  margin-top: clamp(24px, 3vw, 44px);
  padding: clamp(34px, 3.9vw, 62px) 0 clamp(30px, 3.4vw, 56px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06)),
    url("../img/process/process-bg.png") center / 100% 100% no-repeat,
    #f8fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  overflow: visible;
}

.process-section__head,
.process-section__grid,
.process-section__note {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}

.process-section__head {
  text-align: center;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.process-section__title {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  color: #071842;
  font-size: clamp(40px, 3.15vw, 56px);
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 3px 12px rgba(7, 24, 66, 0.08);
}

.process-section__subtitle {
  margin: 12px 0 0;
  color: #4b587a;
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.2;
  font-weight: 500;
}

.process-section__divider {
  position: relative;
  display: block;
  width: 96px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(51, 137, 255, 0), #3389ff 50%, rgba(51, 137, 255, 0));
}

.process-section__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #1677ff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(22, 119, 255, 0.45);
}

.process-section__flow {
  display: none;
}

.process-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.5vw, 48px);
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(40, 61, 108, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(28, 48, 92, 0.1);
  overflow: hidden;
}

.process-card__art {
  display: block;
  width: 100%;
  aspect-ratio: 502 / 330;
  height: auto;
  margin: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.process-card__art::before,
.process-card__art::after {
  content: none;
  display: none;
}

.process-card__art_type_select {
  background-image: url("../img/process/step-select-desktop.webp");
}

.process-card__art_type_share {
  background-image: url("../img/process/step-share-desktop.webp");
}

.process-card__art_type_profit {
  background-image: url("../img/process/step-profit-desktop.webp");
}

.process-card__body {
  position: relative;
  min-height: 128px;
  padding: 48px clamp(20px, 1.45vw, 26px) clamp(20px, 1.65vw, 28px);
}

.process-card__number {
  position: absolute;
  left: clamp(22px, 1.55vw, 30px);
  top: -32px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(22, 93, 209, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.process-card_theme_blue .process-card__number {
  background: linear-gradient(135deg, #1372ff 0%, #2f92ff 100%);
}

.process-card_theme_green .process-card__number {
  background: linear-gradient(135deg, #0da74f 0%, #42d86c 100%);
  box-shadow: 0 16px 24px rgba(18, 152, 78, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.process-card_theme_purple .process-card__number {
  background: linear-gradient(135deg, #6e3fd0 0%, #9c62e9 100%);
  box-shadow: 0 16px 24px rgba(107, 63, 200, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.process-card__copy {
  position: relative;
  z-index: 1;
}

.process-card__title {
  margin: 0;
  color: #071842;
  font-size: clamp(23px, 1.45vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.process-card__text {
  margin: 8px 0 0;
  color: #4f5b7c;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.36;
  font-weight: 500;
}

.process-section__note {
  display: grid;
  grid-template-columns: minmax(80px, 114px) auto minmax(80px, 114px);
  align-items: center;
  justify-content: center;
  gap: 38px;
  width: min(100%, 1000px);
  margin: clamp(22px, 2.1vw, 32px) auto 0;
  padding: 0;
  color: #4c5879;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.25;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

.process-section__note span {
  white-space: nowrap;
}

.process-section__note::before,
.process-section__note::after {
  content: "";
  position: static;
  display: block;
  width: auto;
  height: 2px;
  border-radius: 999px;
}

.process-section__note::before {
  background: linear-gradient(90deg, rgba(51, 137, 255, 0), #3389ff);
}

.process-section__note::after {
  background: linear-gradient(90deg, #3389ff, rgba(51, 137, 255, 0));
}

@media (max-width: 1380px) {
  .process-section__title {
    font-size: 48px;
  }

  .process-section__subtitle {
    font-size: 22px;
  }

  .process-card {
    border-radius: 18px;
  }

  .process-card__body {
    min-height: 118px;
    padding-top: 44px;
  }

  .process-card__number {
    top: -30px;
    width: 58px;
    height: 58px;
    border-radius: 13px;
    font-size: 34px;
  }

  .process-card__title {
    font-size: 24px;
  }

  .process-card__text {
    margin-top: 8px;
    font-size: 16px;
  }

  .process-section__note {
    font-size: 20px;
  }
}

@media (max-width: 1180px) {
  .process-section__grid {
    gap: 24px;
  }

  .process-section__title {
    font-size: 42px;
  }

  .process-section__subtitle {
    font-size: 20px;
  }

  .process-card {
    border-radius: 18px;
  }

  .process-card__body {
    min-height: 110px;
    padding: 40px 16px 20px;
  }

  .process-card__number {
    left: 18px;
    top: -28px;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 32px;
  }

  .process-card__title {
    font-size: 21px;
  }

  .process-card__text {
    font-size: 15px;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .process-section {
    margin-top: 24px;
    padding-top: 38px;
    padding-bottom: 34px;
    border-radius: 0;
  }

  .process-section__head {
    margin-bottom: 18px;
  }

  .process-section__title {
    font-size: clamp(30px, 5vw, 36px);
  }

  .process-section__subtitle {
    margin-top: 8px;
    font-size: 18px;
  }

  .process-section__divider {
    width: 72px;
    margin-top: 10px;
  }

  .process-section__grid {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .process-card {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(28, 48, 92, 0.1);
  }

  .process-card__body {
    min-height: 100px;
    padding: 36px 14px 18px;
  }

  .process-card__number {
    left: 16px;
    top: -24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 28px;
  }

  .process-card__title {
    font-size: 18px;
  }

  .process-card__text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
  }

  .process-section__note {
    grid-template-columns: minmax(24px, 72px) minmax(0, auto) minmax(24px, 72px);
    gap: 16px;
    margin-top: 24px;
    font-size: 18px;
  }

  .process-section__note span {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .process-section {
    margin-top: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
    border-radius: 0;
  }

  .process-section__head {
    margin-bottom: 22px;
  }

  .process-section__title {
    font-size: 38px;
  }

  .process-section__subtitle {
    margin-top: 10px;
    font-size: 21px;
  }

  .process-section__divider {
    margin-top: 12px;
  }

  .process-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 650px;
  }

  .process-card {
    grid-template-columns: minmax(170px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 24px;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(28, 48, 92, 0.1);
    overflow: visible;
  }

  .process-card__art {
    aspect-ratio: 331 / 260;
    border-radius: 18px;
  }

  .process-card__art_type_select {
    background-image: url("../img/process/step-select-mobile.webp");
  }

  .process-card__art_type_share {
    background-image: url("../img/process/step-share-mobile.webp");
  }

  .process-card__art_type_profit {
    background-image: url("../img/process/step-profit-mobile.webp");
  }

  .process-card__body {
    position: static;
    min-height: 0;
    padding: 0;
  }

  .process-card__number {
    position: static;
    width: 62px;
    height: 62px;
    border-radius: 14px;
    font-size: 36px;
  }

  .process-card__copy {
    margin-top: 18px;
  }

  .process-card__title {
    font-size: 25px;
  }

  .process-card__text {
    margin-top: 12px;
    font-size: 19px;
  }

  .process-section__note {
    grid-template-columns: minmax(64px, 1fr) minmax(220px, auto) minmax(64px, 1fr);
    gap: 22px;
    width: min(100%, 660px);
    margin-top: 30px;
    font-size: 20px;
  }

  .process-section__note span {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .process-section {
    margin-top: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 0;
  }

  .process-section__head {
    margin-bottom: 18px;
  }

  .process-section__title {
    font-size: 28px;
  }

  .process-section__subtitle {
    margin-top: 10px;
    font-size: 18px;
  }

  .process-section__divider {
    width: 58px;
    margin-top: 12px;
  }

  .process-section__grid {
    padding: 0 clamp(18px, 5.5vw, 30px);
    gap: 22px;
  }

  .process-card {
    grid-template-columns: clamp(96px, 28vw, 124px) minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border-radius: 20px;
  }

  .process-card__art {
    border-radius: 15px;
  }

  .process-card__number {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    font-size: 25px;
  }

  .process-card__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
    row-gap: 7px;
    min-width: 0;
  }

  .process-card__copy {
    display: contents;
    margin-top: 0;
  }

  .process-card__title {
    grid-column: 2;
    align-self: center;
    font-size: 15px;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .process-card__text {
    grid-column: 1 / -1;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.3;
  }

  .process-section__note {
    grid-template-columns: minmax(58px, 1fr) minmax(168px, auto) minmax(58px, 1fr);
    gap: 14px;
    margin-top: 20px;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .process-section__title {
    font-size: 26px;
  }

  .process-section__subtitle {
    font-size: 17px;
  }

  .process-card {
    grid-template-columns: clamp(88px, 27vw, 100px) minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .process-card__number {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    font-size: 25px;
  }

  .process-card__title {
    font-size: 15px;
  }

  .process-card__text {
    font-size: 13px;
    line-height: 1.28;
  }
}

/* Updated income section */
.page__main > section.income-section {
  width: 100%;
  max-width: none;
}

.income-section {
  --income-blue: #0866ff;
  --income-blue-dark: #073cc6;
  --income-green: #05a84c;
  --income-green-dark: #00863a;
  --income-ink: #071432;
  --income-muted: #273251;
  --income-content-shift: clamp(22px, 3svh, 40px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: clamp(760px, calc(100svh - var(--header-height) + 64px), 980px);
  min-height: 0;
  margin-top: clamp(46px, 5vw, 82px);
  scroll-margin-top: var(--header-height);
  padding:
    clamp(30px, 4.5svh, 58px)
    clamp(38px, 4.45vw, 74px)
    clamp(22px, 3.6svh, 62px);
  background: #fbfcff url("../img/income/income-bg.png") center top / cover no-repeat;
  color: var(--income-ink);
}

.income-section__head {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(var(--income-content-shift));
}

.income-section__title {
  margin: 0;
  color: var(--income-ink);
  font-size: clamp(54px, 5vw, 86px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.income-section__subtitle {
  max-width: 1180px;
  margin: clamp(14px, 1.7svh, 22px) auto 0;
  color: var(--income-muted);
  font-size: clamp(18px, 1.52vw, 26px);
  line-height: 1.38;
}

.income-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 5.5vw, 104px);
  margin-top: clamp(40px, 5.4svh, 70px);
  transform: translateY(var(--income-content-shift));
}

.income-card {
  position: relative;
  height: clamp(520px, calc(100svh - var(--header-height) - 300px), 610px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 0.62fr);
  gap: clamp(12px, 1.6vw, 26px);
  align-items: center;
  overflow: hidden;
  padding:
    clamp(32px, 2.7vw, 46px)
    clamp(32px, 3.15vw, 48px);
  border: 1px solid rgba(52, 91, 148, 0.12);
  border-radius: clamp(24px, 2.55vw, 38px);
  box-shadow:
    0 22px 46px rgba(29, 53, 92, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.income-card_theme_partner {
  background:
    radial-gradient(circle at 81% 45%, rgba(3, 170, 81, 0.13), transparent 32%),
    linear-gradient(115deg, rgba(243, 252, 247, 0.98) 0%, rgba(250, 255, 252, 0.96) 44%, rgba(239, 249, 246, 0.94) 100%);
}

.income-card_theme_invest {
  background:
    radial-gradient(circle at 84% 44%, rgba(8, 102, 255, 0.13), transparent 34%),
    linear-gradient(115deg, rgba(247, 250, 255, 0.99) 0%, rgba(251, 253, 255, 0.96) 44%, rgba(241, 247, 255, 0.95) 100%);
}

.income-card__content {
  position: relative;
  z-index: 3;
  align-self: center;
  min-width: 0;
}

.income-card__label {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.9vw, 30px);
}

.income-card__icon {
  width: clamp(58px, 4.55vw, 74px);
  height: clamp(58px, 4.55vw, 74px);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 14px 24px rgba(20, 62, 138, 0.18);
}

.income-card__icon_theme_green {
  background: linear-gradient(145deg, #0ebb5e 0%, #009747 100%);
  box-shadow: 0 14px 24px rgba(0, 146, 66, 0.25);
}

.income-card__icon_theme_blue {
  background: linear-gradient(145deg, #0d7bff 0%, #1454f5 100%);
  box-shadow: 0 14px 24px rgba(8, 102, 255, 0.28);
}

.income-card__icon svg {
  width: 58%;
  height: 58%;
}

.income-card__tag {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.income-card__tag_theme_green {
  color: var(--income-green-dark);
}

.income-card__tag_theme_blue {
  color: var(--income-blue);
}

.income-card__title {
  max-width: 380px;
  margin: clamp(24px, 2.1vw, 34px) 0 0;
  color: var(--income-ink);
  font-size: clamp(36px, 2.75vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.income-card_theme_invest .income-card__title {
  max-width: 350px;
  font-size: clamp(34px, 2.45vw, 40px);
}

.income-card__description {
  max-width: 390px;
  margin: clamp(16px, 1.35vw, 22px) 0 0;
  color: #1d2946;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.48;
}

.income-card__list {
  margin: clamp(24px, 2vw, 34px) 0 0;
}

.income-card__item {
  min-height: 28px;
  padding-left: clamp(38px, 3vw, 48px);
  color: #15213e;
  font-size: clamp(17px, 1.32vw, 22px);
  line-height: 1.48;
}

.income-card__item + .income-card__item {
  margin-top: clamp(12px, 1.08vw, 18px);
}

.income-card__item::before {
  top: 0.14em;
  width: clamp(22px, 1.75vw, 29px);
  height: clamp(22px, 1.75vw, 29px);
  border: 0;
  color: #fff;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(8, 102, 255, 0.16);
}

.income-card_theme_partner .income-card__item::before {
  background: var(--income-green);
}

.income-card_theme_invest .income-card__item::before {
  background: var(--income-blue);
}

.income-card__visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.income-card_theme_partner .income-card__visual {
  margin-right: 0;
}

.income-card_theme_invest .income-card__visual {
  margin-right: clamp(-44px, -2.3vw, -22px);
}

.income-phone {
  position: relative;
  width: clamp(202px, 12.4vw, 240px);
  height: auto;
  aspect-ratio: 578 / 1283;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 24px 28px rgba(16, 29, 58, 0.2));
}

.income-phone::before {
  content: "";
  position: absolute;
  inset: 3.2% 7.1% 3.6%;
  z-index: 0;
  border-radius: 9% / 4.3%;
  background: #fff;
}

.income-phone__screen {
  position: absolute;
  inset: auto;
  left: 5.54%;
  top: 1.64%;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: block;
  width: 90.31%;
  height: 96.49%;
  max-width: none;
  padding: 0;
  border-radius: 8.4% / 3.7%;
  background: #fff;
  object-fit: fill;
  object-position: center center;
  overflow: hidden;
}

.income-phone__frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.income-phone_type_partner {
  transform: rotate(-4deg) translateX(clamp(0px, 0.8vw, 14px));
}

.income-phone_type_invest {
  width: clamp(190px, 11.8vw, 224px);
  transform: rotate(4deg) translateX(clamp(16px, 1.8vw, 34px));
}

.income-section__mark {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(22px, 2.2svh, 34px));
  z-index: 6;
  width: clamp(126px, 8.1vw, 152px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 34px rgba(26, 42, 78, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translate(-50%, -50%);
}

.income-section__mark svg {
  width: 68%;
  height: 68%;
}

@media (max-width: 1180px) {
  .income-section {
    min-height: clamp(760px, 70vw, 850px);
    padding-inline: clamp(30px, 3.7vw, 44px);
  }

  .income-section__grid {
    gap: clamp(34px, 4.3vw, 52px);
  }

  .income-card {
    min-height: 560px;
    grid-template-columns: minmax(236px, 1fr) minmax(188px, 0.7fr);
    padding: 30px;
  }

  .income-card__title {
    font-size: clamp(32px, 3.25vw, 38px);
  }

  .income-card__description {
    font-size: clamp(16px, 1.75vw, 19px);
  }

  .income-card__item {
    font-size: clamp(15px, 1.55vw, 18px);
  }

  .income-phone_type_partner {
    width: clamp(202px, 20vw, 238px);
  }

  .income-phone_type_invest {
    width: clamp(190px, 19vw, 220px);
  }
}

@media (min-width: 901px) and (max-height: 920px) {
  .income-section {
    padding:
      clamp(24px, 3.4svh, 34px)
      clamp(40px, 4.6vw, 88px)
      clamp(18px, 2.7svh, 28px);
  }

  .income-section__title {
    font-size: clamp(50px, 4.35vw, 78px);
  }

  .income-section__subtitle {
    margin-top: clamp(8px, 1.2svh, 12px);
    font-size: clamp(18px, 1.33vw, 25px);
    line-height: 1.3;
  }

  .income-section__grid {
    gap: clamp(64px, 5.5vw, 104px);
    margin-top: clamp(38px, 4.8svh, 48px);
  }

  .income-card {
    height: clamp(500px, calc(100svh - var(--header-height) - 292px), 560px);
    grid-template-columns: minmax(286px, 0.98fr) minmax(188px, 0.52fr);
    padding:
      clamp(24px, 2.35vw, 34px)
      clamp(34px, 3vw, 48px);
  }

  .income-card__label {
    gap: clamp(18px, 1.6vw, 26px);
  }

  .income-card__icon {
    width: clamp(64px, 4.05vw, 74px);
    height: clamp(64px, 4.05vw, 74px);
  }

  .income-card__tag {
    font-size: clamp(15px, 1.12vw, 19px);
  }

  .income-card__title {
    max-width: 360px;
    margin-top: clamp(20px, 1.7vw, 26px);
    font-size: clamp(34px, 2.55vw, 44px);
    line-height: 1.14;
  }

  .income-card_theme_invest .income-card__title {
    max-width: 330px;
    font-size: clamp(32px, 2.22vw, 40px);
    line-height: 1.16;
  }

  .income-card__description {
    margin-top: clamp(12px, 1vw, 16px);
    font-size: clamp(17px, 1.18vw, 21px);
    line-height: 1.42;
  }

  .income-card__list {
    margin-top: clamp(18px, 1.45vw, 24px);
  }

  .income-card__item {
    min-height: 24px;
    padding-left: clamp(34px, 2.5vw, 42px);
    font-size: clamp(16px, 1.13vw, 20px);
    line-height: 1.34;
  }

  .income-card__item + .income-card__item {
    margin-top: clamp(9px, 0.8vw, 12px);
  }

  .income-card__item::before {
    top: 0.08em;
    width: clamp(21px, 1.48vw, 26px);
    height: clamp(21px, 1.48vw, 26px);
  }

  .income-card_theme_partner .income-card__visual {
    margin-right: 0;
  }

  .income-card_theme_invest .income-card__visual {
    margin-right: clamp(-24px, -1.5vw, -12px);
  }

  .income-phone {
    width: clamp(196px, 11.8vw, 226px);
  }

  .income-phone_type_partner {
    transform: rotate(-4deg) translateX(clamp(0px, 0.6vw, 10px));
  }

  .income-phone_type_invest {
    width: clamp(184px, 11.2vw, 212px);
    transform: rotate(4deg) translateX(clamp(14px, 1.7vw, 32px));
  }

  .income-section__mark {
    top: calc(50% + clamp(10px, 1.2svh, 18px));
    width: clamp(124px, 7.7vw, 148px);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .income-section {
    height: auto;
    min-height: 820px;
    padding:
      clamp(24px, 3.2svh, 34px)
      clamp(28px, 3vw, 38px)
      clamp(28px, 4svh, 42px);
  }

  .income-section__title {
    font-size: clamp(42px, 5.15vw, 58px);
  }

  .income-section__subtitle {
    max-width: 780px;
    margin-top: 8px;
    font-size: clamp(16px, 1.85vw, 21px);
  }

  .income-section__grid {
    gap: clamp(34px, 4.4vw, 48px);
    margin-top: clamp(36px, 4.8svh, 46px);
  }

  .income-card {
    height: clamp(460px, 58svh, 520px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(126px, 0.42fr);
    gap: clamp(8px, 1.2vw, 14px);
    padding:
      clamp(22px, 2.6vw, 28px)
      clamp(18px, 2.45vw, 26px);
  }

  .income-card__label {
    gap: clamp(14px, 1.6vw, 18px);
  }

  .income-card__icon {
    width: clamp(54px, 6vw, 64px);
    height: clamp(54px, 6vw, 64px);
  }

  .income-card__tag {
    font-size: clamp(14px, 1.65vw, 17px);
  }

  .income-card__title {
    max-width: 300px;
    margin-top: clamp(20px, 2.2vw, 26px);
    font-size: clamp(28px, 3.2vw, 34px);
    line-height: 1.14;
  }

  .income-card_theme_invest .income-card__title {
    max-width: 275px;
    font-size: clamp(26px, 3vw, 32px);
  }

  .income-card__description {
    max-width: 300px;
    margin-top: clamp(12px, 1.4vw, 16px);
    font-size: clamp(14px, 1.72vw, 17px);
    line-height: 1.42;
  }

  .income-card__list {
    margin-top: clamp(18px, 2.15vw, 24px);
  }

  .income-card__item {
    min-height: 22px;
    padding-left: clamp(30px, 3.3vw, 36px);
    font-size: clamp(14px, 1.65vw, 17px);
    line-height: 1.32;
  }

  .income-card__item + .income-card__item {
    margin-top: clamp(8px, 1vw, 12px);
  }

  .income-card__item::before {
    width: clamp(20px, 2.2vw, 24px);
    height: clamp(20px, 2.2vw, 24px);
    font-size: 12px;
  }

  .income-card_theme_partner .income-card__visual,
  .income-card_theme_invest .income-card__visual {
    margin-right: 0;
  }

  .income-phone_type_partner {
    width: clamp(156px, 16.5vw, 184px);
    transform: rotate(-3deg) translateX(0);
  }

  .income-phone_type_invest {
    width: clamp(146px, 15.4vw, 172px);
    transform: rotate(3deg) translateX(0);
  }

  .income-section__mark {
    top: calc(50% + 10px);
    width: clamp(104px, 11vw, 124px);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .income-section {
    height: auto;
    min-height: 0;
    padding:
      clamp(34px, 5svh, 46px)
      clamp(38px, 4.8vw, 52px)
      clamp(38px, 5svh, 54px);
  }

  .income-section__title {
    font-size: clamp(52px, 6.1vw, 64px);
  }

  .income-section__subtitle {
    max-width: 820px;
    font-size: clamp(19px, 2.15vw, 24px);
  }

  .income-section__grid {
    width: min(100%, 900px);
    grid-template-columns: 1fr;
    gap: 0;
    margin: clamp(44px, 6svh, 58px) auto 0;
  }

  .income-card {
    height: clamp(470px, 60svh, 520px);
    grid-template-columns: minmax(0, 1fr) minmax(176px, 0.42fr);
    gap: clamp(14px, 2vw, 20px);
    padding:
      clamp(28px, 3.2vw, 34px)
      clamp(32px, 4vw, 42px);
  }

  .income-card__icon {
    width: clamp(56px, 6.2vw, 66px);
    height: clamp(56px, 6.2vw, 66px);
  }

  .income-card__tag {
    font-size: clamp(15px, 1.9vw, 18px);
  }

  .income-card__title {
    max-width: 370px;
    margin-top: clamp(20px, 2.4vw, 24px);
    font-size: clamp(31px, 3.6vw, 36px);
  }

  .income-card_theme_invest .income-card__title {
    max-width: 350px;
    font-size: clamp(29px, 3.35vw, 34px);
  }

  .income-card__description {
    max-width: 380px;
    margin-top: clamp(12px, 1.5vw, 16px);
    font-size: clamp(16px, 1.95vw, 20px);
  }

  .income-card__list {
    margin-top: clamp(16px, 2vw, 20px);
  }

  .income-card__item {
    font-size: clamp(15px, 1.8vw, 18px);
  }

  .income-card__item + .income-card__item {
    margin-top: clamp(8px, 1vw, 10px);
  }

  .income-phone_type_partner {
    width: clamp(188px, 20vw, 216px);
    transform: rotate(-4deg) translateX(0);
  }

  .income-phone_type_invest {
    width: clamp(176px, 19vw, 202px);
    transform: rotate(4deg) translateX(0);
  }

  .income-section__mark {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    width: clamp(112px, 12vw, 128px);
    margin: clamp(-46px, -5vw, -38px) 0;
    transform: none;
  }
}

@media (max-width: 900px) {
  .page__main > section.income-section {
    width: 100%;
  }

  .income-section {
    --income-content-shift: clamp(18px, 3.8vw, 30px);
    height: auto;
    min-height: 0;
    margin-top: clamp(30px, 7vw, 58px);
    padding:
      clamp(42px, 7vw, 64px)
      clamp(28px, 6.4vw, 44px)
      clamp(28px, 5.8vw, 48px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.76) 54%, #fff 100%),
      url("../img/income/income-bg.png") center top / auto clamp(860px, 134vw, 1160px) no-repeat,
      #ffffff;
  }

  .income-section__title {
    max-width: 780px;
    margin-inline: auto;
    font-size: clamp(38px, 6.8vw, 58px);
    line-height: 1.06;
  }

  .income-section__subtitle {
    max-width: 670px;
    font-size: clamp(18px, 2.8vw, 24px);
    line-height: 1.34;
  }

  .income-section__grid {
    width: min(100%, 780px);
    margin: clamp(40px, 6.2vw, 58px) auto 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .income-card {
    height: clamp(460px, 62vw, 540px);
    min-height: 0;
    grid-template-columns: minmax(0, 1.04fr) minmax(190px, 0.54fr);
    gap: clamp(14px, 2.3vw, 22px);
    padding: clamp(30px, 4.45vw, 38px);
    border-radius: clamp(28px, 4.2vw, 38px);
  }

  .income-card__icon {
    width: clamp(62px, 8vw, 76px);
    height: clamp(62px, 8vw, 76px);
  }

  .income-card__tag {
    font-size: clamp(16px, 2.5vw, 21px);
  }

  .income-card__title {
    font-size: clamp(29px, 4.25vw, 36px);
  }

  .income-card_theme_invest .income-card__title {
    font-size: clamp(27px, 4vw, 34px);
  }

  .income-card__description {
    font-size: clamp(16px, 2.35vw, 20px);
  }

  .income-card__item {
    font-size: clamp(16px, 2.15vw, 19px);
  }

  .income-phone_type_partner {
    width: clamp(188px, 24vw, 220px);
  }

  .income-phone_type_invest {
    width: clamp(176px, 23vw, 208px);
  }

  .income-section__mark {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    width: clamp(82px, 12vw, 110px);
    margin: clamp(-30px, -3.8vw, -24px) 0;
    transform: none;
  }

}

@media (max-width: 700px) {
  .income-section {
    --income-content-shift: clamp(14px, 4.5vw, 24px);
    padding:
      clamp(30px, 7.4vw, 44px)
      clamp(16px, 4.8vw, 28px)
      clamp(58px, 13vw, 86px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.9) 48%, #fff 100%),
      url("../img/income/income-bg.png") center top / auto clamp(740px, 190vw, 980px) no-repeat,
      #ffffff;
  }

  .income-section__title {
    margin-top: 0;
    font-size: clamp(30px, 7.2vw, 40px);
  }

  .income-section__subtitle {
    margin-top: 12px;
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.34;
  }

  .income-section__grid {
    margin-top: clamp(30px, 8vw, 44px);
  }

  .income-card {
    display: grid;
    height: auto;
    min-height: clamp(430px, 86vw, 520px);
    grid-template-columns: minmax(0, 1fr) clamp(122px, 28vw, 172px);
    grid-template-areas:
      "label label"
      "title visual"
      "description visual"
      "list visual";
    gap: clamp(8px, 2.1vw, 14px);
    align-items: start;
    align-content: start;
    padding: clamp(18px, 4.8vw, 26px);
    border-radius: 22px;
  }

  .income-card__content {
    display: contents;
  }

  .income-card__label,
  .income-card__title,
  .income-card__description,
  .income-card__list {
    position: relative;
    z-index: 3;
  }

  .income-card__label {
    grid-area: label;
    gap: 12px;
  }

  .income-card__icon {
    width: clamp(44px, 11.5vw, 54px);
    height: clamp(44px, 11.5vw, 54px);
    border-radius: 10px;
  }

  .income-card__tag {
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.1;
  }

  .income-card__title {
    grid-area: title;
    max-width: 100%;
    margin-top: clamp(22px, 5.5vw, 30px);
    font-size: clamp(22px, 4.75vw, 29px);
    line-height: 1.14;
  }

  .income-card_theme_invest .income-card__title {
    max-width: 100%;
    font-size: clamp(21px, 4.55vw, 27px);
  }

  .income-card__description {
    grid-area: description;
    margin-top: clamp(10px, 2.8vw, 14px);
    font-size: clamp(13px, 3.15vw, 16px);
    line-height: 1.46;
  }

  .income-card__list {
    grid-area: list;
    margin-top: clamp(18px, 4.8vw, 24px);
  }

  .income-card__item {
    min-height: 20px;
    padding-left: clamp(25px, 6.4vw, 31px);
    font-size: clamp(12.5px, 3.2vw, 15px);
    line-height: 1.45;
  }

  .income-card__item + .income-card__item {
    margin-top: clamp(9px, 2.8vw, 14px);
  }

  .income-card__item::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .income-card__visual {
    grid-area: visual;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: auto;
    align-self: stretch;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
  }

  .income-card_theme_partner .income-card__visual,
  .income-card_theme_invest .income-card__visual {
    margin-right: 0;
  }

  .income-phone_type_partner {
    width: clamp(126px, 27vw, 172px);
    transform: rotate(-3deg) translateX(clamp(0px, 0.6vw, 5px));
  }

  .income-phone_type_invest {
    width: clamp(120px, 25.5vw, 162px);
    transform: rotate(3deg) translateX(clamp(0px, 0.6vw, 4px));
  }

  .income-section__mark {
    width: clamp(60px, 14vw, 78px);
    margin: clamp(-18px, -3vw, -12px) 0;
  }

}

@media (max-width: 360px) {
  .logo {
    width: 106px;
  }

  .logo__image {
    width: 106px;
  }

  .header__mobile-action {
    right: 70px;
    width: 112px;
    min-height: 36px;
    font-size: 10.8px;
  }
}

@media (max-width: 390px) {
  .income-section__mark {
    width: 54px;
    margin: -14px 0;
  }

  .income-card {
    min-height: 370px;
    grid-template-columns: minmax(0, 1fr) clamp(104px, 30vw, 120px);
    gap: 7px;
    padding: 16px;
  }

  .income-card__content {
    width: auto;
  }

  .income-card__label {
    gap: 10px;
  }

  .income-card__icon {
    width: 42px;
    height: 42px;
  }

  .income-card__tag {
    font-size: 11px;
  }

  .income-card__title {
    font-size: 20px;
    line-height: 1.12;
  }

  .income-card_theme_invest .income-card__title {
    font-size: 19px;
  }

  .income-card__description {
    font-size: 12.5px;
  }

  .income-card__item {
    padding-left: 26px;
    font-size: 12px;
  }

  .income-card__item::before {
    width: 18px;
    height: 18px;
  }

  .income-card__visual {
    margin-right: 0;
  }

  .income-phone_type_partner {
    width: clamp(112px, 29vw, 124px);
  }

  .income-phone_type_invest {
    width: clamp(106px, 27vw, 118px);
  }
}

@media (max-width: 430px) {
  .income-section__mark {
    width: 58px;
    margin: -16px 0;
  }

  .income-card {
    height: auto;
    min-height: clamp(420px, 96vw, 470px);
    grid-template-columns: minmax(0, 1fr) clamp(100px, 26vw, 116px);
  }

  .income-card__title {
    font-size: clamp(18px, 4.7vw, 21px);
  }

  .income-card_theme_invest .income-card__title {
    font-size: clamp(17px, 4.4vw, 20px);
  }

  .income-card__description {
    font-size: clamp(12px, 3.05vw, 14px);
  }

  .income-card__item {
    font-size: clamp(11.5px, 3vw, 13px);
  }

  .income-phone_type_partner {
    width: clamp(108px, 27.5vw, 126px);
    transform: rotate(-2deg) translateX(clamp(7px, 2vw, 9px));
  }

  .income-phone_type_invest {
    width: clamp(102px, 26vw, 118px);
    transform: rotate(2deg) translateX(clamp(3px, 1vw, 4px));
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .page__main > section.trust-section {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .trust-section {
    min-height: 92svh;
    padding-top: clamp(72px, 9vw, 86px);
    padding-bottom: clamp(30px, 5vw, 48px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(245, 249, 255, 0.08) 45%, rgba(240, 247, 255, 0.22) 100%),
      url("../img/trust/trust-bg-mobile.png") center top / cover no-repeat,
      #f2f7ff;
  }

  .trust-section__title {
    max-width: 560px;
    font-size: clamp(48px, 7.2vw, 56px);
  }

  .trust-section__subtitle {
    max-width: 600px;
    margin-top: 22px;
    font-size: clamp(20px, 3vw, 24px);
  }

  .trust-section__grid {
    width: min(86vw, 620px);
    margin-top: clamp(114px, 13.8vw, 136px);
    gap: clamp(14px, 2.2vw, 18px);
  }

  .trust-item {
    min-height: clamp(94px, 12.5vw, 108px);
    padding: clamp(12px, 1.8vw, 16px) clamp(22px, 3vw, 30px);
    gap: clamp(18px, 3vw, 26px);
  }

  .trust-item__icon {
    width: clamp(64px, 9vw, 76px);
    height: clamp(64px, 9vw, 76px);
  }

  .trust-item__icon svg {
    width: clamp(42px, 6vw, 54px);
    height: clamp(42px, 6vw, 54px);
  }

  .trust-item__title {
    font-size: clamp(25px, 3.85vw, 31.5px);
  }

  .trust-item__text {
    font-size: clamp(19px, 2.9vw, 22px);
  }

  .trust-section__cta {
    width: min(86vw, 620px);
    grid-template-columns: clamp(76px, 11vw, 88px) minmax(0, 1fr);
    gap: 18px 24px;
    padding: clamp(22px, 3.4vw, 30px);
  }

  .trust-section__brand {
    width: clamp(76px, 11vw, 88px);
    height: clamp(76px, 11vw, 88px);
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }

  .trust-section__brand img {
    display: block;
    width: 74%;
    max-width: 74%;
    height: 74%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .trust-section__cta-title {
    font-size: clamp(28px, 4.1vw, 34px);
    max-width: 100%;
    text-align: left;
    white-space: normal;
    word-break: normal;
  }

  .trust-section__cta-text {
    font-size: clamp(17px, 2.5vw, 20px);
  }

  .trust-section__cta-button {
    grid-column: 1 / -1;
    min-height: clamp(58px, 8vw, 70px);
    font-size: clamp(24px, 3.6vw, 30px);
  }

  .trust-section__mobile-divider,
  .trust-section__mobile-telegram {
    display: none;
  }
}

@media (max-width: 620px) {
  .page__main > section.trust-section {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .trust-section {
    min-height: 94svh;
    padding-top: clamp(50px, 12.5vw, 66px);
    padding-right: clamp(12px, 3.8vw, 22px);
    padding-bottom: clamp(18px, 5vw, 28px);
    padding-left: clamp(12px, 3.8vw, 22px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(245, 249, 255, 0.06) 46%, rgba(240, 247, 255, 0.2) 100%),
      url("../img/trust/trust-bg-mobile.png") center top / cover no-repeat,
      #f2f7ff;
  }

  .trust-section__title {
    max-width: min(78vw, 330px);
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.05;
  }

  .trust-section__subtitle {
    max-width: min(86vw, 360px);
    margin-top: clamp(20px, 5vw, 24px);
    font-size: clamp(14px, 3.55vw, 17px);
    line-height: 1.3;
  }

  .trust-section__grid {
    width: min(82vw, 348px);
    min-width: min(310px, calc(100vw - 36px));
    margin-top: clamp(82px, 20vw, 102px);
    gap: clamp(10px, 2.8vw, 14px);
  }

  .trust-item {
    min-height: clamp(70px, 18.5vw, 82px);
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4.2vw, 22px);
    gap: clamp(14px, 4vw, 20px);
  }

  .trust-item__icon {
    width: clamp(50px, 13vw, 60px);
    height: clamp(50px, 13vw, 60px);
  }

  .trust-item__icon svg {
    width: clamp(34px, 9vw, 44px);
    height: clamp(34px, 9vw, 44px);
  }

  .trust-item__title {
    font-size: clamp(18.2px, 4.75vw, 22px);
  }

  .trust-item__text {
    margin-top: clamp(3px, 0.9vw, 5px);
    font-size: clamp(14.5px, 3.75vw, 17.2px);
    line-height: 1.23;
  }

  .trust-section__cta {
    width: min(88vw, 370px);
    margin-top: clamp(20px, 5.4vw, 28px);
    grid-template-columns: clamp(56px, 15vw, 68px) minmax(0, 1fr);
    gap: clamp(10px, 2.9vw, 14px) clamp(13px, 3.6vw, 18px);
    padding: clamp(14px, 3.7vw, 20px) clamp(16px, 4.2vw, 22px);
    border-radius: clamp(20px, 5.2vw, 26px);
  }

  .trust-section__brand {
    width: clamp(56px, 15vw, 68px);
    height: clamp(56px, 15vw, 68px);
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: clamp(12px, 3.2vw, 16px);
  }

  .trust-section__brand img {
    display: block;
    width: 74%;
    max-width: 74%;
    height: 74%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .trust-section__cta-title {
    max-width: 100%;
    font-size: clamp(18px, 4.85vw, 23px);
    line-height: 1.12;
    text-align: left;
    white-space: normal;
    word-break: normal;
  }

  .trust-section__cta-text {
    margin-top: clamp(6px, 1.6vw, 8px);
    font-size: clamp(12.5px, 3.3vw, 15.5px);
    line-height: 1.28;
  }

  .trust-section__cta-button {
    min-height: clamp(52px, 13.6vw, 62px);
    font-size: clamp(21px, 5.7vw, 27px);
  }

  .trust-section__mobile-divider {
    gap: clamp(12px, 3.3vw, 18px);
    font-size: clamp(12px, 3.25vw, 14px);
  }

  .trust-section__mobile-telegram {
    grid-template-columns: clamp(46px, 12vw, 56px) minmax(0, 1fr) 12px;
    gap: clamp(12px, 3.3vw, 18px);
    font-size: clamp(14.5px, 3.9vw, 18px);
  }

  .trust-section__mobile-telegram-icon {
    width: clamp(46px, 12vw, 56px);
    height: clamp(46px, 12vw, 56px);
  }

  .trust-section__mobile-telegram-arrow {
    width: 12px;
  }
}

/* Keep screen 7 full-bleed after legacy responsive section rules. */
.page__main > section.contact-section {
  width: 100%;
  max-width: none;
}

/* Final screen 3 desktop fit layer: this must stay after legacy product rules. */
@media (min-width: 901px) {
  .page__main > section.products-section {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .products-section {
    --products-ink: #050c2d;
    --products-muted: #70799b;
    --products-blue: #075bff;
    --products-green: #009b4b;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(10px, 2.1svh, 28px);
    height: calc(100svh - var(--header-height));
    min-height: 0;
    margin: 0;
    padding:
      clamp(14px, 3.8svh, 66px)
      clamp(18px, 3.55vw, 68px)
      clamp(12px, 2.7svh, 42px);
    overflow: hidden;
    scroll-margin-top: var(--header-height);
    background: url("../img/products/products-bg.png") center / cover no-repeat;
  }

  .products-section::before {
    content: none;
    display: none;
  }

  .products-section__head,
  .products-section__grid {
    width: min(100%, 1760px);
    margin-right: auto;
    margin-left: auto;
  }

  .products-section__head {
    margin-bottom: 0;
    text-align: center;
  }

  .products-section__eyebrow,
  .products-section__note {
    display: none;
  }

  .products-section__title {
    margin: 0;
    color: var(--products-ink);
    font-size: clamp(36px, min(4.45vw, 8.7svh), 74px);
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 850;
  }

  .products-section__subtitle {
    margin: clamp(4px, 0.75svh, 10px) 0 0;
    color: var(--products-muted);
    font-size: clamp(16px, min(1.45vw, 2.9svh), 26px);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
  }

  .products-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.2vw, 22px);
    min-height: 0;
  }

  .product-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 55.5% 44.5%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(106, 137, 200, 0.2);
    border-radius: clamp(16px, 1.35vw, 26px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 22px 48px rgba(40, 65, 112, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
  }

  .product-card__media {
    min-height: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(106, 137, 200, 0.1);
    background-repeat: no-repeat;
    background-position: center;
  }

  .product-card__media_kind_bottle {
    background-image: url("../img/products/product-inulovit-display.webp");
    background-size: cover;
    background-position: center;
    background-color: #edf4e5;
  }

  .product-card__media_kind_phone {
    background-image: url("../img/products/product-lifeum-phone.webp");
    background-size: auto 128%;
    background-position: center top;
    background-color: #f8fbff;
  }

  .product-card__media_kind_dashboard {
    background-image: url("../img/products/product-smm-dashboard.png");
    background-size: contain;
    background-position: center;
    background-color: #0c111b;
  }

  .product-card__media_kind_learn {
    background-image: url("../img/products/product-niap-display.png");
    background-size: contain;
    background-position: center;
    background-color: #f5fbff;
  }

  .product-card__media > * {
    display: none;
  }

  .product-card__content {
    display: grid;
    align-content: start;
    min-height: 0;
    padding: clamp(18px, 1.45vw, 26px);
  }

  .product-card__tag {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: clamp(26px, 1.75vw, 32px);
    padding: 0 clamp(12px, 0.9vw, 16px);
    border-radius: 999px;
    font-size: clamp(12px, 0.75vw, 14px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 800;
    white-space: nowrap;
  }

  .product-card__tag_theme_health {
    color: #00864b;
    background: linear-gradient(135deg, #dcfae7 0%, #c9f6ef 100%);
  }

  .product-card__tag_theme_tech {
    color: #075bff;
    background: linear-gradient(135deg, #eaf2ff 0%, #e1edff 100%);
  }

  .product-card__tag_theme_education {
    color: #7a48ff;
    background: linear-gradient(135deg, #f2eaff 0%, #eae2ff 100%);
  }

  .product-card__title {
    margin: clamp(12px, 1.45svh, 16px) 0 0;
    color: var(--products-ink);
    font-size: clamp(22px, 1.45vw, 28px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 850;
  }

  .product-card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin: clamp(8px, 1svh, 12px) 0 0;
    color: #1d294e;
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 1.38;
    letter-spacing: 0;
    font-weight: 500;
  }

  .product-card__price {
    margin: clamp(14px, 1.55svh, 20px) 0 0;
    color: var(--products-ink);
    font-size: clamp(22px, 1.45vw, 28px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 850;
  }

  .product-card__bonus {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: clamp(7px, 0.9svh, 10px) 0 0;
    color: var(--products-green);
    font-size: clamp(14px, 0.86vw, 16px);
    line-height: 1.28;
    letter-spacing: 0;
    font-weight: 600;
  }

  .product-card__more {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    align-self: end;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--products-blue);
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 850;
    cursor: pointer;
  }

  .product-card__more::after {
    content: "\2192";
    margin: 0;
    font-size: 1.2em;
    line-height: 1;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .products-section {
    gap: clamp(8px, 1.5svh, 16px);
    padding-top: clamp(12px, 2.2svh, 24px);
    padding-bottom: clamp(10px, 1.9svh, 20px);
  }

  .products-section__title {
    font-size: clamp(30px, min(3.65vw, 8svh), 64px);
  }

  .products-section__subtitle {
    font-size: clamp(14px, min(1.25vw, 2.8svh), 22px);
  }

  .product-card {
    grid-template-rows: 52.5% 47.5%;
  }

  .product-card__content {
    padding: clamp(14px, min(1.2vw, 2.25svh), 20px);
  }

  .product-card__description {
    -webkit-line-clamp: 3;
  }

  .product-card__tag {
    min-height: clamp(24px, 3.4svh, 28px);
    font-size: clamp(11px, 1.75svh, 13px);
  }

  .product-card__title,
  .product-card__price {
    font-size: clamp(20px, 3.1svh, 24px);
  }

  .product-card__description {
    font-size: clamp(13px, 1.85svh, 15px);
    line-height: 1.32;
  }

  .product-card__bonus,
  .product-card__more {
    font-size: clamp(12px, 1.75svh, 14px);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .products-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card {
    min-height: 0;
  }

  .product-card__content {
    padding: clamp(14px, 1.35vw, 18px);
  }

  .product-card__media_kind_dashboard {
    background-size: contain;
    background-position: center;
  }

  .product-card__media_kind_learn {
    background-size: 96% auto;
  }

  .product-card__title {
    font-size: clamp(17px, 2.2vw, 28px);
  }

  .product-card__description {
    font-size: clamp(10px, 1.25vw, 15px);
    -webkit-line-clamp: 4;
  }

  .product-card__price {
    font-size: clamp(15px, 1.9vw, 24px);
  }

  .product-card__bonus,
  .product-card__more {
    font-size: clamp(10px, 1.16vw, 14px);
  }
}

/* Final screen 3 desktop polish: keep cards close to the supplied layout on wide monitors. */
@media (min-width: 901px) {
  .products-section {
    grid-template-rows: auto auto;
  align-content: start;
  gap: clamp(108px, 11.2svh, 150px);
  height: auto;
  min-height: calc(100svh - var(--header-height) + clamp(185px, 20svh, 275px));
    padding:
      clamp(100px, 11.2svh, 148px)
      clamp(18px, 3.55vw, 68px)
      clamp(64px, 7.8svh, 104px);
    overflow: visible;
  }

  .products-section__head,
  .products-section__grid {
    width: min(100%, 1760px);
  }

  .products-section__title {
    font-size: clamp(38px, min(4.25vw, 8.45svh), 74px);
  }

  .products-section__subtitle {
    margin-top: clamp(4px, 0.7svh, 9px);
    font-size: clamp(16px, min(1.4vw, 2.75svh), 25px);
  }

  .products-section__grid {
    gap: clamp(16px, 1.2vw, 22px);
    align-items: start;
  }

  .product-card {
    align-self: start;
    grid-template-rows: auto auto;
    height: auto;
  }

  .product-card__media {
    min-height: clamp(228px, 15.25vw, 292px);
  }

  .product-card__media_kind_bottle {
    background-size: cover;
    background-position: center 38%;
  }

  .product-card__media_kind_phone {
    background-size: auto 121%;
    background-position: center top;
  }

  .product-card__media_kind_dashboard {
    background-size: contain;
    background-position: center;
  }

  .product-card__media_kind_learn {
    background-size: contain;
    background-position: center;
  }

  .product-card__content {
    overflow: hidden;
    padding:
      clamp(18px, 1.25vw, 24px)
      clamp(18px, 1.25vw, 24px)
      clamp(22px, 1.55vw, 30px);
  }

  .product-card__tag {
    min-height: clamp(24px, 1.65vw, 31px);
    padding: 0 clamp(12px, 0.85vw, 16px);
    font-size: clamp(11px, 0.72vw, 14px);
  }

  .product-card__title {
    margin-top: clamp(9px, 1.15svh, 15px);
    font-size: clamp(21px, 1.34vw, 27px);
  }

  .product-card__description {
    -webkit-line-clamp: 3;
    margin-top: clamp(6px, 0.85svh, 10px);
    font-size: clamp(13.5px, 0.86vw, 16.5px);
    line-height: 1.34;
  }

  .product-card__price {
    margin-top: clamp(10px, 1.25svh, 16px);
    font-size: clamp(20px, 1.3vw, 26px);
  }

  .product-card__bonus {
    -webkit-line-clamp: 2;
    margin-top: clamp(5px, 0.75svh, 8px);
    font-size: clamp(12.5px, 0.78vw, 15px);
  }

  .product-card__more {
    position: absolute;
    left: clamp(16px, 1.25vw, 24px);
    bottom: clamp(16px, 2.1svh, 22px);
    align-self: auto;
    margin-top: 0;
    font-size: clamp(14px, 0.86vw, 16.5px);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .products-section {
    gap: clamp(76px, 9.2svh, 100px);
    min-height: calc(100svh - var(--header-height) + clamp(138px, 17svh, 210px));
    padding-top: clamp(64px, 8.3svh, 88px);
    padding-bottom: clamp(46px, 6.4svh, 70px);
  }

  .product-card {
    grid-template-rows: auto auto;
  }

  .product-card__media {
    min-height: clamp(190px, 31svh, 238px);
  }

  .product-card__content {
    padding: clamp(12px, min(1.1vw, 2.1svh), 17px);
  }

  .product-card__title,
  .product-card__price {
    font-size: clamp(18px, 2.95svh, 23px);
  }

  .product-card__description {
    -webkit-line-clamp: 3;
    font-size: clamp(12px, 1.75svh, 14px);
    line-height: 1.3;
  }

  .product-card__bonus,
  .product-card__more {
    font-size: clamp(11px, 1.65svh, 13px);
  }
}

/* Final screen 3 mobile layer: independent from legacy product styles. */
@media (max-width: 900px) {
  .page__main > section.products-section {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .products-section {
    --products-ink: #050c2d;
    --products-muted: #6b7397;
    --products-blue: #075bff;
    --products-green: #009b4b;
    display: block;
    height: auto;
    min-height: 0;
    margin: 0;
    padding:
      clamp(54px, 13vw, 96px)
      clamp(14px, 4.2vw, 34px)
      clamp(32px, 8vw, 58px);
    overflow: visible;
    border-radius: 0;
    background: url("../img/products/products-bg.png") center top / cover no-repeat;
    color: var(--products-ink);
  }

  .products-section::before {
    content: none;
    display: none;
  }

  .products-section__head,
  .products-section__grid,
  .products-section__note {
    width: min(100%, 820px);
    margin-right: auto;
    margin-left: auto;
  }

  .products-section__head {
    margin-bottom: clamp(44px, 10.5vw, 76px);
    text-align: left;
  }

  .products-section__eyebrow {
    display: none;
  }

  .products-section__title {
    max-width: min(100%, 760px);
    margin: 0;
    color: var(--products-ink);
    font-size: clamp(36px, 9.4vw, 72px);
    line-height: 1.06;
    letter-spacing: 0;
    font-weight: 850;
  }

  .products-section__subtitle {
    margin: clamp(8px, 2.4vw, 16px) 0 0;
    color: var(--products-muted);
    font-size: clamp(17px, 4.35vw, 28px);
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 700;
  }

  .products-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 3.6vw, 22px);
  }

  .product-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(136px, 41%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-width: 0;
    min-height: clamp(218px, 56vw, 292px);
    overflow: hidden;
    border: 1px solid rgba(106, 137, 200, 0.16);
    border-radius: clamp(18px, 5vw, 30px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 16px 32px rgba(41, 72, 126, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
  }

  .product-card__media {
    min-height: 100%;
    padding: 0;
    border-right: 1px solid rgba(106, 137, 200, 0.08);
    border-bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
  }

  .product-card__media > * {
    display: none;
  }

  .product-card__media_kind_bottle {
    background-image: url("../img/products/product-inulovit-display.webp");
    background-size: cover;
    background-position: center 48%;
    background-color: #edf4e5;
  }

  .product-card__media_kind_phone {
    background-image: url("../img/products/product-lifeum-phone.webp");
    background-size: auto 92%;
    background-position: center center;
    background-color: #f8fbff;
  }

  .product-card__media_kind_dashboard {
    background-image: url("../img/products/product-smm-dashboard.png");
    background-size: cover;
    background-position: 8% center;
    background-color: #0c111b;
  }

  .product-card__media_kind_learn {
    background-image: url("../img/products/product-niap-display.png");
    background-size: 122% auto;
    background-position: center;
    background-color: #f5fbff;
  }

  .product-card__content {
    display: grid;
    align-content: start;
    min-width: 0;
    min-height: 0;
    padding:
      clamp(15px, 3.7vw, 26px)
      clamp(15px, 3.8vw, 28px)
      clamp(15px, 3.7vw, 26px)
      clamp(15px, 3.8vw, 28px);
  }

  .product-card__tag {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: clamp(24px, 6.4vw, 38px);
    padding: 0 clamp(11px, 3vw, 18px);
    border-radius: 999px;
    font-size: clamp(10.5px, 2.8vw, 15px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 800;
    white-space: nowrap;
  }

  .product-card__tag_theme_health {
    color: #00864b;
    background: linear-gradient(135deg, #dcfae7 0%, #c9f6ef 100%);
  }

  .product-card__tag_theme_tech {
    color: #075bff;
    background: linear-gradient(135deg, #eaf2ff 0%, #e1edff 100%);
  }

  .product-card__tag_theme_education {
    color: #7a48ff;
    background: linear-gradient(135deg, #f2eaff 0%, #eae2ff 100%);
  }

  .product-card__title {
    margin: clamp(8px, 2.5vw, 16px) 0 0;
    color: var(--products-ink);
    font-size: clamp(20px, 5.25vw, 36px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 850;
  }

  .product-card__description {
    display: block;
    overflow: visible;
    margin: clamp(6px, 1.8vw, 11px) 0 0;
    color: #1d294e;
    font-size: clamp(12px, 3.05vw, 18px);
    line-height: 1.34;
    letter-spacing: 0;
    font-weight: 500;
  }

  .product-card__price {
    margin: clamp(10px, 2.8vw, 20px) 0 0;
    color: var(--products-ink);
    font-size: clamp(18px, 4.7vw, 30px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 850;
  }

  .product-card__bonus {
    display: block;
    overflow: visible;
    margin: clamp(5px, 1.6vw, 10px) 0 0;
    color: var(--products-green);
    font-size: clamp(11px, 2.8vw, 16px);
    line-height: 1.28;
    letter-spacing: 0;
    font-weight: 600;
  }

  .product-card__more {
    position: absolute;
    top: 50%;
    right: clamp(14px, 4.4vw, 34px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 12.4vw, 78px);
    height: clamp(48px, 12.4vw, 78px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: transparent;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(36, 68, 130, 0.14);
    transform: translateY(-50%);
    cursor: pointer;
  }

  .product-card__more::after {
    content: "\2192";
    margin: 0;
    color: var(--products-blue);
    font-size: clamp(23px, 6.1vw, 38px);
    line-height: 1;
    font-weight: 850;
  }

  .products-section__note {
    position: relative;
    display: grid;
    grid-template-columns: clamp(46px, 12vw, 64px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(16px, 4.2vw, 28px);
    margin-top: clamp(24px, 6.4vw, 42px);
    color: #66709a;
    text-align: left;
    font-size: clamp(15px, 3.75vw, 22px);
    line-height: 1.35;
    font-style: normal;
    font-weight: 600;
  }

  .products-section__note::before {
    content: "";
    width: clamp(46px, 12vw, 64px);
    height: clamp(46px, 12vw, 64px);
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
      0 12px 24px rgba(26, 70, 150, 0.1),
      inset 0 0 0 1px rgba(7, 91, 255, 0.12);
  }

  .products-section__note::after {
    content: "";
    position: absolute;
    left: clamp(14px, 3.6vw, 20px);
    top: 50%;
    width: clamp(18px, 4.8vw, 26px);
    height: clamp(21px, 5.5vw, 30px);
    background: var(--products-blue);
    clip-path: polygon(50% 0, 90% 16%, 90% 49%, 75% 77%, 50% 100%, 25% 77%, 10% 49%, 10% 16%);
    transform: translateY(-50%);
  }
}

@media (max-width: 430px) {
  .products-section {
    padding-right: clamp(14px, 4vw, 18px);
    padding-left: clamp(14px, 4vw, 18px);
  }

  .product-card {
    grid-template-columns: minmax(132px, 40%) minmax(0, 1fr);
    min-height: clamp(226px, 58vw, 250px);
  }

  .product-card__content {
    padding:
      clamp(13px, 3.6vw, 16px)
      clamp(13px, 3.6vw, 16px)
      clamp(13px, 3.6vw, 16px)
      clamp(13px, 3.6vw, 16px);
  }

  .product-card__tag {
    min-height: 24px;
    font-size: clamp(10.5px, 2.9vw, 12.5px);
  }

  .product-card__title {
    font-size: clamp(19px, 5.45vw, 24px);
  }

  .product-card__description {
    font-size: clamp(11.25px, 3.02vw, 12.75px);
  }

  .product-card__price {
    font-size: clamp(17px, 4.9vw, 21px);
  }

  .product-card__bonus {
    font-size: clamp(10.5px, 2.9vw, 12.5px);
  }
}

.products-section .product-card__more {
  display: none !important;
}

/* Equal-height product cards when one card grows with content. */
@media (min-width: 901px) {
  .products-section__grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .product-card {
    align-self: stretch;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
  }

  .product-card__content {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    align-content: stretch;
    height: 100%;
    min-height: 0;
  }

  .product-card__tag {
    grid-row: 1;
  }

  .product-card__title {
    grid-row: 2;
  }

  .product-card__description {
    grid-row: 3;
  }

  .product-card__price {
    grid-row: 5;
  }

  .product-card__bonus {
    grid-row: 6;
  }
}

/* Slightly larger copy in product cards. */
@media (min-width: 901px) {
  .product-card__tag {
    font-size: clamp(12px, 0.78vw, 15px);
  }

  .product-card__title,
  .product-card__price {
    font-size: clamp(22px, 1.42vw, 28px);
  }

  .product-card__description {
    font-size: clamp(14.5px, 0.92vw, 17.5px);
    line-height: 1.35;
  }

  .product-card__bonus,
  .product-card__more {
    font-size: clamp(13px, 0.84vw, 16px);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .product-card__tag {
    font-size: clamp(11.5px, 1.8svh, 13.5px);
  }

  .product-card__title,
  .product-card__price {
    font-size: clamp(19px, 3.1svh, 24px);
  }

  .product-card__description {
    font-size: clamp(12.8px, 1.85svh, 14.8px);
    line-height: 1.31;
  }

  .product-card__bonus,
  .product-card__more {
    font-size: clamp(11.8px, 1.75svh, 13.8px);
  }
}

@media (max-width: 900px) {
  .product-card__tag {
    font-size: clamp(11px, 2.95vw, 15.5px);
  }

  .product-card__title {
    font-size: clamp(21px, 5.5vw, 37px);
  }

  .product-card__description {
    font-size: clamp(12.5px, 3.2vw, 19px);
  }

  .product-card__price {
    font-size: clamp(19px, 4.95vw, 31px);
  }

  .product-card__bonus {
    font-size: clamp(11.5px, 2.95vw, 17px);
  }
}

@media (max-width: 430px) {
  .product-card__tag {
    font-size: clamp(11px, 3.05vw, 13px);
  }

  .product-card__title {
    font-size: clamp(20px, 5.65vw, 25px);
  }

  .product-card__description {
    font-size: clamp(11.75px, 3.15vw, 13.25px);
  }

  .product-card__price {
    font-size: clamp(18px, 5.05vw, 22px);
  }

  .product-card__bonus {
    font-size: clamp(11px, 3.05vw, 13px);
  }
}

/* Policy page */
.policy-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 78, 207, 0.11), transparent 31%),
    radial-gradient(circle at 82% 16%, rgba(8, 119, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f5f7fb 48%, #ffffff 100%);
}

.policy-main {
  padding-top: 0;
}

.page__main > section.policy-section {
  width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), 1180px);
  max-width: 1180px;
}

.policy-section {
  padding: clamp(44px, 6vw, 92px) 0 clamp(30px, 4.6vw, 72px);
}

.policy-section__head {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
}

.policy-section__back {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(15, 78, 207, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #0f4ecf;
  text-decoration: none;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(44, 74, 126, 0.08);
}

.policy-section__back:hover {
  border-color: rgba(15, 78, 207, 0.36);
  background: #ffffff;
}

.policy-section__eyebrow {
  margin: clamp(8px, 1vw, 14px) 0 0;
  color: #0c62ff;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.3;
  font-weight: 850;
  text-transform: uppercase;
}

.policy-section__title {
  max-width: 940px;
  margin: 0;
  color: #071238;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 850;
}

.policy-section__lead {
  max-width: 850px;
  margin: 0;
  color: #4b5570;
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.45;
  font-weight: 500;
}

.policy-section__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: clamp(14px, 2vw, 28px) 0 0;
  border: 1px solid rgba(117, 140, 178, 0.2);
  border-radius: 8px;
  background: rgba(117, 140, 178, 0.2);
  box-shadow: 0 22px 52px rgba(44, 74, 126, 0.1);
}

.policy-section__meta div {
  min-width: 0;
  padding: clamp(16px, 1.5vw, 24px);
  background: rgba(255, 255, 255, 0.86);
}

.policy-section__meta dt,
.policy-details dt {
  margin: 0 0 7px;
  color: #6b748c;
  font-size: clamp(12px, 0.84vw, 14px);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-section__meta dd,
.policy-details dd {
  min-width: 0;
  margin: 0;
  color: #071238;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.35;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.policy-section__meta a,
.policy-details a,
.policy-content a {
  color: #0c62ff;
  text-decoration: none;
}

.policy-section__meta a:hover,
.policy-details a:hover,
.policy-content a:hover {
  text-decoration: underline;
}

.policy-content {
  margin-top: clamp(28px, 3.2vw, 48px);
  padding: clamp(26px, 4.2vw, 58px);
  border: 1px solid rgba(117, 140, 178, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow:
    0 28px 76px rgba(44, 74, 126, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.policy-content section + section {
  margin-top: clamp(26px, 3vw, 42px);
  padding-top: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid rgba(117, 140, 178, 0.18);
}

.policy-content__preamble {
  padding: clamp(18px, 2vw, 28px);
  border-left: 4px solid #0c62ff;
  border-radius: 0 8px 8px 0;
  background: #eef6ff;
}

.policy-content__preamble + section {
  margin-top: clamp(26px, 3vw, 42px);
}

.policy-content h2 {
  margin: 0 0 clamp(12px, 1.2vw, 18px);
  color: #071238;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 850;
}

.policy-content h3 {
  margin: clamp(24px, 2.4vw, 34px) 0 clamp(10px, 1vw, 15px);
  color: #071238;
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 850;
}

.policy-content p,
.policy-content li {
  color: #25304a;
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.68;
  font-weight: 500;
}

.policy-content p {
  margin: 0;
}

.policy-clause {
  position: relative;
  padding-left: clamp(42px, 4vw, 58px);
}

.policy-clause__num {
  position: absolute;
  left: 0;
  top: 0.04em;
  color: #0c62ff;
  font-weight: 850;
}

.policy-content p + p,
.policy-content ul + p,
.policy-content p + ul {
  margin-top: clamp(12px, 1.2vw, 18px);
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.policy-content li::marker {
  color: #0c62ff;
}

.policy-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(117, 140, 178, 0.18);
  border-radius: 8px;
  background: rgba(117, 140, 178, 0.18);
}

.policy-details div {
  min-width: 0;
  padding: clamp(15px, 1.4vw, 22px);
  background: #f8fbff;
}

.policy-details div:nth-child(3) {
  grid-column: 1 / -1;
}

.policy-details--operator div:nth-child(4) {
  grid-column: 1 / -1;
}

.policy-appendix {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(12, 98, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(255, 255, 255, 0.94));
}

.policy-appendix__label,
.policy-content__subdate {
  margin: 0 0 clamp(10px, 1vw, 14px);
  color: #0c62ff;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.35;
  font-weight: 850;
  text-transform: uppercase;
}

.policy-content__subdate {
  color: #5b6680;
  text-transform: none;
}

.policy-content__note {
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(18px, 2vw, 28px);
  border-left: 4px solid #0c62ff;
  border-radius: 0 8px 8px 0;
  background: #eef6ff;
}

@media (max-width: 900px) {
  .page__main > section.policy-section {
    width: min(calc(100% - 32px), 1180px);
  }

  .policy-section {
    padding: clamp(34px, 8vw, 58px) 0 clamp(24px, 6vw, 44px);
  }

  .policy-section__title {
    font-size: clamp(34px, 9vw, 54px);
  }

  .policy-section__meta,
  .policy-details {
    grid-template-columns: 1fr;
  }

  .policy-details div:nth-child(3) {
    grid-column: auto;
  }

  .policy-details--operator div:nth-child(4) {
    grid-column: auto;
  }

  .policy-content {
    padding: clamp(22px, 6vw, 34px);
  }

  .policy-appendix {
    padding: clamp(20px, 5vw, 28px);
  }
}

@media (max-width: 430px) {
  .page__main > section.policy-section {
    width: min(calc(100% - 28px), 1180px);
  }

  .policy-section__back {
    width: 100%;
    justify-content: center;
  }

  .policy-section__title {
    font-size: clamp(30px, 10.4vw, 42px);
  }

  .policy-section__lead,
  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }

  .policy-clause {
    padding-left: 0;
  }

  .policy-clause__num {
    position: static;
    display: inline-block;
    margin-right: 5px;
  }
}

/* Unified typography */
h1,
h2,
.hero__title,
.mission-section__title,
.products-section__title,
.process-section__title,
.income-section__title,
.trust-section__title,
.contact-section__title,
.policy-section__title,
.policy-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
}

.mission-section__title,
.products-section__title,
.process-section__title,
.income-section__title,
.trust-section__title,
.contact-section__title {
  font-size: clamp(52px, 4vw, 70px);
  line-height: 1.05;
}

.mission-section__text,
.mission-card__description,
.products-section__subtitle,
.product-card__description,
.process-section__subtitle,
.process-card__text,
.income-section__subtitle,
.income-card__description,
.trust-section__subtitle,
.trust-item__text,
.trust-section__cta-text,
.contact-section__subtitle,
.hero-benefit__text,
.hero-benefit__mobile-text,
.product-modal__lead,
.product-modal__text,
.policy-section__lead,
.policy-content p,
.policy-content li {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .mission-section__title,
  .products-section__title,
  .process-section__title,
  .income-section__title,
  .trust-section__title,
  .contact-section__title {
    font-size: clamp(40px, 7vw, 56px);
  }
}

@media (max-width: 430px) {
  .mission-section__title,
  .products-section__title,
  .process-section__title,
  .income-section__title,
  .trust-section__title,
  .contact-section__title {
    font-size: clamp(34px, 9vw, 42px);
  }
}

/* Seamless landing section stitching */
.page__main:not(.policy-main) {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #edf6ff 16%,
      #eff7ff 34%,
      #f8fbff 50%,
      #edf6ff 73%,
      #f9fcff 100%
    );
}

.page__main:not(.policy-main) > section,
.page__main:not(.policy-main) > .footer {
  position: relative;
}

.hero {
  z-index: 1;
}

.hero__inner {
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: clamp(154px, 16vw, 270px);
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 255, 0) 0%,
      rgba(248, 251, 255, 0.48) 34%,
      rgba(241, 248, 255, 0.84) 68%,
      #edf6ff 100%
    );
  pointer-events: none;
}

.mission-section {
  background:
    linear-gradient(
      180deg,
      #edf6ff 0%,
      rgba(237, 246, 255, 0.98) 10%,
      rgba(237, 246, 255, 0) 31%,
      rgba(237, 246, 255, 0) 73%,
      rgba(237, 246, 255, 0.86) 92%,
      #edf6ff 100%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(246, 251, 255, 0.08) 37%, rgba(246, 251, 255, 0) 70%),
    #edf6ff url("../img/mission/mission-bg.png") center / cover no-repeat;
}

.process-section {
  background:
    linear-gradient(
      180deg,
      #eff7ff 0%,
      rgba(239, 247, 255, 0.98) 11%,
      rgba(248, 251, 255, 0) 32%,
      rgba(248, 251, 255, 0) 74%,
      rgba(248, 251, 255, 0.88) 92%,
      #f8fbff 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06)),
    url("../img/process/process-bg.png") center / 100% 100% no-repeat,
    #f8fbff;
}

.income-section {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      rgba(248, 251, 255, 0.98) 11%,
      rgba(251, 252, 255, 0) 31%,
      rgba(237, 246, 255, 0) 73%,
      rgba(237, 246, 255, 0.88) 92%,
      #edf6ff 100%
    ),
    #fbfcff url("../img/income/income-bg.png") center top / cover no-repeat;
}

.trust-section {
  border-radius: 0;
  background:
    linear-gradient(
      180deg,
      #edf6ff 0%,
      rgba(237, 246, 255, 0.98) 12%,
      rgba(237, 246, 255, 0) 31%,
      rgba(249, 252, 255, 0) 72%,
      rgba(249, 252, 255, 0.9) 92%,
      #f9fcff 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(238, 246, 255, 0.14) 48%, rgba(202, 224, 255, 0.2) 100%),
    url("../img/trust/trust-bg.png") center / cover no-repeat,
    #edf6ff;
}

.contact-section {
  background:
    linear-gradient(
      180deg,
      #f9fcff 0%,
      rgba(249, 252, 255, 0.98) 12%,
      rgba(249, 252, 255, 0) 31%,
      rgba(249, 252, 255, 0) 74%,
      rgba(248, 251, 255, 0.9) 92%,
      #f8fbff 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    url("../img/contact/contact-bg-desktop.png") center bottom / 100% 100% no-repeat,
    #f9fcff;
}

.footer {
  padding-top: clamp(24px, 3.6vw, 58px);
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 255, 0.98) 0%,
      rgba(246, 250, 255, 0.94) 42%,
      rgba(255, 255, 255, 0.92) 100%
    );
}

@media (min-width: 901px) {
  .products-section {
    background:
      linear-gradient(
        180deg,
        #edf6ff 0%,
        rgba(237, 246, 255, 0.96) 9%,
        rgba(237, 246, 255, 0) 28%,
        rgba(239, 247, 255, 0) 73%,
        rgba(239, 247, 255, 0.86) 92%,
        #eff7ff 100%
      ),
      url("../img/products/products-bg.png") center / cover no-repeat;
  }
}

@media (max-width: 900px) {
  .hero::after {
    height: clamp(118px, 30vw, 180px);
  }

  .mission-section {
    background:
      linear-gradient(
        180deg,
        #edf6ff 0%,
        rgba(237, 246, 255, 0.98) 13%,
        rgba(244, 250, 255, 0) 34%,
        rgba(244, 250, 255, 0) 72%,
        rgba(237, 246, 255, 0.88) 92%,
        #edf6ff 100%
      ),
      #f4faff;
  }

  .products-section {
    background:
      linear-gradient(
        180deg,
        #edf6ff 0%,
        rgba(237, 246, 255, 0.96) 12%,
        rgba(244, 248, 255, 0) 34%,
        rgba(239, 247, 255, 0) 74%,
        rgba(239, 247, 255, 0.86) 92%,
        #eff7ff 100%
      ),
      url("../img/products/products-bg.png") center top / cover no-repeat;
  }

  .contact-section {
    background:
      linear-gradient(
        180deg,
        #f9fcff 0%,
        rgba(249, 252, 255, 0.98) 14%,
        rgba(249, 252, 255, 0) 34%,
        rgba(249, 252, 255, 0) 74%,
        rgba(248, 251, 255, 0.9) 92%,
        #f8fbff 100%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
      url("../img/contact/contact-bg-mobile.png") center bottom / cover no-repeat,
      #f9fcff;
  }
}

:root {
  --screen-seam-glow: clamp(74px, 8vw, 132px);
  --screen-seam-spread: clamp(-78px, -4.8vw, -46px);
}

.hero {
  box-shadow: 0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.12) var(--screen-seam-spread) rgba(237, 246, 255, 0.92);
}

.mission-section {
  box-shadow:
    0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.94),
    0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.9);
}

.products-section {
  box-shadow:
    0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.88),
    0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(239, 247, 255, 0.84);
}

.process-section {
  box-shadow:
    0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(239, 247, 255, 0.88),
    0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(248, 251, 255, 0.82);
}

.income-section {
  box-shadow:
    0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(248, 251, 255, 0.84),
    0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.86);
}

.trust-section {
  box-shadow:
    0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.88),
    0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(249, 252, 255, 0.84);
}

.contact-section {
  box-shadow:
    0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(249, 252, 255, 0.86),
    0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(248, 251, 255, 0.86);
}

.footer {
  box-shadow: 0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(248, 251, 255, 0.88);
}

@media (min-width: 1181px) {
  .mission-section {
    background-size: 100% 100%, 100% 100%, clamp(1672px, 92vw, 1760px) auto;
    background-position: center, center, center;
    background-repeat: no-repeat;
  }

  .mission-section__layout {
    right: auto;
    left: 50%;
    width: min(100%, var(--layout-max));
    transform: translateX(-50%);
    container-type: inline-size;
  }
}

/* Keep the footer as a full-bleed screen element, not a constrained content card. */
.page__main:not(.policy-main) > .footer {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.footer__panel {
  width: 100%;
  max-width: none;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

@media (max-width: 900px) {
  :root {
    --screen-seam-glow: clamp(56px, 18vw, 98px);
    --screen-seam-spread: clamp(-58px, -10vw, -34px);
  }
}

@media (max-width: 900px) {
  .page__main:not(.policy-main) {
    background:
      linear-gradient(
        180deg,
        #edf6ff 0%,
        #edf6ff 38%,
        #f2f7ff 72%,
        #f9fcff 100%
      );
  }

  .income-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.74) 50%, rgba(237, 246, 255, 0.86) 88%, #edf6ff 100%),
      url("../img/income/income-bg.png") center top / auto clamp(860px, 134vw, 1160px) no-repeat,
      #edf6ff;
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
      url("../img/contact/contact-bg-mobile.png") center bottom / cover no-repeat,
      #f9fcff;
  }

  .mission-section::before {
    background:
      linear-gradient(180deg, rgba(237, 246, 255, 0.38) 0%, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0.46) 46%, rgba(255, 255, 255, 0.62) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.32) 58%, rgba(255, 255, 255, 0.04) 100%);
  }
}

@media (max-width: 700px) {
  .income-section {
    padding-bottom: clamp(82px, 18vw, 112px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(237, 246, 255, 0.86) 78%, #edf6ff 100%),
      url("../img/income/income-bg.png") center top / auto clamp(740px, 190vw, 980px) no-repeat,
      #edf6ff;
  }

  .trust-section {
    margin-top: clamp(-58px, -12vw, -38px);
    padding-top: clamp(86px, 20vw, 112px);
    background:
      linear-gradient(180deg, #edf6ff 0%, rgba(237, 246, 255, 0.96) 12%, rgba(245, 249, 255, 0.58) 32%, rgba(245, 249, 255, 0.08) 54%, rgba(240, 247, 255, 0.2) 100%),
      url("../img/trust/trust-bg-mobile.png") center top / cover no-repeat,
      #edf6ff;
    box-shadow:
      inset 0 86px 76px -54px rgba(237, 246, 255, 0.96),
      0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.9),
      0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(249, 252, 255, 0.84);
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .trust-section {
    margin-top: clamp(-64px, -7vw, -46px);
    padding-top: clamp(118px, 15vw, 142px);
    background:
      linear-gradient(180deg, #edf6ff 0%, rgba(237, 246, 255, 0.96) 13%, rgba(245, 249, 255, 0.54) 32%, rgba(245, 249, 255, 0.08) 52%, rgba(240, 247, 255, 0.22) 100%),
      url("../img/trust/trust-bg-mobile.png") center top / cover no-repeat,
      #edf6ff;
    box-shadow:
      inset 0 104px 88px -62px rgba(237, 246, 255, 0.96),
      0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.9),
      0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(249, 252, 255, 0.84);
  }
}

@media (max-width: 620px) {
  .trust-section {
    margin-top: clamp(-58px, -13vw, -42px);
    padding-top: clamp(88px, 21vw, 116px);
    background:
      linear-gradient(180deg, #edf6ff 0%, rgba(237, 246, 255, 0.96) 14%, rgba(245, 249, 255, 0.56) 34%, rgba(245, 249, 255, 0.06) 54%, rgba(240, 247, 255, 0.2) 100%),
      url("../img/trust/trust-bg-mobile.png") center top / cover no-repeat,
      #edf6ff;
    box-shadow:
      inset 0 90px 80px -56px rgba(237, 246, 255, 0.98),
      0 calc(-1 * var(--screen-seam-glow)) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(237, 246, 255, 0.9),
      0 var(--screen-seam-glow) calc(var(--screen-seam-glow) * 1.08) var(--screen-seam-spread) rgba(249, 252, 255, 0.84);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .hero__actions {
    gap: clamp(16px, 2vw, 24px);
    margin-top: clamp(22px, 3.4vh, 32px);
  }

  .hero__actions .button_size_large {
    min-width: clamp(230px, 22vw, 272px);
    min-height: clamp(56px, 6.4vh, 62px);
    padding: 10px clamp(22px, 2.4vw, 28px);
    border-radius: 11px;
    font-size: clamp(17px, 1.65vw, 19px);
  }

  .hero__actions .button_theme_outline {
    min-width: clamp(254px, 23vw, 286px);
  }
}

/* Final production layout layer: keep late responsive fixes grouped and non-duplicated. */
@media (min-width: 901px) {
  .products-section {
    grid-template-rows: auto auto;
    min-height: calc(100svh - var(--header-height) + clamp(92px, 10.5svh, 160px));
    padding-bottom: clamp(38px, 4.8svh, 62px);
  }

  .products-section__subtitle_desktop {
    display: block;
    width: 100%;
    max-width: none;
    margin: 12px auto 0;
    color: #4b587a;
    font-family: var(--font-body);
    font-size: clamp(20px, 1.35vw, 25px);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0;
  }

  .products-section__divider {
    position: relative;
    display: block;
    width: 96px;
    height: 2px;
    margin: clamp(28px, 3svh, 38px) auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(51, 137, 255, 0), #3389ff 50%, rgba(51, 137, 255, 0));
  }

  .products-section__divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 4px;
    border-radius: 999px;
    background: #1677ff;
    box-shadow: 0 0 10px rgba(22, 119, 255, 0.45);
    transform: translate(-50%, -50%);
  }

  .products-section__note,
  .products-section__note::before,
  .products-section__note::after {
    content: none;
    display: none;
  }

  .process-section {
    margin-top: clamp(16px, 1.7vw, 26px);
    padding-top: clamp(22px, 2.5vw, 40px);
  }

  .process-section__divider {
    margin-top: clamp(18px, 1.6vw, 24px);
  }

  .process-section__head {
    margin-bottom: clamp(34px, 3.2vw, 48px);
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .products-section {
    min-height: calc(100svh - var(--header-height) + clamp(12px, 3.2svh, 58px));
    padding-bottom: clamp(30px, 3.5svh, 46px);
  }
}

@media (max-width: 900px) {
  .products-section__subtitle_desktop,
  .products-section__divider {
    display: none;
  }

  .products-section {
    padding-bottom: clamp(24px, 6.2vw, 46px);
  }

  .process-section {
    margin-top: clamp(14px, 4.4vw, 22px);
    padding-top: clamp(24px, 7vw, 30px);
  }
}

/* Screen 5 adaptive polish: keep the center mark and phones inside the cards. */
@media (min-width: 1101px) and (max-width: 1500px) and (max-height: 940px) {
  .income-section__mark {
    top: calc(50% + clamp(12px, 1.8svh, 24px));
    width: clamp(102px, 7.2vw, 118px);
  }

  .income-phone {
    width: clamp(178px, 13.2vw, 196px);
  }

  .income-phone_type_partner {
    transform: rotate(-3deg) translateX(clamp(-16px, -1.1vw, -8px));
  }

  .income-card_theme_invest .income-phone_type_invest {
    width: clamp(164px, 12.2vw, 184px);
    transform: translateX(clamp(-16px, -1vw, -8px));
  }
}

@media (min-width: 1101px) and (max-width: 1320px) and (max-height: 940px) {
  .income-card_theme_invest .income-phone_type_invest {
    transform: translateX(-18px);
  }
}

@media (min-width: 1501px) and (max-height: 900px) {
  .income-phone {
    width: clamp(198px, 11.2vw, 214px);
  }

  .income-phone_type_partner {
    transform: rotate(-4deg) translate(clamp(-8px, -0.45vw, -4px), -8px);
  }

  .income-card_theme_invest .income-phone_type_invest {
    transform: translateY(-6px);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .income-phone_type_partner {
    width: clamp(178px, 19vw, 202px);
    transform: rotate(-3deg) translate(-8px, -8px);
  }

  .income-card_theme_invest .income-phone_type_invest {
    width: clamp(168px, 18vw, 192px);
    transform: translate(-8px, -6px);
  }
}

@media (min-width: 901px) and (max-width: 1380px) {
  .products-section__subtitle_desktop {
    font-size: 22px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .products-section__subtitle_desktop {
    font-size: 20px;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .products-section__subtitle_desktop {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
  }

  .products-section__divider {
    margin-top: 14px;
  }
}

/* Screen 3: match the divider-to-cards gap from screen 4 exactly. */
@media (min-width: 901px) {
  .products-section {
    gap: 0;
  }

  .products-section__head {
    margin-bottom: clamp(34px, 3.2vw, 48px);
  }
}
