/* AmoriaBridge v2 — Figma pixel-perfect tokens */
:root {
  --color-text: #1c1c32;
  --color-text-muted: #353555;
  --color-nav: #11111d;
  --color-dark: #1c1c32;
  --color-white: #fff;
  --color-footer-bg: #1c1c32;
  --color-day: #352eff;
  --color-accent-border: #8a86ff;
  --gradient-primary: linear-gradient(182deg, #4c46ed 11.53%, #8a86ff 94.56%);
  --gradient-text: linear-gradient(191deg, #4c46ed 11.53%, #8a86ff 94.56%);
  --shadow-btn: 0 4px 3.05px rgba(91, 85, 241, 0.2);
  --shadow-title: -10px 25px 33.4px rgba(91, 85, 241, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-blur: 50px;
  --glass-blur-sm: 10px;
  --glass-border: 3px solid #fff;
  --dashed-border: 2px dashed var(--color-accent-border);
  --dashed-border-lg: 3px dashed var(--color-accent-border);
  --container-max: 1240px;
  --section-px: clamp(20px, 6.94vw, 100px);
  --header-h: 80px;
  --radius-pill: 80px;
  --radius-card: 16px;
  --radius-card-lg: 24px;
  --font-heading: "Roboto", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-nav: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--viewport-bg, #f5f4ff);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--viewport-bg, #f5f4ff);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.background_text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #f5f4ff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 2px solid var(--color-white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: calc(var(--container-max) + var(--section-px) * 2);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.site-logo {
  flex-shrink: 0;
  width: 134px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
}

.site-nav__link {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-nav);
  opacity: 0.7;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.site-nav__link:hover {
  opacity: 1;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn_main {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 16px 32px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-btn);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

.btn_main--lg {
  min-height: 54px;
}

.btn_main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4c46ed 11.53%, #8a86ff 94.56%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.btn_main:hover::after {
  opacity: 1;
}

.btn_main__text,
.btn_main .telegram_icon {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* Scroll reveal */
.scroll-reveal {
  --reveal-y: 28px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.btn_main__divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.telegram_icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Hero */
.hero {
  position: relative;
  min-height: 800px;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-layers {
  position: absolute;
  inset: 0;
}

.hero__bg-figma {
  display: none;
}

.hero__bg-gradient {
  position: absolute;
  z-index: 2;
  top: -732px;
  left: -492px;
  width: 2533px;
  height: 2414px;
  max-width: none;
  pointer-events: none;
}

.hero__bg-letter {
  display: none;
  position: absolute;
  z-index: 4;
  top: 138px;
  left: 260px;
  width: 675px;
  height: 749px;
  max-width: none;
  pointer-events: none;
}

.hero__bg-decor {
  position: absolute;
  z-index: 3;
  max-width: none;
  pointer-events: none;
}

.hero__bg-decor--2 {
  top: 38.45%;
  left: calc(50% + 122.5px);
  width: 423px;
  height: auto;
  transform: translateX(-50%);
}

.hero__separator-img--tablet {
  display: none;
}

.hero__bg-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__ng-bubble {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero__ng-bubble--operator-top {
  top: 85px;
  left: calc(50% - 596px);
  width: 31px;
}

.hero__ng-bubble--heart-left {
  bottom: 101px;
  left: calc(50% - 447px);
  width: 23px;
}

.hero__ng-bubble--heart-top {
  top: 70px;
  right: calc(50% - 244px);
  width: 103px;
}

.hero__ng-bubble--heart-right {
  right: 38px;
  bottom: 97px;
  width: 57px;
}

.hero__ng-bubble--operator-bottom {
  right: calc(50% - 386px);
  bottom: 110px;
  width: 31px;
  transform: scaleX(-1);
}

.hero__ng-bubble--operator-right {
  top: 124px;
  right: 41px;
  width: 31px;
  transform: scaleX(-1);
}

.hero__ng-bubble--heart-card {
  bottom: 92px;
  left: calc(50% - 425px);
  width: 104px;
}

.hero__separator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: 84px;
  line-height: 0;
  pointer-events: none;
}

.hero__separator img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: fill;
}

.hero__separator-img--tablet {
  height: 45px;
  object-fit: fill;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 607px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
  max-width: calc(var(--container-max) + var(--section-px) * 2);
  min-height: calc(800px - var(--header-h));
  padding-top: 64px;
  padding-bottom: 0;
}

.hero__content {
  position: relative;
  padding-top: 66px;
}

.hero__content::before {
  display: none;
}

.hero__content::after {
  display: none;
}

.hero__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--color-text);
}

.hero__text {
  margin: 0 0 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  opacity: 0.7;
}

.hero__text p {
  margin: 0 0 0;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 503px;
  max-width: 503px;
  margin-left: auto;
}

.glass-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: var(--glass-border);
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.glass-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.glass-card__text {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  opacity: 0.7;
}

/* About — dark section */
.about {
  position: relative;
  padding: clamp(60px, 6.94vw, 100px) var(--section-px);
  background: var(--color-dark);
  color: var(--color-white);
}

.about::after,
.advantages::after,
.reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 80px;
  background: currentColor;
  pointer-events: none;
}

.about::after,
.advantages::after,
.reviews::after {
  color: var(--color-dark);
}

.about__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 60px);
  max-width: var(--container-max);
  margin-inline: auto;
}

.about__content {
  flex: 0 1 503px;
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
}

.section-title--dark {
  color: var(--color-white);
  text-shadow: var(--shadow-title);
}

