:root {
  --bg: #f3fbfc;
  --bg-soft: #e4f8fb;
  --bg-aqua: #dbf4f8;
  --bg-rose: #fff4f7;
  --ink: #113047;
  --muted: #5a7180;
  --muted-2: #8aa0ad;
  --line: #d6eef1;
  --white: #ffffff;
  --aqua: #0fbac9;
  --aqua-2: #0098ac;
  --aqua-3: #1ac6d4;
  --pink: #fb4e8e;
  --pink-soft: #ffe7ef;
  --shadow: 0 24px 60px -34px rgba(15, 186, 201, .24), 0 6px 16px -10px rgba(17, 48, 71, .08);
  --shadow-strong: 0 40px 90px -42px rgba(15, 186, 201, .5);
  --radius-card: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

body::selection {
  background: var(--aqua);
  color: var(--white);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.container--narrow {
  width: min(780px, calc(100% - 48px));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid #e1eff1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.topbar__inner {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(150deg, #54d8e2, var(--aqua));
  box-shadow: 0 8px 18px -8px rgba(15, 160, 176, .9);
  font-size: 17px;
  font-weight: 900;
}

.brand__mark--small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 15px;
}

.brand__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.topbar__links a {
  text-decoration: none;
  transition: color .2s ease;
}

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

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #d0edf0;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 14px 28px -20px rgba(17, 48, 71, .28);
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: #e6f6f8;
}

.lang-toggle__button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 13px;
  background: transparent;
  color: var(--muted);
}

.lang-toggle__button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  padding: 14px 24px;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, filter .2s ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--aqua-2));
  box-shadow: 0 18px 36px -16px rgba(15, 160, 176, .95);
}

.button--primary:hover {
  filter: brightness(1.05);
}

.button--secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d0edf0;
}

.button--secondary:hover {
  border-color: var(--aqua);
}

.button--light {
  color: var(--aqua-2);
  background: var(--white);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .35);
}

.button--large {
  min-height: 58px;
  padding: 17px 32px;
  border-radius: 16px;
  font-size: 18px;
}

.button--nav {
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
}

.icon {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: none;
  color: currentColor;
}

.icon--telegram {
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M21.9%204.3%2018.7%2019.4c-.24%201.06-.87%201.32-1.76.82l-4.86-3.58-2.35%202.26c-.26.26-.48.48-.98.48l.35-4.95L18%205.9c.39-.35-.08-.54-.6-.2L6.6%2012.6l-4.78-1.5c-1.04-.32-1.06-1.04.22-1.54L20.5%202.83c.86-.32%201.62.2%201.4%201.47Z%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--check {
  border-radius: 50%;
  border: 2px solid currentColor;
}

.icon--check::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76%;
  height: 76%;
  background: currentColor;
  transform: translate(-50%, -50%);
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M9.55%2017.2%204.8%2012.45l1.4-1.4%203.35%203.35%208.25-8.25%201.4%201.4z%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--edit,
.icon--replay,
.icon--info {
  color: var(--aqua);
}

.icon--info {
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.icon--edit::before,
.icon--replay::before,
.icon--info::before {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.icon--edit::before {
  content: "✎";
}

.icon--replay::before {
  content: "↻";
}

.icon--info::before {
  content: "i";
  width: auto;
  height: auto;
}

.hero {
  position: relative;
  background:
    linear-gradient(165deg, #bdeff4 0%, #dbf6f9 48%, var(--bg) 100%);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
  gap: 48px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 90px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0;
  color: var(--aqua);
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow--light,
.eyebrow--solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
}

.eyebrow--light {
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d2eef1;
  box-shadow: 0 8px 20px -14px rgba(16, 33, 47, .4);
}

.eyebrow--solid {
  color: var(--white);
  background: var(--aqua);
}

.eyebrow--white {
  color: var(--white);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}

.hero__title {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
}

.text-gradient {
  color: var(--pink);
  background: linear-gradient(90deg, var(--pink), #ff85ae);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.format-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 11px;
  border: 1px solid rgba(15, 186, 201, .28);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 26px -20px rgba(15, 186, 201, .6);
  color: #0d5560;
  font-size: 14px;
  font-weight: 800;
}

.format-badge .icon {
  width: 15px;
  height: 15px;
  color: var(--aqua);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.hero__micro {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero__micro .icon {
  width: 16px;
  height: 16px;
  color: var(--aqua);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.phone {
  position: relative;
  z-index: 2;
  width: 316px;
  padding: 11px;
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 40px 80px -34px rgba(15, 186, 201, .32), 0 12px 30px -16px rgba(17, 48, 71, .1), 0 0 0 1px rgba(255, 255, 255, .6);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -16% 18% -10%;
  border-radius: 34px;
  background: rgba(15, 186, 201, .18);
  filter: blur(34px);
}

.phone__screen {
  height: 604px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #d6f1f4, #e2f5f7);
}

.phone__screen--image {
  display: block;
  background: #f7faf8;
}

.phone-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.phone-shot[src*="-en.png"] {
  object-fit: cover;
}

.phone--demo {
  width: 304px;
  justify-self: center;
}

.phone--demo .phone__screen {
  height: 548px;
  background: linear-gradient(180deg, #e4f8fb, #f5fcfd);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
  color: var(--white);
}

.chat-head--compact {
  padding: 13px 15px;
}

.chat-head__back {
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .9;
}

.chat-head__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  background: var(--white);
  font-size: 15px;
  font-weight: 900;
  flex: none;
}

.chat-head__meta {
  display: grid;
  gap: 1px;
  line-height: 1.2;
  flex: 1;
}

.chat-head__meta strong {
  font-size: 14px;
}

.chat-head__meta small {
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
}

.chat-head__menu {
  width: 18px;
  height: 18px;
  flex: none;
  background: radial-gradient(circle, currentColor 0 2px, transparent 2.5px) 0 50% / 7px 7px repeat-x;
  opacity: .85;
}

.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px 12px;
  overflow: hidden;
}

.chat-bubble {
  margin: 0;
  max-width: 90%;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
}

.chat-bubble--user {
  align-self: flex-end;
  color: var(--white);
  background: var(--aqua);
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 6px 16px -10px rgba(17, 48, 71, .3);
}

.chat-bubble--user p,
.chat-bubble--user.chat-bubble {
  padding: 9px 13px;
}

.chat-bubble--media {
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.chat-bubble--media p {
  margin: 0;
  color: var(--white);
  background: var(--aqua);
}

.chat-bubble--bot {
  align-self: flex-start;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 8px 20px -12px rgba(17, 48, 71, .28);
}

.meal-shot {
  position: relative;
  height: 84px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(207, 238, 242, .86), rgba(227, 247, 250, .86)),
    repeating-linear-gradient(135deg, #cfeef2 0 9px, #e3f7fa 9px 18px);
}

.meal-shot--small {
  height: 74px;
  border-radius: 16px 16px 4px 16px;
}

.meal-shot__plate,
.meal-shot__greens,
.meal-shot__protein {
  position: absolute;
  border-radius: 50%;
  display: block;
}

.meal-shot__plate {
  width: 74px;
  height: 74px;
  right: 18px;
  top: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 9px rgba(15, 186, 201, .08);
}

.meal-shot__greens {
  width: 34px;
  height: 26px;
  right: 38px;
  top: 28px;
  background: #75d59e;
}

.meal-shot__protein {
  width: 28px;
  height: 22px;
  right: 28px;
  top: 46px;
  background: #f0b68b;
}

.result-card {
  padding: 13px;
  border: 1px solid #e6f4f6;
}

.result-card--mini {
  padding: 12px;
}

.result-card__bot {
  display: block;
  margin-bottom: 9px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
}

.result-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.result-card__title strong {
  font-size: 17px;
}

.result-card--mini .result-card__title strong {
  font-size: 16px;
}

.result-card__check {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--aqua);
  flex: none;
}

.result-card__check::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.macro-row {
  display: flex;
  gap: 6px;
}

.macro-row > span {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 0;
  border-radius: 8px;
  background: #e4f8fb;
  color: #0a8e9e;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.macro-row .macro-row__accent {
  color: #c92e66;
  background: var(--pink-soft);
}

.remaining-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  padding: 10px 13px;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--aqua-2));
}

.remaining-box span {
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 700;
}

.remaining-box strong {
  font-size: 15px;
  white-space: nowrap;
}

.chat-actions {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.chat-actions span {
  padding: 9px;
  border-radius: 9px;
  color: var(--aqua);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 12px -8px rgba(17, 48, 71, .3);
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
}

.chat-actions span:first-child {
  grid-column: 1 / 3;
}

.section {
  padding: 90px 0;
}

.section--plain {
  background: var(--bg);
}

.section--aqua {
  background: linear-gradient(180deg, var(--bg-aqua), var(--bg-soft));
}

.section--soft {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.section--rose {
  background: linear-gradient(180deg, #fff6f7, #fdecef);
}

.section__center {
  text-align: center;
}

.section__intro {
  max-width: 760px;
  margin: 0 auto;
}

.section__intro--left {
  margin-left: 0;
  text-align: left;
}

.section__intro h2,
.coach__content h2,
.demo__content h2,
.final-cta__content h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
}

.section__intro p:not(.eyebrow),
.coach__content > p,
.final-cta__content > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.cards-grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

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

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

.cards-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -38px rgba(15, 186, 201, .44), 0 8px 20px -14px rgba(17, 48, 71, .1);
}

.card__icon,
.card__number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--aqua-2);
  background: #e2f7fa;
  box-shadow: inset 0 0 0 1px #cdeef2;
}

.card__number {
  width: 52px;
  height: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
  box-shadow: none;
  font-size: 20px;
  font-weight: 900;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__icon--danger {
  color: #d6356f;
  background: var(--pink-soft);
}

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

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.card--solution {
  display: flex;
  flex-direction: column;
}

.card--solution p {
  margin-bottom: 16px;
}

.card__chip {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(15, 186, 201, .18);
  border-radius: 10px;
  color: #0d5560;
  background: #f0fbfc;
  font-size: 12.5px;
  font-weight: 900;
}

.note-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
  padding: 12px 22px;
  border: 1px solid rgba(15, 186, 201, .2);
  border-radius: 12px;
  color: #0a8e9e;
  background: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.note-pill--pink {
  margin-top: 32px;
  color: #c92e66;
  border-color: rgba(251, 78, 142, .3);
  background: #ffeef3;
  font-size: 17px;
}

.note-pill .icon {
  width: 18px;
  height: 18px;
}

.compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}

.compare__badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
  box-shadow: 0 18px 36px -14px rgba(16, 33, 47, .7), 0 0 0 6px var(--bg);
  font-size: 15px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.compare__panel {
  padding: 38px;
  border-radius: 26px;
}

.compare__panel--before {
  background: #ecf0f3;
  border: 1px solid #e0e6eb;
}

.compare__panel--after {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(155deg, #1fc8d6, var(--aqua-2));
  border: 1px solid rgba(15, 186, 201, .4);
  box-shadow: var(--shadow-strong);
}

.compare__label {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  color: #8593a0;
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.compare__panel--after .compare__label {
  color: var(--aqua-2);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 24px;
}

.compare-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.compare-row__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  margin-top: 1px;
  background: #d8dee3;
  color: #8a98a3;
}

.compare__panel--after .compare-row__icon {
  background: var(--aqua);
  color: var(--white);
}

.compare-row__icon::before,
.compare-row__icon::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.compare-row__icon::after {
  transform: rotate(90deg);
}

.compare__panel--after .compare-row__icon::before {
  left: 50%;
  top: 50%;
  width: 76%;
  height: 76%;
  border: 0;
  background: currentColor;
  transform: translate(-50%, -50%);
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M9.55%2017.2%204.8%2012.45l1.4-1.4%203.35%203.35%208.25-8.25%201.4%201.4z%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.compare__panel--after .compare-row__icon::after {
  display: none;
}

.compare-row span:last-child {
  color: #8593a0;
  font-size: 16px;
  line-height: 1.4;
}

.compare__panel--after .compare-row span:last-child {
  color: var(--white);
  font-weight: 700;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
  text-align: left;
}

.steps::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 55px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-3));
  opacity: .4;
}

.step-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff, #f0fbfc);
  box-shadow: var(--shadow);
}

.step-card__number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--aqua-2));
  box-shadow: 0 14px 26px -12px rgba(15, 186, 201, .9);
  font-size: 21px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

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