.section-title--center {
  text-align: center;
}

.section-title--shadow {
  text-shadow: var(--shadow-title);
}

.section-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text);
  opacity: 0.7;
}

.section-subtitle--center {
  text-align: center;
  max-width: 819px;
  margin-inline: auto;
}

.section-subtitle--path {
  max-width: 1024px;
}

.section-subtitle--dark {
  color: var(--color-white);
}

.about__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  opacity: 0.7;
}

.about__text + .about__text {
  margin-top: 16px;
}

.stats {
  display: flex;
  gap: 16px;
  flex: 0 1 712px;
}

.stat-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 237px;
  padding: 24px 16px;
  border: var(--dashed-border);
  border-radius: var(--radius-card-lg);
  background: transparent;
  text-align: center;
}

.stat-card__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-shadow: var(--shadow-title);
}

.stat-card__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
}

/* Light sections (operator, path) */
.light-section {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.light-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #f7f6ff 0%, #fff 28%, #faf9ff 62%, #f3f1ff 100%);
}

.light-section__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: 1440px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
}

/* Operator */
.operator {
  position: relative;
  padding: clamp(60px, 6.94vw, 100px) var(--section-px);
  background: var(--color-white);
}

.operator .light-section__bg {
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f6ff 0%, #fff 28%, #faf9ff 62%, #f3f1ff 100%);
}

.operator__bubble {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.operator__bubble--top-left {
  top: 48px;
  left: 28px;
  width: 91px;
}

.operator__bubble--bottom-left {
  bottom: 79px;
  left: 95px;
  width: 24px;
}

.operator__bubble--center {
  top: 92px;
  left: 492px;
  width: 32px;
}

.operator__bubble--bottom-center {
  bottom: 37px;
  left: 320px;
  width: 32px;
}

.operator__bubble--bottom-right {
  right: 136px;
  bottom: 43px;
  width: 58px;
}

.operator__bubble--top-right {
  top: 48px;
  right: 54px;
  width: 91px;
}

.operator__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 607px) minmax(0, 503px);
  gap: 128px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
}

.operator__content,
.operator__cards {
  min-width: 0;
}

.operator__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.15;
}

.operator__text {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.7;
}

.operator__panel {
  padding: 24px 24px 30px;
  border: var(--glass-border);
  border-radius: var(--radius-card-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.operator__panel + .operator__panel {
  margin-top: 24px;
}

.operator__panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.85;
}

.operator__panel-head img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.operator__list {
  list-style: disc;
  padding-left: 20px;
}

.operator__list li {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.75;
}

.operator__list li + li {
  margin-top: 12px;
}

.operator__divider {
  height: 2px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.92);
}

/* Advantages — dark section */
.advantages {
  position: relative;
  padding: clamp(60px, 6.94vw, 100px) var(--section-px);
  background: var(--color-dark);
  color: var(--color-white);
}

.advantages__head {
  max-width: 1029px;
  margin: 0 auto clamp(40px, 4vw, 60px);
  text-align: center;
}

.advantages__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-white);
}

.advantages__title .background_text {
  display: inline;
}

.advantages__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin-inline: auto;
}

.adv-card {
  width: 397px;
  max-width: 100%;
  min-height: 293px;
  padding: 40px 24px 24px;
  border: var(--dashed-border-lg);
  border-radius: var(--radius-card-lg);
  background: transparent;
}

.adv-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
}

.adv-card__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.adv-card__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-white);
}

.adv-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  opacity: 0.7;
}

/* Path + Income */
.path-income-bg {
  position: relative;
  overflow: hidden;
  background: #f5f4ff url('../images/bg_new.png') center top / 100% 100% no-repeat;
}

.path-income-bg > .light-section__bg {
  z-index: 0;
  overflow: hidden;
  background: #f5f4ff url('../images/bg_new.png') center top / 100% 100% no-repeat;
}

.path-income-bg > .light-section__bg .path__bg-canvas {
  display: none;
}

.path-income-bg > .path,
.path-income-bg > .income,
.path-income-bg > .path__bubbles {
  position: relative;
  z-index: 2;
}

.path-income-bg > .path,
.path-income-bg > .income {
  background: transparent !important;
}

.path-income-bg .path .light-section__bg {
  display: none !important;
}

.path {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px var(--section-px);
}

.path .light-section__bg {
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f6ff 0%, #fff 28%, #faf9ff 62%, #f3f1ff 100%);
}

/* 1440px Figma canvas — scales down without stretching */
.path__bg-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  min-height: 1660px;
  height: 100%;
  transform: translateX(-50%);
  transform-origin: top center;
  pointer-events: none;
}

.path__bg-grids {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.path__bg-grid {
  position: absolute;
  display: block;
  width: 1023px;
  height: 641.711px;
  max-width: none;
  object-fit: none;
}

.path__bg-grid--tl {
  top: -182px;
  left: -302px;
}

.path__bg-grid--bl {
  top: 458.29px;
  left: -302px;
}

.path__bg-grid--tr {
  top: -182px;
  right: -302px;
  left: auto;
}

.path__bg-grid--br {
  top: 458.29px;
  right: -302px;
  left: auto;
}

/* Glows above grid — Figma 123:40 layer order */
.path__bg-glow--ambient {
  position: absolute;
  z-index: 2;
  top: -732px;
  left: -492px;
  width: 2407px;
  height: 2414px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(138, 134, 255, 0.22) 0%, rgba(76, 70, 237, 0.1) 38%, transparent 68%);
  transform: rotate(39.55deg);
  filter: blur(40px);
}

.path__bg-ellipse-wrap {
  position: absolute;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.path__bg-ellipse-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.path__bg-ellipse-wrap--left-top {
  top: 27px;
  left: -311px;
  width: 1097px;
  height: 669.545px;
}

.path__bg-ellipse-wrap--left-top img {
  width: 209.38%;
  height: 279.22%;
}

.path__bg-ellipse-wrap--left-bottom {
  top: 1095px;
  left: -348px;
  width: 1097px;
  height: 669.545px;
}

.path__bg-ellipse-wrap--left-bottom img {
  width: 209.38%;
  height: 279.22%;
}

.path__bg-ellipse-wrap--right-top {
  top: -533px;
  left: 985px;
  width: 1055px;
  height: 1114px;
}

.path__bg-ellipse-wrap--right-top img {
  width: 237.14%;
  height: 268.24%;
  transform: translate(-50%, -50%) rotate(60deg);
}

.path__bg-ellipse-wrap--right-bottom {
  top: 535px;
  left: 948px;
  width: 1055px;
  height: 1114px;
}

.path__bg-ellipse-wrap--right-bottom img {
  width: 237.14%;
  height: 268.24%;
  transform: translate(-50%, -50%) rotate(60deg);
}

/* Path bubbles — exact Figma metadata (bg 123:40, heart 123:263) */
.path__bubbles {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 1440px;
  min-height: 1594px;
  height: 100%;
  transform: translateX(-50%);
  transform-origin: top center;
  pointer-events: none;
}

.path__bubble {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  transform-origin: center center;
}

/* 123:286 */
.path__bubble--heart-tr {
  left: 1288.62px;
  top: 41.39px;
  width: 122.5px;
  transform: rotate(48.2deg);
}

/* 123:262 */
.path__bubble--heart-mr {
  left: 1256.55px;
  top: 1002.26px;
  width: 39.78px;
  transform: rotate(24.45deg);
}

/* 123:271 */
.path__bubble--dot-tl {
  left: 291.78px;
  top: 81.66px;
  width: 43.81px;
  transform: rotate(38.66deg);
}

/* 123:278 */
.path__bubble--dot-ml {
  left: 80.65px;
  top: 522px;
  width: 33.39px;
  transform: rotate(38.66deg);
}

/* 123:1248 */
.path__bubble--dot-mid {
  left: 304.84px;
  top: 686.1px;
  width: 22.11px;
  transform: rotate(38.83deg);
}

/* 123:264 */
.path__bubble--dot-tr {
  left: 1341.62px;
  top: 410.53px;
  width: 80.37px;
  transform: rotate(38.66deg);
}

/* 123:1241 */
.path__bubble--dot-br {
  left: 403.62px;
  top: 1536.95px;
  width: 80.37px;
  transform: rotate(38.66deg);
}

.path__badge-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.path__content,
.income {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.path__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.path__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.path__intro .section-title {
  max-width: 1024px;
  margin-bottom: 0;
  line-height: normal;
}

.path__badge {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.path__badge img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.path__badge-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.timeline__item {
  display: grid;
  grid-template-columns: 226px minmax(0, 923px);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.timeline__label {
  display: flex;
  align-items: center;
}

.timeline__day {
  width: 186px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-day);
  text-transform: uppercase;
  opacity: 0.7;
}

.timeline__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 24px;
  object-fit: contain;
}

.timeline__card {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 923px;
  padding: 16px 24px;
  border: 3px solid var(--color-white);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.timeline__card--gradient {
  border-color: #4c46ed;
  background: var(--gradient-primary);
}

.timeline__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.timeline__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.timeline__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  opacity: 0.7;
}

.timeline__card--gradient .timeline__card-title,
.timeline__card--gradient .timeline__card-text {
  color: var(--color-white);
  opacity: 1;
}

.timeline__card-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Income */
.income {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 72px var(--section-px) 88px;
  background:
    radial-gradient(ellipse 72% 48% at 74% 0%, rgba(138, 134, 255, 0.42) 0%, rgba(138, 134, 255, 0.18) 42%, rgba(247, 246, 255, 0) 72%),
    linear-gradient(180deg, #d6d2fb 0%, #e5e3ff 16%, #f1efff 34%, #faf9ff 64%, #f3f1ff 100%);
  overflow: visible;
  isolation: isolate;
}

.income::before {
  display: none;
}

.income__grid {
  display: grid;
  max-width: var(--container-max);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "copy cards";
  column-gap: 40px;
  row-gap: 16px;
  align-items: center;
}

.income__copy {
  grid-area: copy;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  overflow: visible;
}

.income__title-row {
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
}

/* Figma 123:263 — +24px left, −142px top від заголовка */
.income__bubble-heart {
  position: absolute;
  top: -142px;
  left: 24px;
  z-index: 0;
  width: 120.2px;
  pointer-events: none;
}

.income__bubble-heart img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-28.42deg);
  transform-origin: center center;
}

.income__title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 600px;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.15;
}

.income__text {
  margin: 0;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.7;
}

.income-cards {
  grid-area: cards;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.income__cta {
  align-self: start;
  margin-top: 0;
}

.income-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: var(--glass-border);
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.income-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.income-card__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
}

.income-card__avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.income-card__name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0.7;
}

.income-card__role {
  margin: 4px 0 0;
  font-size: 16px;
  opacity: 0.7;
}