.step-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 186, 201, .25);
  border-radius: 10px;
  color: #0a8e9e;
  background: #e2f7fa;
  font-size: 12.5px;
  font-weight: 900;
}

.step-card__badge .icon {
  width: 14px;
  height: 14px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 0;
}

.stats-row > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 76px;
  padding: 12px 18px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 40px -28px rgba(15, 186, 201, .16);
}

.stats-row > span > strong {
  color: var(--aqua-2);
  font-size: 22px;
  font-weight: 900;
}

.stats-row > span > small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.audience-card__icon {
  width: 44px;
  height: 44px;
  position: relative;
  flex: none;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
}

.audience-card__icon::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  width: 9px;
  height: 17px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.coach {
  overflow: hidden;
  background: linear-gradient(150deg, #38d6e2, var(--aqua-2));
}

.coach__grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
}

.coach__visual {
  position: relative;
}

.mini-chat {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 44px 80px -44px rgba(17, 48, 71, .45);
}

.mini-chat::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(17, 48, 71, 0), rgba(17, 48, 71, .32));
  pointer-events: none;
}

.coach-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mini-chat__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px 15px;
  background: linear-gradient(180deg, #e7f1f7, #f3f9fc);
}

.mini-chat__body .chat-bubble--user {
  max-width: 82%;
}