.income-card__salary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-bottom: 0;
  padding: 10px 20px;
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.income-card__salary img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.income-card__salary-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-shadow: var(--shadow-title);
}

.income-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Reviews */
.reviews {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: clamp(60px, 6.94vw, 100px) 0;
  background: #1c1c32;
  color: var(--color-white);
  overflow: hidden;
}

.reviews__rocket {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.reviews__rocket img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reviews__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: calc(var(--container-max) + var(--section-px) * 2);
  padding-inline: var(--section-px);
  box-sizing: border-box;
  text-align: center;
}

.reviews__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

.reviews__title .background_text {
  display: inline;
}

.reviews__subtitle {
  margin: 0;
  max-width: 818px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  opacity: 0.7;
}

.reviews__track-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  width: 100%;
  max-width: none;
}

.reviews__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scroll-behavior: smooth;
  padding-inline: var(--section-px);
  margin-inline: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}

.reviews__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reviews__track.is-dragging .review-card {
  pointer-events: none;
}

.reviews__track .review-card__photo {
  -webkit-user-drag: none;
  user-drag: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 397px;
  scroll-snap-align: start;
  box-sizing: border-box;
  height: 714px;
  min-height: 714px;
  padding: 40px 32px;
  border: 3px dashed #8a86ff;
  border-radius: 24px;
  background: transparent;
}

.review-card__author {
  display: flex;
  gap: 16px;
  align-items: center;
}

.review-card__avatar {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
}

/* Готові круглі аватари з Figma (208:172 …) — без додаткового кропу */
.review-card__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: none;
  pointer-events: none;
}

.review-card__meta {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

.review-card__role {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  opacity: 0.7;
}

.review-card__salary {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.review-card__salary img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.review-card__salary-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-white);
}

.review-card__salary-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}

.review-card__text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  opacity: 0.7;
}

.review-card__text p {
  margin: 0;
}

.review-card__text p + p {
  margin-top: 10px;
}

.reviews__slider {
  display: flex;
  align-items: center;
  gap: 40px;
  width: min(606px, 100%);
}

.reviews__progress {
  position: relative;
  flex: 1;
  height: 4px;
  min-width: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.reviews__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 178px;
  max-width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--gradient-text);
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.reviews__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
  transition: background 0.2s ease;
}

.reviews__nav-btn img {
  display: block;
  width: 24px;
  height: 24px;
}

.reviews__nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews__nav-btn:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.18);
}

/* FAQ */
.faq {
  position: relative;
  padding: 80px var(--section-px);
  overflow: hidden;
}

.faq .light-section__bg {
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f6ff 0%, #fff 28%, #faf9ff 62%, #f3f1ff 100%);
}

.faq__bg-canvas {
  min-height: 2152px;
}

.faq__bg-glow--ambient {
  left: 614px;
}

.faq__bg-ellipse-wrap--right-top {
  left: 948px;
}

.faq__bg-ellipse-wrap--bottom-right {
  top: 1124px;
  left: 1534px;
  width: 1123px;
  height: 1123px;
}