.coach__badge {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(150deg, #54d8e2, var(--aqua));
  box-shadow: 0 16px 30px -10px rgba(15, 160, 176, .9);
  font-size: 22px;
  font-weight: 900;
}

.coach__content h2,
.coach__content > p {
  color: var(--white);
}

.coach__content > p {
  color: rgba(255, 255, 255, .92);
}

.coach__note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 26px 50px -34px rgba(0, 152, 172, .7);
}

.coach__note .icon {
  width: 30px;
  height: 30px;
  color: var(--aqua);
}

.coach__note p {
  margin: 0;
  color: #244852;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 600;
}

.coach .button {
  margin-top: 30px;
}

.demo {
  background: linear-gradient(180deg, var(--bg), #e2f7fa);
}

.demo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: center;
}

.demo__content h2 {
  margin-top: 16px;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.demo-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.demo-step > span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 11px;
  color: var(--white);
  background: var(--aqua);
  font-weight: 900;
}

.demo-step:nth-child(2) > span {
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
}

.demo-step p {
  margin: 0;
}

.demo-step strong,
.demo-step small {
  display: block;
}

.demo-step strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.demo-step small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14.5px;
}

.demo__note {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 850;
}

.typing {
  display: flex;
  align-items: center;
  gap: 9px;
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease, max-height .4s ease, padding .4s ease;
}

.typing.is-visible {
  max-height: 56px;
  padding: 11px 14px;
  opacity: 1;
  transform: translateY(0);
}

.typing__dots {
  display: flex;
  gap: 4px;
}

.typing__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  animation: blink 1s infinite;
}

.typing__dots i:nth-child(2) {
  animation-delay: .2s;
}

.typing__dots i:nth-child(3) {
  animation-delay: .4s;
}

.demo-result {
  max-width: 92%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}

.demo-result.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.result-card__kcal {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 9px;
}

.result-card__kcal strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
}

.result-card__kcal span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.disclaimer {
  max-width: 860px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 16px;
  background: var(--white);
}

.disclaimer .icon {
  color: var(--muted);
}

.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.partner-hero__grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  padding-top: 44px;
  padding-bottom: 64px;
}

.partner-hero__title span {
  display: block;
}

.partner-hero__lead {
  max-width: 610px;
}

.partner-hero__badges .format-badge {
  background: rgba(255, 255, 255, .86);
}

.partner-hero .hero__buttons {
  margin-top: 22px;
}

.partner-hero__visual {
  align-self: start;
  align-items: center;
  justify-content: center;
  min-height: 510px;
  padding: 28px 34px;
  padding-right: 34px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .46), rgba(255, 255, 255, .12));
}

.partner-phone {
  width: 326px;
  flex: none;
}

.partner-phone .phone__screen {
  height: 492px;
  background: #f7faf8;
}

.partner-phone--hero {
  width: 340px;
}

.partner-phone--hero .phone__screen {
  height: 506px;
}

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

.partner-hero__summary {
  position: absolute;
  left: 18px;
  bottom: 72px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 186, 201, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 60px -34px rgba(17, 48, 71, .35);
}

.partner-hero__summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.partner-hero__summary strong {
  color: var(--aqua-2);
  font-size: 20px;
  font-weight: 900;
}

.partner-guide-section {
  background: linear-gradient(180deg, var(--bg-aqua), var(--bg-soft));
}

.partner-guide {
  display: grid;
  grid-template-columns: minmax(430px, .98fr) minmax(0, 1.02fr);
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.partner-guide__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(15, 186, 201, .12);
  border-radius: 32px;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 34px 80px -52px rgba(15, 186, 201, .34);
}

.partner-guide__side-phones {
  display: grid;
  gap: 18px;
}

.partner-phone--guide {
  width: 318px;
}

.partner-phone--guide .phone__screen {
  height: 482px;
}

.partner-phone--small {
  width: 188px;
  padding: 7px;
  border-radius: 28px;
  box-shadow: 0 28px 58px -38px rgba(15, 186, 201, .34), 0 8px 18px -14px rgba(17, 48, 71, .12);
}

.partner-phone--small::before {
  inset: 12% -12% 18%;
  filter: blur(24px);
}

.partner-phone--small .phone__screen {
  height: 276px;
  border-radius: 22px;
}

.partner-guide__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-guide-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(15, 186, 201, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 54px -38px rgba(17, 48, 71, .2);
}

.partner-guide-step__number {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
  box-shadow: 0 14px 28px -18px rgba(0, 152, 172, .7);
  font-size: 21px;
  font-weight: 900;
}

.partner-guide-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 900;
}

.partner-guide-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.partner-guide-step a {
  color: var(--aqua-2);
  font-weight: 850;
  text-decoration: none;
}

.partner-guide__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 186, 201, .18);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-guide__note .icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--aqua);
}

.partner-guide__note p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 750;
}

.partner-benefits .card__icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--aqua-2));
  box-shadow: none;
  font-size: 22px;
  font-weight: 900;
}

.affiliate-page {
  background: var(--bg);
}

.affiliate-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #bdeff4 0%, #dbf6f9 48%, var(--bg) 100%);
}

.affiliate-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: 48px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 72px;
}

.affiliate-hero__content {
  min-width: 0;
}

.affiliate-hero__title {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 62px;
  line-height: 1.06;
  font-weight: 900;
}

.affiliate-hero__title span {
  display: block;
}

.affiliate-hero__title .text-gradient {
  padding-bottom: .04em;
}

.affiliate-hero__lead {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.affiliate-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.affiliate-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border: 1px solid rgba(15, 186, 201, .28);
  border-radius: 11px;
  color: #0d5560;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px -20px rgba(15, 186, 201, .6);
  font-size: 14px;
  font-weight: 800;
}

.affiliate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 26px;
}

.affiliate-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.affiliate-micro .icon {
  width: 18px;
  height: 18px;
  color: var(--aqua);
}

.affiliate-hero__visual {
  position: relative;
  align-self: start;
  min-height: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 34px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .12));
}

.affiliate-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 300px;
  height: 380px;
  border-radius: 44px;
  background: rgba(15, 186, 201, .22);
  filter: blur(48px);
  transform: translate(-50%, -50%);
}

.affiliate-phone {
  position: relative;
  z-index: 2;
  flex: none;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 40px 80px -34px rgba(15, 186, 201, .32), 0 12px 30px -16px rgba(17, 48, 71, .1), 0 0 0 1px rgba(255, 255, 255, .6);
}

.affiliate-phone--hero {
  width: 340px;
}

.affiliate-phone--step {
  width: min(100%, 196px);
  margin: 0 auto;
  padding: 9px;
  border-radius: 30px;
  box-shadow: 0 28px 58px -38px rgba(15, 186, 201, .4), 0 8px 18px -14px rgba(17, 48, 71, .14);
}

.affiliate-phone__screen {
  overflow: hidden;
  border-radius: 32px;
  background: #f7faf8;
}

.affiliate-phone--hero .affiliate-phone__screen {
  height: 506px;
}

.affiliate-phone--step .affiliate-phone__screen {
  aspect-ratio: 390 / 631;
  border-radius: 22px;
}

.affiliate-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.affiliate-ready {
  position: absolute;
  left: 14px;
  bottom: 60px;
  z-index: 3;
  min-width: 194px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 186, 201, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 26px 60px -34px rgba(17, 48, 71, .35);
}

.affiliate-ready span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.affiliate-ready strong {
  color: var(--aqua-2);
  font-size: 20px;
  font-weight: 900;
}

.affiliate-facts {
  padding: 56px 0;
  background: var(--bg);
}

.affiliate-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.affiliate-fact {
  padding: 26px 24px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.affiliate-fact strong {
  display: block;
  color: var(--aqua-2);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.affiliate-fact span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.affiliate-section {
  padding: 88px 0;
  background: var(--bg);
}

.affiliate-section--aqua {
  background: linear-gradient(180deg, var(--bg-aqua), var(--bg-soft));
}

.affiliate-section--soft {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.affiliate-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.affiliate-step-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--white), #f0fbfc);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.affiliate-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -38px rgba(15, 186, 201, .44), 0 8px 20px -14px rgba(17, 48, 71, .1);
}

.affiliate-step-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.affiliate-step-card__title span,
.affiliate-income article span {
  width: 44px;
  height: 44px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-3), var(--aqua-2));
  box-shadow: 0 14px 28px -18px rgba(0, 152, 172, .7);
  font-size: 19px;
  font-weight: 900;
}