.faq__bg-ellipse-wrap--bottom-right img {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.faq__bg-ellipse-wrap--bottom-center {
  top: 1834px;
  left: 967px;
  width: 1123px;
  height: 1123px;
}

.faq__bg-ellipse-wrap--bottom-center img {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq__head {
  position: relative;
  margin-bottom: 40px;
  max-width: var(--container-max);
  margin-inline: auto;
}

.faq__list {
  position: relative;
  max-width: 818px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: var(--glass-border);
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.faq-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 32px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item.active .faq-header {
  padding-bottom: 12px;
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
}

.faq-icon__h,
.faq-icon__v {
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 5px;
  border-radius: 40px;
  background: var(--gradient-primary);
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.faq-icon__v {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-icon__v {
  opacity: 0;
}

.faq-question {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #353555;
  opacity: 0.7;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer {
  margin: 0;
  padding: 0 32px 32px 88px;
  font-size: 14px;
  line-height: 1.4;
  color: #353555;
  opacity: 0.7;
}

.faq-answer + .faq-answer {
  padding-top: 0;
}

/* Footer */
.footer {
  position: relative;
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(48px, 5vw, 80px) var(--section-px) 0;
}

.footer::after {
  display: none;
  content: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr) minmax(0, 292px);
  gap: clamp(32px, 5vw, 80px) clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: var(--container-max);
  margin-inline: auto;
}

.footer__nav {
  display: grid;
  grid-template-columns: minmax(0, max-content);
  gap: 0;
  align-items: start;
}

.footer__links--desktop {
  display: none;
}

.footer__cta {
  min-width: 0;
}
.p-0{
  padding-bottom: 0;
}

.footer__logo-link {
  display: block;
  flex-shrink: 0;
  width: 134px;
}

.footer__logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__cta-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.copyright {
  margin-top: clamp(48px, 4.8vw, 69px);
  padding: 16px;
  background: transparent;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 999;
  padding: 24px var(--section-px);
  visibility: hidden;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.is-open {
  display: block;
  visibility: visible;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 29, 0.08);
  font-family: var(--font-nav);
  font-size: 18px;
  color: var(--color-nav);
}

.mobile-nav .btn_main {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .site-nav,
  .site-header .btn_main--header {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .path__bg-canvas:not(.hero__bg-canvas),
  .path__bubbles,
  .faq__bg-canvas {
    transform: translateX(-50%) scale(calc(100vw / 1440));
  }
}

@media (min-width: 1200px) {
  .footer__nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 24px clamp(40px, 6vw, 120px);
  }

  .footer__links--desktop {
    display: flex;
  }

  /* Desktop hero — photo bg, grid layout, all bubbles */
  .hero {
    min-height: 800px;
  }

  .hero__bg-figma {
    display: none;
  }

  .hero__bg-picture {
    display: block;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 607px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(32px, 5vw, 80px);
    max-width: calc(var(--container-max) + var(--section-px) * 2);
    min-height: calc(800px - var(--header-h));
    padding-top: 64px;
    padding-bottom: 0;
  }

  .hero__content {
    padding-top: 66px;
    max-width: none;
  }

  .hero__title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.05;
  }

  .hero__benefits {
    width: 503px;
    max-width: 503px;
    gap: 8px;
    margin-left: auto;
  }

  .glass-card {
    min-height: auto;
    padding: 16px 24px;
    border: var(--glass-border);
  }

  .glass-card__text {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.4;
  }

  .hero__separator-img--desktop {
    display: block;
  }

  .hero__separator-img--tablet {
    display: none;
  }

  .hero__separator {
    height: 84px;
  }

  .hero__separator img {
    height: 84px;
  }

  .hero__ng-bubble--operator-top {
    display: block;
    top: 85px;
    left: calc(50% - 596px);
    width: 31px;
    transform: none;
  }

  .hero__ng-bubble--heart-top {
    display: block;
    top: 70px;
    right: calc(50% - 244px);
    left: auto;
    width: 103px;
    transform: none;
  }

  .hero__ng-bubble--heart-right {
    display: block;
    right: 38px;
    bottom: 97px;
    width: 57px;
  }

  .hero__ng-bubble--operator-bottom {
    display: block;
    right: calc(50% - 386px);
    bottom: 110px;
    left: auto;
    width: 31px;
    transform: scaleX(-1);
  }

  .hero__ng-bubble--operator-right {
    display: block;
    top: 124px;
    right: 41px;
    width: 31px;
    transform: scaleX(-1);
  }

  .hero__ng-bubble--heart-left {
    display: block;
    bottom: 101px;
    left: calc(50% - 447px);
    width: 23px;
  }

  .hero__ng-bubble--heart-card {
    display: block;
    top: auto;
    bottom: 92px;
    left: calc(50% - 425px);
    right: auto;
    width: 104px;
    transform: none;
  }

  .path__bg-canvas,
  .path__bubbles,
  .faq__bg-canvas {
    transform: translateX(-50%);
  }
}

/* Tablet — Figma frame 768 (node 15:509) */
@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --tablet-frame: 768;
    --tablet-ratio: calc(100vw / var(--tablet-frame) * 1px);
    --section-px: calc(32 * 100vw / var(--tablet-frame));
    --container-max: none;
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    padding-inline: var(--section-px);
  }

  .container {
    width: 100%;
    max-width: none;
    padding-inline: var(--section-px);
  }

  .burger {
    width: 24px;
    height: 24px;
  }

  .burger span {
    width: 24px;
  }

  /* Hero — Figma 15:1162 */
  .hero {
    min-height: calc(1076 * 100vw / var(--tablet-frame));
  }

  .hero__bg-figma {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: url('../images/figma/hero-bg-tablet.webp') center top / 100% auto no-repeat,
                #F5F4FF;
  }

  /* Tablet foreground decor is baked into the Figma WebP background. */
  .hero__bg-canvas {
    display: none;
    background: transparent;
  }
  .hero__bg-canvas .path__bg-grids,
  .hero__bg-canvas .hero__bg-gradient,
  .hero__bg-canvas .hero__bg-decor,
  .hero__bg-canvas .path__bg-glow,
  .hero__bg-canvas .path__bg-ellipse-wrap {
    display: none;
  }

  .hero__bg-picture {
    display: none;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(40 * 100vw / var(--tablet-frame));
    width: 100%;
    max-width: none;
    min-height: calc((1076 - 80) * 100vw / var(--tablet-frame));
    padding-top: calc(80 * 100vw / var(--tablet-frame));
    padding-bottom: calc(120 * 100vw / var(--tablet-frame));
  }

  .hero__content {
    padding-top: 0;
    width: 100%;
    max-width: none;
  }

  .hero__title {
    font-size: calc(54 * 100vw / var(--tablet-frame));
    font-weight: 500;
    line-height: normal;
    margin-bottom: calc(16 * 100vw / var(--tablet-frame));
  }

  .hero__text {
    margin-bottom: calc(40 * 100vw / var(--tablet-frame));
    font-size: calc(16 * 100vw / var(--tablet-frame));
  }

  .hero__text p + p {
    margin-top: 0;
  }

  .hero__benefits {
    width: calc(503 * 100vw / var(--tablet-frame));
    max-width: 100%;
    gap: calc(14 * 100vw / var(--tablet-frame));
    margin-left: 0;
  }

  .glass-card {
    min-height: calc(64 * 100vw / var(--tablet-frame));
    padding: 0 calc(24 * 100vw / var(--tablet-frame));
    border-width: 3px;
    gap: calc(16 * 100vw / var(--tablet-frame));
  }

  .glass-card__icon {
    width: calc(32 * 100vw / var(--tablet-frame));
    height: calc(32 * 100vw / var(--tablet-frame));
  }

  .glass-card__text {
    font-size: calc(20 * 100vw / var(--tablet-frame));
    font-weight: 700;
    line-height: 1.4;
  }

  .hero__separator-img--desktop {
    display: none;
  }

  .hero__separator-img--tablet {
    display: block;
  }

  .hero__separator {
    height: calc(45 * 100vw / var(--tablet-frame));
  }

  .hero__separator img {
    height: calc(45 * 100vw / var(--tablet-frame));
  }

  .hero__ng-bubble--operator-top {
    display: none;
  }

  .hero__ng-bubble--heart-top,
  .hero__ng-bubble--heart-right,
  .hero__ng-bubble--operator-bottom,
  .hero__ng-bubble--operator-right,
  .hero__ng-bubble--heart-left,
  .hero__ng-bubble--heart-card {
    display: none;
  }

  .hero__bg-canvas {
    min-height: 1076px;
    left: 50%;
    width: 768px;
    transform: translateX(-50%) scale(calc(100vw / (var(--tablet-frame) * 1px)));
    transform-origin: top center;
  }

  .hero__bg-gradient {
    top: -732px;
  }

  .hero__bg-letter {
    display: none;
    top: calc(400 * 100vw / var(--tablet-frame));
    left: calc(400 * 100vw / var(--tablet-frame));
    width: calc(450 * 100vw / var(--tablet-frame));
    height: auto;
  }

  .hero .btn_main--lg {
    min-height: calc(54 * 100vw / var(--tablet-frame));
    padding: calc(16 * 100vw / var(--tablet-frame)) calc(32 * 100vw / var(--tablet-frame));
    font-size: calc(14 * 100vw / var(--tablet-frame));
  }

  /* About */
  .about {
    padding: 80px 32px;
  }

  .about__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .about__content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 704px;
  }

  .section-title {
    font-size: 46px;
    line-height: normal;
  }

  .stats {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    max-width: 704px;
    align-items: stretch;
  }

  .stat-card {
    flex: 0 0 164px;
    width: 164px;
    min-height: 200px;
    max-width: 164px;
    padding: 60px 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .stat-card__value {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .stat-card__label {
    font-size: 14px;
    line-height: 1.2;
  }

  /* Operator */
  .operator {
    padding: 80px 32px;
  }

  .operator__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
    max-width: none;
  }

  .operator__content,
  .operator__cards {
    width: 100%;
    flex: 0 0 auto;
  }

  .operator__title {
    font-size: 46px;
    line-height: normal;
  }

  .operator__text {
    margin-bottom: 40px;
  }

  .operator__panel {
    width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 24px;
  }

  .operator__panel + .operator__panel {
    margin-top: 0;
  }

  .operator__bubble--top-left {
    display: none;
  }

  .operator__bubble--top-right {
    display: block;
    top: 24px;
    left: 384px;
    right: auto;
    width: 40px;
  }

  .operator__bubble--center {
    display: block;
    top: 299px;
    left: 490px;
    width: 44px;
  }

  .operator__bubble--bottom-left {
    display: block;
    bottom: 28px;
    left: 193px;
    width: 40px;
  }

  .operator__bubble--bottom-center {
    display: none;
  }

  .operator__bubble--bottom-right {
    display: block;
    right: 193px;
    bottom: 32px;
    width: 33px;
  }

  .operator__list li {
    font-weight: 500;
    color: var(--color-text-muted);
  }

  /* Advantages */
  .advantages {
    padding: 80px 32px;
  }

  .advantages__head {
    margin-bottom: 40px;
    max-width: 704px;
  }

  .advantages__title {
    font-size: 46px;
    line-height: normal;
  }

  .advantages__grid {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: none;
  }

  .adv-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 32px 24px 24px;
    border: var(--dashed-border);
    border-radius: var(--radius-card-lg);
    box-sizing: border-box;
  }

  .adv-card__icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    padding: 0;
    box-shadow: var(--shadow-title);
  }

  .adv-card__icon {
    width: 24px;
    height: 24px;
  }

  .adv-card__title {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0;
  }

  .adv-card__text {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Path + Income */
  .path-income-bg {
    background: #f5f4ff url('../images/bg_new.png') center top / 100% 100% no-repeat;
  }

  .path-income-bg > .light-section__bg {
    background: #f5f4ff url('../images/bg_new.png') center top / 100% 100% no-repeat;
  }

  .path {
    gap: 80px;
    padding: 80px 32px 40px;
  }

  .path__content {
    gap: 40px;
  }

  .path__intro .section-title {
    font-size: 46px;
    line-height: normal;
    text-align: center;
  }

  .path__intro .section-subtitle {
    text-align: center;
  }

  .path__badge-wrap {
    justify-content: center;
  }

  .path__badge {
    gap: 10px;
    align-items: flex-end;
  }

  .timeline {
    gap: 24px;
  }

  .timeline__item {
    grid-template-columns: 166px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
  }

  .timeline__label {
    width: 166px;
    gap: 0;
  }

  .timeline__day {
    width: 134px;
    font-size: 24px;
    line-height: 1.4;
  }

  .timeline__arrow {
    width: 32px;
    height: 19px;
  }

  .timeline__card {
    max-width: none;
    padding: 12px 24px;
  }

  .income__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cards";
    gap: 40px;
    align-items: center;
    justify-items: center;
  }

  .income {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .income__bubble-heart {
    display: none;
  }

  .income__title {
    font-size: 46px;
    line-height: normal;
  }

  .income__copy {
    align-items: center;
    text-align: center;
  }

  .income__title-row,
  .income__title,
  .income__text {
    max-width: 704px;
    text-align: center;
  }

  .income-cards {
    display: grid;
    grid-template-columns: repeat(2, 345px);
    justify-content: center;
    gap: 14px;
    width: 100%;
    align-self: stretch;
  }

  .income-card {
    width: 345px;
    min-height: 386px;
    padding: 24px;
  }

  .income__cta {
    align-self: center;
  }

  /* Reviews */
  .reviews {
    padding: 80px 0;
    gap: 40px;
  }

  .reviews__head {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 704px;
    margin-inline: auto;
    padding-inline: 0;
  }

  .reviews__title {
    font-size: 46px;
    line-height: normal;
    text-align: left;
  }

  .reviews__subtitle {
    text-align: left;
    max-width: 704px;
  }

  .reviews__track {
    padding-inline: 32px;
  }

  .review-card {
    flex: 0 0 397px;
    height: 714px;
    min-height: 714px;
    padding: 40px 32px;
  }

  .reviews__slider {
    width: min(464px, calc(100% - 64px));
    margin-inline: auto;
  }

  .reviews__head,
  .reviews__track-wrap {
    width: 100%;
    max-width: 704px;
    margin-inline: auto;
  }

  /* FAQ */
  .faq {
    padding: 80px 32px;
  }

  .faq__head {
    margin-bottom: 40px;
    max-width: 704px;
  }

  .faq__head .section-title {
    font-size: 46px;
    line-height: normal;
    text-align: left;
  }

  .faq__list {
    max-width: 704px;
    gap: 16px;
  }

  .faq-header {
    padding: 29px 32px;
    gap: 24px;
  }

  .faq-question {
    font-size: 20px;
    line-height: 1.4;
  }

  .faq-answer {
    padding: 0 32px 32px 88px;
    font-size: 14px;
    line-height: 1.4;
  }

  /* Footer */
  .footer {
    padding: 60px 32px 0;
  }

  .footer__grid {
    grid-template-columns: 134px minmax(0, 1fr) 200px;
    gap: 32px 24px;
    align-items: start;
    max-width: 704px;
  }

  .footer__logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .footer__nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
  }

  .footer__links {
    gap: 24px;
  }

  .footer__links--desktop {
    display: none;
  }

  .footer__cta {
    grid-column: 3;
    grid-row: 1;
    max-width: 241px;
  }

  .footer__cta-text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.4;
  }

  .footer__cta .btn_main {
    font-size: 16px;
  }

  .copyright {
    margin-top: 40px;
    padding: 10px 16px;
    font-size: 12px;
  }

  /* Path / FAQ background scale for 768 canvas */
  .path__bg-canvas:not(.hero__bg-canvas),
  .path__bubbles,
  .faq__bg-canvas {
    transform: translateX(-50%) scale(calc(768 / 1440));
  }
}