.affiliate-step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.affiliate-step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.affiliate-step-card a {
  color: var(--aqua-2);
  font-weight: 850;
  text-decoration: none;
}

.affiliate-note {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  padding: 14px 24px;
  border: 1px solid rgba(15, 186, 201, .2);
  border-radius: 14px;
  color: #0a8e9e;
  background: var(--white);
  box-shadow: 0 16px 40px -28px rgba(15, 186, 201, .3);
  font-size: 15.5px;
  font-weight: 800;
}

.affiliate-note .icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--aqua);
}

.affiliate-benefits .card__icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--aqua-2));
  box-shadow: none;
  font-size: 22px;
  font-weight: 900;
}

.affiliate-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.affiliate-tags span {
  margin-right: 4px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.affiliate-tags b {
  padding: 9px 15px;
  border: 1px solid rgba(15, 186, 201, .24);
  border-radius: 999px;
  color: #0d5560;
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.affiliate-income {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 44px;
  text-align: left;
}

.affiliate-income article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.affiliate-income i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  font-style: normal;
  font-size: 30px;
  font-weight: 900;
}

.affiliate-income h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 850;
}

.affiliate-income p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.affiliate-income .affiliate-income__accent {
  border-color: rgba(15, 186, 201, .4);
  color: var(--white);
  background: linear-gradient(155deg, #1fc8d6, var(--aqua-2));
  box-shadow: var(--shadow-strong);
}

.affiliate-income__accent span {
  color: var(--aqua-2);
  background: var(--white);
  box-shadow: none;
}

.affiliate-income__accent h3 {
  color: var(--white);
  font-weight: 900;
}

.affiliate-income__accent p {
  color: rgba(255, 255, 255, .9);
}

.affiliate-note--income {
  margin-top: 28px;
}

.affiliate-final {
  padding: 30px 0 84px;
  background: var(--bg);
}

.affiliate-final__card {
  position: relative;
  overflow: hidden;
  padding: 76px 32px;
  border-radius: 34px;
  background: linear-gradient(150deg, #38d6e2, var(--aqua-2));
  box-shadow: 0 50px 100px -48px rgba(0, 152, 172, .85);
  text-align: center;
}

.affiliate-final__chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 34px -16px rgba(0, 0, 0, .28);
  font-size: 13px;
  font-weight: 900;
  animation: floatY 6s ease-in-out infinite;
}

.affiliate-final__chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.affiliate-final__chip--left {
  top: 40px;
  left: 8%;
}

.affiliate-final__chip--right {
  right: 9%;
  bottom: 52px;
  color: #0a8e9e;
  animation-duration: 7.5s;
}

.affiliate-final__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.affiliate-final h2 {
  margin: 0;
  color: var(--white);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
}

.affiliate-final p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  line-height: 1.55;
}

.affiliate-final .button {
  margin-top: 32px;
  color: var(--aqua-2);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .35);
}

.affiliate-final small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 38px;
  text-align: left;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 186, 201, .14);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, var(--bg));
  box-shadow: 0 16px 40px -28px rgba(15, 186, 201, .16);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item.is-open {
  border-color: var(--aqua);
  box-shadow: 0 26px 54px -30px rgba(15, 186, 201, .65);
}

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border: 0;
  color: var(--ink);
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__button span:first-child {
  font-size: 17px;
  font-weight: 800;
}