@media (max-width: 767px) {
  :root {
    --section-px: 20px;
    --header-h: 64px;
  }

  .hero {
    min-height: 860px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 28px;
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero__text {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hero__bg-image {
    object-position: center top;
  }

  .hero__benefits {
    width: 100%;
    max-width: none;
    margin-left: 0;
    gap: 8px;
  }

  .hero__separator {
    display: none;
  }

  .hero__separator img {
    display: none;
  }

  .about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -32px;
    height: 40px;
    background: url("../images/figma/hero-wave-mobile-solid.svg") center top / 100% 40px no-repeat;
    pointer-events: none;
  }

  .glass-card {
    min-height: 56px;
    padding: 10px 16px;
    gap: 12px;
    border-width: 2px;
  }

  .glass-card__icon {
    width: 24px;
    height: 24px;
  }

  .glass-card__text {
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__ng-bubble--operator-top {
    top: 106px;
    left: 34px;
  }

  .hero__ng-bubble--heart-top {
    display: block;
    top: 104px;
    right: 24px;
    width: 93px;
  }

  .hero__ng-bubble--heart-card {
    top: 637px;
    bottom: auto;
    left: 58%;
    right: auto;
    width: 34px;
  }

  .hero__ng-bubble--heart-left,
  .hero__ng-bubble--heart-right,
  .hero__ng-bubble--operator-bottom,
  .hero__ng-bubble--operator-right {
    display: none;
  }

  .about__grid,
  .operator__grid {
    display: flex;
    flex-direction: column;
  }

  .about__content {
    flex: none;
    width: 100%;
  }

  .operator__grid {
    gap: 60px;
  }

  .operator__text {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .operator__panel {
    padding: 24px;
  }

  .operator__list li {
    font-size: 14px;
    line-height: 1.35;
  }

  .operator__list li + li {
    margin-top: 8px;
  }

  .operator__divider {
    margin: 20px 0;
  }

  .path {
    gap: 54px;
    padding: 60px var(--section-px) 48px;
  }

  .path-income-bg {
    background: #f5f4ff url('../images/bg_new.png') center top / 100% 100% no-repeat;
  }

  .path-income-bg > .light-section__bg {
    background: #f5f4ff url('../images/bg_new.png') center top / 100% 100% no-repeat;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline__label {
    gap: 14px;
  }

  .timeline__day {
    width: auto;
    font-size: 20px;
    line-height: 1.4;
  }

  .timeline__arrow {
    width: 32px;
    height: 19px;
  }

  .timeline__card {
    max-width: none;
    padding: 18px 20px;
    border-width: 2px;
  }

  .timeline__card-icon {
    width: 48px;
    height: 48px;
  }

  .timeline__card-title {
    font-size: 18px;
  }

  .timeline__card-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .path__bubble--dot-tr {
    left: auto;
    right: 2%;
  }

  .about {
    padding: 60px var(--section-px);
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    flex: none;
  }

  .stat-card {
    min-height: 156px;
    flex: none;
    max-width: none;
    padding: 32px 12px;
  }

  .stat-card__value {
    font-size: 32px;
  }

  .stat-card__label {
    font-size: 11px;
  }

  .advantages__grid {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .adv-card {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 24px 20px 22px;
    border-width: 2px;
  }

  .adv-card__icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .adv-card__icon {
    width: 32px;
    height: 32px;
  }

  .adv-card__title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .adv-card__text {
    font-size: 14px;
    line-height: 1.35;
  }

  .income__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cards";
    gap: 44px;
  }

  .income__bubble-heart {
    display: none;
  }

  .income-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .income__cta {
    align-self: start;
  }

  .income {
    padding-top: 40px;
    padding-bottom: 96px;
  }

  .income__copy {
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .income__title-row,
  .income__title,
  .income__text {
    text-align: left;
  }

  .income__title {
    font-size: 30px;
    line-height: 1.15;
  }

  .income__text {
    font-size: 14px;
    line-height: 1.35;
  }

  .income-card {
    gap: 6px;
    padding: 18px;
    border-width: 2px;
  }

  .income-card__head {
    gap: 12px;
  }

  .income-card__avatar {
    width: 58px;
    height: 58px;
  }

  .income-card__avatar img {
    width: 30px;
    height: 30px;
  }

  .income-card__name {
    font-size: 20px;
  }

  .income-card__role,
  .income-card__desc {
    font-size: 14px;
    line-height: 1.35;
  }

  .income-card__salary {
    padding: 8px 14px;
    gap: 8px;
  }

  .income-card__salary img {
    width: 24px;
    height: 24px;
  }

  .income-card__salary-value {
    font-size: 24px;
  }

  .income__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .income__copy {
    display: contents;
  }

  .income__title-row {
    order: 1;
    width: 100%;
  }

  .income__text {
    order: 2;
    width: 100%;
    margin-top: 16px;
  }

  .income-cards {
    order: 3;
    width: 100%;
    margin-top: 24px;
  }

  .income__cta {
    order: 4;
    align-self: stretch;
    margin-top: 28px;
  }

  .reviews__head {
    align-items: center;
    text-align: center;
  }

  .reviews {
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 28px;
  }

  .reviews__track {
    padding-inline: var(--section-px);
    scroll-padding-inline: var(--section-px);
    gap: var(--section-px);
  }

  .review-card {
    flex-basis: calc(100vw - var(--section-px) * 2);
    width: calc(100vw - var(--section-px) * 2);
    height: auto;
    min-height: 0;
    gap: 18px;
    padding: 28px 16px;
  }

  .review-card__author {
    gap: 12px;
  }

  .review-card__avatar {
    width: 64px;
    height: 64px;
  }

  .review-card__name {
    font-size: 20px;
    line-height: 1.1;
  }

  .review-card__role {
    font-size: 14px;
    line-height: 1.3;
  }

  .review-card__salary {
    height: 44px;
    padding: 8px 14px;
    border-radius: 14px;
  }

  .review-card__salary img {
    width: 24px;
    height: 24px;
  }

  .review-card__salary-label {
    font-size: 14px;
    line-height: 1.3;
  }

  .review-card__salary-value {
    font-size: 16px;
    line-height: 1.3;
  }

  .review-card__text {
    font-size: 14px;
    line-height: 1.38;
  }

  .review-card__text p + p {
    margin-top: 8px;
  }

  .reviews__slider {
    width: calc(100% - var(--section-px) * 2);
  }

  .reviews__title,
  .reviews__subtitle {
    text-align: center;
  }

  .faq__head .section-title {
    text-align: center;
  }

  .faq {
    padding: 48px var(--section-px) 40px;
  }

  .faq .container {
    padding-inline: 0;
  }

  .faq__head {
    margin-bottom: 24px;
  }

  .faq__list {
    gap: 8px;
  }

  .faq-item {
    border-width: 2px;
    border-radius: 18px;
  }

  .faq-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .faq-question {
    font-size: 15px;
    line-height: 1.3;
  }

  .faq-answer {
    padding: 0 16px 12px 46px;
    font-size: 13px;
    line-height: 1.35;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-icon__h,
  .faq-icon__v {
    width: 18px;
    height: 3px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__nav {
    display: flex;
    flex-direction: column;
    grid-column: auto;
    gap: 16px;
  }

  .footer__links--desktop {
    display: none;
  }

  .footer__cta {
    grid-column: auto;
    grid-row: auto;
  }

  .copyright {
    font-size: 12px;
    line-height: 1.25;
  }

  .operator__bubble--center {
    display: none;
  }

  .operator__bubble--top-left {
    display: block;
    top: 24px;
    left: auto;
    right: 24px;
    width: 32px;
  }

  .operator__bubble--top-right {
    display: none;
  }

  .operator__bubble--bottom-left {
    display: none;
  }

  .operator__bubble--bottom-center {
    display: block;
    bottom: 18px;
    left: 28px;
    width: 28px;
  }

  .operator__bubble--bottom-right {
    right: 22px;
    bottom: 22px;
    width: 42px;
  }
}

@media (max-width: 479px) {
  .btn_main {
    width: 100%;
    padding-inline: 20px;
    font-size: 14px;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