.faq-item__plus {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--aqua);
  transition: transform .3s ease;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.faq-item__plus::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__plus {
  transform: rotate(45deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 26px;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
}

.faq-item.is-open .faq-item__panel {
  max-height: 280px;
  opacity: 1;
}

.faq-item__panel p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.final-cta {
  padding-top: 30px;
  background: var(--bg);
}

.final-cta__card {
  position: relative;
  overflow: hidden;
  padding: 76px 32px;
  border-radius: 34px;
  background: linear-gradient(150deg, #38d6e2, var(--aqua-2));
  box-shadow: 0 50px 100px -48px rgba(0, 152, 172, .85);
  text-align: center;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__content h2,
.final-cta__content > p {
  color: var(--white);
}

.final-cta__content > p {
  color: rgba(255, 255, 255, .92);
}

.final-cta__chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 34px -16px rgba(0, 0, 0, .28);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  animation: floatY 6s ease-in-out infinite;
}

.final-cta__chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.final-cta__chip--left {
  top: 38px;
  left: 7%;
}

.final-cta__chip--right {
  right: 9%;
  bottom: 50px;
  color: #0a8e9e;
  animation-duration: 7.5s;
}

.final-cta__stats {
  display: inline-flex;
  align-items: stretch;
  margin: 30px auto 0;
  padding: 6px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 26px 54px -26px rgba(17, 48, 71, .45);
}

.final-cta__stats span {
  display: grid;
  gap: 4px;
  padding: 12px 24px;
  text-align: left;
}

.final-cta__stats span + span {
  border-left: 1px solid #e6eef3;
}

.final-cta__stats strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.final-cta__stats span:nth-child(2) strong {
  color: var(--aqua-2);
}

.final-cta__stats small {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 800;
}

.final-cta .button {
  margin-top: 32px;
}

.final-cta__micro {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  font-weight: 600;
}

.footer {
  padding: 36px 0 44px;
  border-top: 1px solid #e1eff1;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.45;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid #e1eff1;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

@keyframes blink {
  0%, 100% {
    opacity: .25;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1080px) {
  .cards-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-hero__title {
    font-size: 54px;
  }

  .affiliate-phone--hero {
    width: 300px;
  }

  .affiliate-phone--hero .affiliate-phone__screen {
    height: 448px;
  }

  .affiliate-ready {
    min-width: 176px;
    padding: 14px 16px;
  }

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

  .partner-guide {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 30px;
  }

  .partner-hero__visual {
    padding: 22px;
    min-height: 470px;
  }

  .partner-hero__grid {
    padding-top: 34px;
  }

  .partner-hero__title {
    font-size: 44px;
    line-height: .98;
  }

  .partner-hero__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.44;
  }

  .partner-hero__badges {
    margin-top: 16px;
    gap: 8px;
  }

  .partner-hero__badges .format-badge {
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .partner-hero .hero__buttons {
    gap: 10px;
    margin-top: 18px;
  }

  .partner-hero .button--large {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 15px;
  }

  .partner-phone--hero {
    width: 292px;
  }

  .partner-phone--hero .phone__screen {
    height: 436px;
  }

  .partner-hero__summary {
    min-width: 174px;
    padding: 14px 16px;
    bottom: 38px;
  }

  .partner-hero__summary strong {
    font-size: 18px;
  }

  .partner-guide__visual {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
    padding: 18px;
    gap: 12px;
  }

  .partner-phone--guide {
    width: 252px;
  }

  .partner-phone--guide .phone__screen {
    height: 382px;
  }

  .partner-phone--small {
    width: 126px;
    justify-self: center;
  }

  .partner-phone--small .phone__screen {
    height: 184px;
  }

  .partner-guide__side-phones {
    width: min(100%, 288px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-guide-step {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .partner-guide-step__number {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 19px;
  }

  .partner-guide-step h3 {
    font-size: 22px;
  }

  .partner-guide-step p {
    font-size: 15.5px;
  }

  .hero__title {
    font-size: 56px;
  }
}

@media (max-width: 880px) {
  body {
    padding-bottom: 88px;
  }

  .topbar__links,
  .button--nav {
    display: none;
  }

  .topbar.is-menu-open {
    box-shadow: 0 18px 38px -28px rgba(17, 48, 71, .32);
  }

  .topbar__inner {
    min-height: 64px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 0 0 16px;
    border-bottom: 1px solid #d6eef1;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 54px -38px rgba(17, 48, 71, .32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-menu__inner {
    display: grid;
    gap: 12px;
    padding-top: 14px;
  }

  .mobile-menu__links {
    display: grid;
    gap: 8px;
  }

  .mobile-menu__links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid #d4eef1;
    border-radius: 14px;
    background: var(--white);
    color: var(--ink);
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 14px 30px -28px rgba(17, 48, 71, .28);
  }

  .mobile-menu__cta {
    width: 100%;
  }

  .hero__grid,
  .partner-hero__grid,
  .affiliate-hero__grid,
  .coach__grid,
  .demo__grid {
    grid-template-columns: 1fr;
  }

  .affiliate-hero__visual {
    justify-self: center;
    width: min(100%, 520px);
    min-height: auto;
    order: 2;
  }

  .affiliate-steps {
    grid-template-columns: 1fr;
  }

  .affiliate-step-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    column-gap: 24px;
    align-items: center;
  }

  .affiliate-step-card .affiliate-phone {
    grid-row: span 2;
  }

  .affiliate-step-card__title {
    margin-top: 0;
  }

  .affiliate-income {
    grid-template-columns: 1fr;
  }

  .affiliate-income i {
    min-height: 24px;
    transform: rotate(90deg);
  }

  .partner-hero__visual {
    order: 2;
    justify-content: center;
    padding-right: 0;
    min-height: auto;
  }

  .partner-hero__summary {
    left: 20px;
    bottom: 62px;
  }

  .hero__grid {
    padding-top: 54px;
    padding-bottom: 68px;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__content {
    text-align: left;
  }

  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4,
  .compare,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before,
  .compare__badge {
    display: none;
  }

  .coach__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .sticky-cta {
    display: block;
  }
}

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

@media (max-width: 640px) {
  .container,
  .container--narrow {
    width: calc(100% - 32px);
    max-width: 1160px;
  }

  .topbar__actions {
    gap: 8px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand__name {
    font-size: 18px;
  }

  .hero__title {
    font-size: 42px;
  }

  .section {
    padding: 64px 0;
  }

  .section__intro h2,
  .coach__content h2,
  .demo__content h2,
  .affiliate-final h2,
  .final-cta__content h2 {
    font-size: 34px;
  }

  .section__intro p:not(.eyebrow),
  .coach__content > p,
  .affiliate-final p,
  .final-cta__content > p {
    font-size: 17px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .affiliate-hero__title {
    font-size: 42px;
  }

  .affiliate-hero__lead {
    font-size: 17px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .affiliate-hero__grid,
  .affiliate-hero__content,
  .affiliate-micro {
    min-width: 0;
    max-width: 100%;
  }

  .affiliate-page,
  .site.affiliate-page {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .affiliate-page .container,
  .affiliate-page .container--narrow,
  .affiliate-page .affiliate-hero__grid,
  .affiliate-page .topbar__inner {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .affiliate-page .affiliate-hero__content,
  .affiliate-page .affiliate-actions,
  .affiliate-page .affiliate-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .affiliate-hero__visual {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .affiliate-phone--hero {
    width: min(100%, 286px);
    padding: 9px;
    border-radius: 34px;
  }

  .affiliate-phone--hero .affiliate-phone__screen {
    height: 426px;
    border-radius: 26px;
  }

  .affiliate-ready {
    left: 14px;
    bottom: 46px;
    min-width: 166px;
    padding: 12px 14px;
  }

  .affiliate-actions {
    width: 100%;
  }

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

  .affiliate-facts__grid {
    grid-template-columns: 1fr;
  }

  .affiliate-step-card {
    display: flex;
  }

  .affiliate-step-card__title {
    margin-top: 22px;
  }

  .affiliate-final__card {
    padding: 58px 20px;
    border-radius: 26px;
  }

  .affiliate-final__chip {
    display: none;
  }

  .button,
  .button--large {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 16px;
  }

  .hero__buttons {
    width: 100%;
  }

  .partner-hero__summary {
    left: 0;
    right: auto;
    bottom: 48px;
  }

  .partner-guide {
    gap: 34px;
    margin-top: 34px;
  }

  .partner-guide__visual {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 18px;
  }

  .partner-phone.partner-phone--guide {
    width: min(100%, 316px);
  }

  .partner-phone--guide .phone__screen {
    height: min(130vw, 482px);
  }

  .partner-guide__side-phones {
    width: min(100%, 330px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-phone.partner-phone--small {
    width: min(100%, 154px);
    justify-self: center;
  }

  .partner-phone--small .phone__screen {
    height: min(50vw, 234px);
  }

  .partner-guide-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .partner-guide-step__number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 18px;
  }

  .partner-guide-step h3 {
    font-size: 21px;
  }

  .partner-guide-step p,
  .partner-guide__note p {
    font-size: 15.5px;
  }

  .phone,
  .phone--demo {
    width: min(100%, 316px);
  }

  .phone__screen {
    height: 570px;
  }

  .phone--demo .phone__screen {
    height: 522px;
  }

  .card,
  .step-card,
  .compare__panel {
    padding: 24px;
  }

  .audience-card {
    gap: 14px;
  }

  .final-cta__card {
    padding: 58px 20px;
    border-radius: 26px;
  }

  .final-cta__chip {
    display: none;
  }

  .final-cta__stats {
    width: 100%;
  }

  .final-cta__stats span {
    flex: 1;
    padding: 12px 16px;
  }

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

@media (max-width: 420px) {
  .hero__title {
    font-size: 38px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .lang-toggle__button {
    padding: 6px 10px;
  }

  .result-card__title strong {
    font-size: 15px;
  }

  .remaining-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.phone .phone__screen--image {
  height: auto;
  aspect-ratio: 398 / 818;
}

.phone--demo .phone__screen--image {
  height: auto;
  aspect-ratio: 366 / 752;
}
