:root {
  --bg: #f7efe6;
  --bg-soft: #fff8f1;
  --card: rgba(255, 248, 241, 0.86);
  --card-warm: #f7efe6;
  --text: #1f1714;
  --muted: #5f5048;
  --muted-strong: #463a34;
  --red: #c83f32;
  --red-deep: #ad3329;
  --red-bright: #d94a3a;
  --terracotta: #b85a4a;
  --terracotta-deep: #9a4a3c;
  --georgia-red: #e13e35;
  --wine: #4a1714;
  --wine-dark: #241512;
  --wine-rich: #701f1a;
  --champagne: #b9854f;
  --soft-gold: #e7d0b0;
  --line: #dfc3a0;
  --line-strong: #d9b98f;
  --card-border: #dcc09b;
  --shadow: 0 18px 46px rgba(62, 42, 28, 0.13);
  --shadow-soft: 0 10px 24px rgba(62, 42, 28, 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: 1460px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 8% 4%, rgba(200, 63, 50, 0.1), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(197, 154, 99, 0.16), transparent 30rem),
    radial-gradient(circle at 48% 70%, rgba(255, 255, 255, 0.7), transparent 34rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(28, 20, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 20, 16, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 78%);
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  font: inherit;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

svg {
  display: block;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  overflow-y: visible;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.section-pad {
  padding: 18px 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 20px 0 12px;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled,
.header.is-open {
  padding: 12px 0;
  background: rgba(247, 239, 230, 0.82);
  border-color: rgba(226, 201, 173, 0.82);
  box-shadow: 0 12px 38px rgba(62, 42, 28, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 280px) 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  width: clamp(170px, 12.2vw, 246px);
  color: var(--text);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.9vw, 32px);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a:hover {
  color: var(--red);
}

.btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

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

.btn--red {
  color: var(--bg-soft);
  background: linear-gradient(135deg, #d94a3a 0%, #b92f27 100%);
  box-shadow: 0 16px 38px rgba(201, 63, 50, 0.32);
}

.btn--red:hover {
  background: linear-gradient(135deg, #c83f32 0%, #ad3329 100%);
  box-shadow: 0 20px 44px rgba(201, 63, 50, 0.36);
  transform: translateY(-1px);
}

.btn--telegram {
  gap: 16px;
  padding-left: 26px;
  padding-right: 30px;
}

.btn--telegram .telegram-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-left: -2px;
  fill: currentColor;
  stroke: none;
}

.btn--telegram .telegram-icon path {
  fill: currentColor;
  stroke: none;
}

.btn--light,
.btn--ghost {
  background: rgba(255, 248, 241, 0.88);
  border-color: #d8b894;
  color: var(--text);
}

.btn--light:hover,
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-soft);
}

.header__cta {
  min-height: 48px;
  padding-inline: 20px;
  color: var(--text);
  border-color: #d8b894;
  background: rgba(255, 248, 241, 0.8);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 248, 241, 0.86);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  --hero-bg-image: url("1 секция/ChatGPT Image 18 мая 2026 г., 14_37_20.webp");
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  padding: 88px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  min-height: 100%;
  background-image: var(--hero-bg-image);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity: 0.94;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.8) 48%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.8) 48%, #000 62%);
}

.hero::after {
  z-index: 1;
  min-height: 100%;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(247, 239, 230, 0.98) 21%, rgba(247, 239, 230, 0.66) 39%, transparent 62%),
    linear-gradient(180deg, transparent 0%, transparent 97%, rgba(247, 239, 230, 0.2) 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(820px, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 10px;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 940px;
  padding: 0 0 clamp(24px, 4vh, 64px);
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow {
  margin: 0 0 14px 6px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.flag-layer {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  overflow: visible;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.flag-layer--georgia {
  width: 34px;
  height: 24px;
  background-image: none;
}

.flag-layer--georgia::before,
.flag-layer--georgia::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
}

.flag-layer--georgia::before {
  background:
    linear-gradient(90deg, transparent 42%, var(--georgia-red) 42% 58%, transparent 58%),
    linear-gradient(transparent 38%, var(--georgia-red) 38% 62%, transparent 62%);
}

.flag-layer--georgia::after {
  background:
    radial-gradient(circle at 18% 20%, var(--georgia-red) 0 2px, transparent 2.4px),
    radial-gradient(circle at 82% 20%, var(--georgia-red) 0 2px, transparent 2.4px),
    radial-gradient(circle at 18% 80%, var(--georgia-red) 0 2px, transparent 2.4px),
    radial-gradient(circle at 82% 80%, var(--georgia-red) 0 2px, transparent 2.4px);
}

.flag-layer--georgia.has-asset::before,
.flag-layer--georgia.has-asset::after {
  display: none;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
}

.mobile-title-break {
  display: none;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(3.25rem, 4.7vw, 6.05rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 0.18em;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.28vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.hero__subtitle {
  margin: 18px 0 18px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.75vw, 2.05rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero__text {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted-strong);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  font-weight: 400;
  line-height: 1.86;
}

.hero__note {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-height: 0;
  align-self: stretch;
  overflow: visible;
}

.hero__sky,
.hero__horizon,
.hero__balcony,
.decor-line {
  display: none;
}

.hero__sky {
  position: absolute;
  inset: 7% -7% 3% -24%;
  z-index: 0;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.55), transparent 15rem),
    radial-gradient(circle at 26% 48%, rgba(225, 59, 47, 0.08), transparent 18rem),
    linear-gradient(148deg, rgba(255, 250, 240, 0.16) 0%, rgba(249, 224, 193, 0.1) 44%, rgba(216, 228, 231, 0.1) 100%);
}

.hero__sky::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 16%;
  height: 38%;
  opacity: 0.18;
  background:
    linear-gradient(145deg, transparent 0 42%, rgba(75, 67, 57, 0.16) 43% 45%, transparent 46%),
    linear-gradient(160deg, transparent 0 50%, rgba(75, 67, 57, 0.12) 51% 53%, transparent 54%);
  clip-path: polygon(0 68%, 14% 46%, 26% 58%, 42% 30%, 58% 55%, 72% 38%, 100% 60%, 100% 100%, 0 100%);
}

.hero__horizon {
  position: absolute;
  left: -8%;
  right: -10%;
  bottom: 9%;
  z-index: 1;
  height: 42%;
  border-radius: 40% 40% 32px 32px;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 28% 28%, rgba(255, 255, 255, 0.9), transparent 14rem),
    linear-gradient(180deg, rgba(238, 203, 164, 0.1), rgba(150, 172, 178, 0.26) 52%, rgba(191, 153, 112, 0.22));
}

.hero__balcony {
  position: absolute;
  left: -20%;
  right: -11%;
  bottom: 0;
  z-index: 2;
  height: 20%;
  border-top: 1px solid rgba(197, 154, 99, 0.32);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.42), rgba(237, 219, 194, 0.34)),
    repeating-linear-gradient(95deg, transparent 0 60px, rgba(197, 154, 99, 0.12) 61px 62px);
  transform: skewY(-2deg);
  box-shadow: 0 -18px 45px rgba(116, 80, 49, 0.08);
}

.image-layer,
.decor-layer {
  position: relative;
  z-index: 4;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
}

.image-layer {
  overflow: visible;
}

.image-layer--hero {
  display: none;
}

.image-layer--hero::before {
  display: none;
}

.decor-layer {
  position: absolute;
  overflow: visible;
}

.decor-layer--hero-bag {
  right: 3%;
  bottom: 13%;
  z-index: 7;
  width: 180px;
  height: 160px;
  display: none;
  background-image: none;
}

.decor-layer--hero-glass {
  right: 25%;
  bottom: 16%;
  z-index: 7;
  width: 92px;
  height: 210px;
  display: none;
  background-image: none;
}

.decor-layer--hero-bag::before,
.decor-layer--hero-glass::before,
.decor-layer--jewelry::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 40%;
  background: rgba(197, 154, 99, 0.14);
  filter: blur(18px);
  z-index: -1;
}

.decor-line {
  position: absolute;
  z-index: 3;
  width: 230px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 99, 0.55), transparent);
  transform: rotate(-26deg);
}

.decor-line--one {
  top: 22%;
  right: 9%;
}

.decor-line--two {
  left: 8%;
  bottom: 30%;
  transform: rotate(13deg);
}

.feature-bar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, 100%);
  margin-top: clamp(-34px, -3vh, -18px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-border);
  box-shadow: var(--shadow-soft);
}

.feature-bar article {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  min-height: 78px;
  min-width: 0;
  padding: 16px 24px;
  background: rgba(255, 248, 241, 0.9);
  box-shadow: inset 0 0 0 1px rgba(226, 201, 173, 0);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.feature-bar strong {
  min-width: 0;
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: normal;
  color: var(--text);
}

.advantage-grid h3,
.image-card h3 {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 46px;
  color: var(--champagne);
}

.line-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.line-icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.line-icon--large svg {
  width: 54px;
  height: 54px;
}

.line-icon--large img {
  width: 50px;
  height: 50px;
}

.about {
  background: var(--bg-soft);
}

.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
  padding: clamp(30px, 3vw, 42px) clamp(30px, 3vw, 44px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.86);
  box-shadow: var(--shadow-soft);
}

.about__grid::after {
  content: none;
}

.about__card,
.cta-banner {
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.about__card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.about__card h2,
.section-title h2,
.cta-banner h2 {
  font-size: clamp(1.9rem, 3.25vw, 3.7rem);
  line-height: 0.96;
}

.about__card h2 {
  display: inline-block;
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 2.18vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.about__card p,
.faq-item p {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about__card p {
  max-width: 450px;
  margin: 16px 0 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.about-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  margin-top: 2px;
  padding-top: 28px;
  border-top: 1px solid rgba(197, 154, 99, 0.3);
}

.about-points article {
  min-height: 0;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.about-points article:hover {
  transform: translateY(-2px);
}

.about-points article:hover .about-point__icon {
  border-color: var(--red);
  color: var(--red);
}

.about-points article:hover h3 {
  color: var(--red);
}

.about-points h3 {
  margin: 0;
}

.about-points h3 {
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-points p {
  margin: 10px 0 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.55;
}

.about-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--champagne);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.7), transparent 60%),
    rgba(255, 248, 241, 0.72);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.about-point__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about__flag {
  width: 18px;
  height: 13px;
  margin-left: 5px;
  opacity: 0.7;
  vertical-align: 0;
}

.script-word {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-style: italic;
  line-height: 1;
}

.script-word--image {
  width: min(305px, 100%);
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-top: 0;
}

.image-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 50px;
  height: clamp(250px, 17vw, 286px);
  min-height: 0;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 10px 22px rgba(62, 42, 28, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.image-card:hover,
.income-card:hover,
.advantage-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.income-card:hover,
.advantage-grid article:hover {
  border-color: var(--red);
}

.image-card:hover {
  border-color: rgba(185, 120, 80, 0.45);
}

.feature-bar article:hover {
  background: rgba(255, 250, 244, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(217, 185, 143, 0.62),
    inset 0 0 28px rgba(217, 185, 143, 0.22),
    0 8px 22px rgba(185, 133, 79, 0.1);
}

.feature-bar article:hover .line-icon {
  color: var(--champagne);
}

.image-layer--card {
  min-height: 0;
  border-radius: 8px 8px 0 0;
  background-color: #f7eadc;
  background-size: cover;
  background-position: center center;
}

.image-layer--sea {
  background-position: center 58%;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 241, 0.08), rgba(197, 154, 99, 0.05)),
    url("2 секция/ChatGPT Image 19 мая 2026 г., 20_34_24 (1).webp");
}

.image-layer--status {
  background-position: 43% 50%;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 241, 0.08), rgba(197, 154, 99, 0.08)),
    url("6 секция/ChatGPT Image 19 мая 2026 г., 22_10_06.webp");
}

.image-layer--freedom {
  background-position: center 56%;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 241, 0.08), rgba(197, 154, 99, 0.05)),
    url("2 секция/ChatGPT Image 19 мая 2026 г., 20_34_24 (3).webp");
}

.image-card h3 {
  display: grid;
  place-items: center;
  padding: 0 12px;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid rgba(226, 201, 173, 0.72);
  color: var(--text);
  letter-spacing: 0.04em;
}

.image-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(231, 208, 176, 0.82);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.78);
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 22px rgba(62, 42, 28, 0.08);
}

.image-card__badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-color: rgba(231, 208, 176, 0.38);
  gap: 24px;
  margin-bottom: 22px;
}

.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 99, 0.72), transparent);
}

.section-title h2 {
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.section-kicker {
  display: block;
  margin: 0 auto 12px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.section-kicker,
.fit__label,
.curator__label,
.scouts__label,
.faq__label {
  font-family: var(--sans);
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-lead {
  max-width: 720px;
  margin: -8px auto 24px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-border);
  box-shadow: var(--shadow-soft);
}

.advantage-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 22px 20px;
  text-align: center;
  background: rgba(255, 248, 241, 0.9);
  border-right: 1px solid var(--card-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.advantage-grid article:last-child {
  border-right: 0;
}

.condition-grid article:nth-child(4n) {
  border-right: 0;
}

.condition-grid article:nth-child(n + 5) {
  border-top: 1px solid var(--card-border);
}

.advantages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 18px;
  padding: 64px 0 70px;
  background:
    radial-gradient(circle at 78% 26%, rgba(225, 62, 53, 0.26), transparent 34%),
    radial-gradient(circle at 58% 68%, rgba(183, 48, 39, 0.14), transparent 35%),
    radial-gradient(circle at 24% 78%, rgba(197, 154, 99, 0.08), transparent 36%),
    linear-gradient(112deg, #0b0505 0%, #1d0d0c 26%, #4a1714 60%, #7a211b 100%);
  color: var(--bg-soft);
  box-shadow: inset 0 1px rgba(255, 248, 241, 0.12), inset 0 -1px rgba(255, 248, 241, 0.08);
}

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

.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.36;
  background:
    radial-gradient(circle at 78% 24%, rgba(246, 208, 143, 0.18), transparent 22rem),
    radial-gradient(circle at 18% 58%, rgba(255, 248, 241, 0.08), transparent 24rem),
    radial-gradient(circle at 48% 52%, rgba(204, 80, 58, 0.1), transparent 34rem),
    radial-gradient(circle at 24% 28%, rgba(255, 248, 241, 0.18) 0 0.55px, transparent 0.9px),
    radial-gradient(circle at 72% 68%, rgba(197, 154, 99, 0.14) 0 0.62px, transparent 1px);
  background-size: auto, auto, auto, 32px 32px, 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.advantages::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(116deg, transparent 0 27%, rgba(232, 197, 143, 0.12) 27.15%, transparent 27.35% 100%),
    linear-gradient(64deg, transparent 0 62%, rgba(232, 197, 143, 0.09) 62.12%, transparent 62.28% 100%),
    radial-gradient(ellipse 74% 30% at 48% 18%, transparent 44%, rgba(232, 197, 143, 0.12) 44.25%, transparent 44.75%),
    radial-gradient(ellipse 62% 28% at 70% 82%, transparent 47%, rgba(255, 248, 241, 0.07) 47.25%, transparent 47.75%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.035), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.14));
  mask-image: linear-gradient(180deg, transparent 2%, #000 22%, #000 82%, transparent 100%);
}

.advantages .section-kicker {
  margin-bottom: 10px;
  color: #d8b783;
  text-shadow: 0 0 20px rgba(197, 154, 99, 0.32);
}

.advantages .section-title h2 {
  color: #fff6ee;
  font-size: clamp(1.44rem, 2.1vw, 2.1rem);
  letter-spacing: 0.055em;
}

.advantages .section-title span {
  max-width: 260px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 99, 0.54), transparent);
}

.advantages .section-lead,
.advantages .advantage-grid p {
  color: #f0dfcd;
}

.advantages .section-lead {
  max-width: 860px;
  margin-bottom: 0;
  color: #f0dfcd;
  font-size: 0.98rem;
  line-height: 1.72;
}

.advantages .advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.advantages .advantage-grid article {
  counter-increment: condition-card;
  isolation: isolate;
  position: relative;
  min-height: 180px;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 11px;
  padding: 24px 28px;
  border: 1px solid rgba(231, 208, 176, 0.2) !important;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 248, 241, 0.085), rgba(255, 248, 241, 0.045));
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 241, 0.065),
    0 18px 45px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.advantages .advantage-grid {
  counter-reset: condition-card;
}

.advantages .advantage-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 197, 143, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.055), transparent 42%);
  opacity: 0.88;
  z-index: 0;
}

.advantages .advantage-grid article::after {
  content: none;
}

.advantages .advantage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 197, 143, 0.38) !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 241, 0.11), rgba(255, 248, 241, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 241, 0.1),
    0 24px 58px rgba(0, 0, 0, 0.2);
}

.advantages .advantage-grid article:hover::before {
  opacity: 1;
}

.advantages .advantage-grid article:hover .line-icon {
  border-color: rgba(240, 211, 159, 0.7);
  color: #f0d39f;
  background: rgba(255, 248, 241, 0.11);
  box-shadow:
    0 0 0 8px rgba(240, 211, 159, 0.065),
    0 0 24px rgba(240, 211, 159, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.advantages .advantage-grid h3 {
  position: relative;
  z-index: 1;
  color: #fff6ee;
  font-size: 0.9rem;
  letter-spacing: 0.035em;
  text-align: left;
}

.advantages .line-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border: 1px solid rgba(232, 197, 143, 0.45);
  border-radius: 50%;
  color: #e8c58f;
  background: rgba(255, 248, 241, 0.1);
  box-shadow:
    0 0 0 7px rgba(232, 197, 143, 0.055),
    0 0 22px rgba(232, 197, 143, 0.11),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.advantages .line-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.45;
}

.advantages .line-icon img {
  width: 30px;
  height: 30px;
  filter: sepia(1) saturate(1.14) hue-rotate(355deg) brightness(1.58) contrast(1.06);
  opacity: 1;
}

.advantages .advantage-grid p {
  position: relative;
  z-index: 1;
  color: #f0dfcd;
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: left;
}

.advantage-grid p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.74rem;
  line-height: 1.5;
}

.income {
  background:
    radial-gradient(circle at 86% 12%, rgba(200, 63, 50, 0.06), transparent 25rem),
    linear-gradient(180deg, rgba(255, 248, 241, 0.72), transparent 36%),
    #fbf5ee;
}

.income__wrapper {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 3.1fr);
  gap: clamp(30px, 3vw, 46px);
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(185, 120, 80, 0.25);
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 63, 50, 0.055), transparent 21rem),
    radial-gradient(circle at 8% 100%, rgba(197, 154, 99, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(255, 248, 241, 0.98), rgba(248, 239, 230, 0.86));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.58),
    0 20px 52px rgba(62, 42, 28, 0.075);
  padding: clamp(30px, 3vw, 42px) clamp(30px, 3.6vw, 52px);
}

/* Sidebar */
.income__sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding-right: 2px;
}

.income__sidebar::after {
  content: "";
  position: absolute;
  top: 8px;
  right: calc(clamp(30px, 3vw, 46px) / -2);
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(197, 154, 99, 0.28), transparent);
}

.income__script {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.68rem, 0.76vw, 0.78rem);
  color: var(--champagne);
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.income__script-image {
  display: block;
  width: min(100%, 260px);
  height: auto;
  margin: 0 0 2px -3px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}

.income__main-heading {
  max-width: 100%;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.78rem, 1.9vw, 2.38rem);
  font-weight: 700;
  line-height: 0.95;
  color: #271c18;
  letter-spacing: 0;
}

.income__description {
  max-width: 270px;
  margin: 0 0 24px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* CTA Button */
.income__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  background: linear-gradient(135deg, #ef5a45 0%, #d83c31 100%);
  color: #fff8f1;
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(216, 60, 49, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  align-self: flex-start;
  text-transform: uppercase;
}

.curator__cta,
.cta-banner__btn {
  min-height: 54px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 800;
}

.income__cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e34937 0%, #c93027 100%);
  box-shadow: 0 16px 34px rgba(216, 60, 49, 0.34);
}

.income__cta-icon {
  width: 18px;
  height: 18px;
  fill: #fff8f1;
}

/* Cards Grid */
.income__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  min-width: 0;
}

/* Income Card */
.income-card {
  --income-card-bg: #f4eadf;
  position: relative;
  border: 1px solid rgba(185, 120, 80, 0.25);
  border-radius: 22px;
  overflow: hidden;
  background: var(--income-card-bg);
  box-shadow: 0 16px 36px rgba(60, 35, 25, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 292px;
}

.income-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, rgba(197, 154, 99, 0.12), transparent 32%);
  opacity: 0.75;
}

.income-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 120, 80, 0.3), transparent);
  pointer-events: none;
  z-index: 2;
}

.income-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 120, 80, 0.38);
  box-shadow: 0 22px 46px rgba(60, 35, 25, 0.12);
}

.income-card__text {
  position: relative;
  z-index: 3;
  min-height: 172px;
  padding: 24px 22px 52px;
  flex: 1 0 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(
    180deg,
    var(--income-card-bg) 0%,
    var(--income-card-bg) 66%,
    rgba(244, 234, 223, 0.92) 78%,
    rgba(244, 234, 223, 0.58) 90%,
    rgba(244, 234, 223, 0) 100%
  );
}

.income-card__amount {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.48rem, 1.62vw, 1.84rem);
  font-weight: 700;
  letter-spacing: 0;
  color: #b93228;
  line-height: 1;
}

.income-card__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #271c18;
  line-height: 1.3;
}

.income-card__desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.42;
}

.income-card__image {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  min-height: 176px;
  flex: 0 0 52%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.income-card__image::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 88px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--income-card-bg) 0%,
    rgba(244, 234, 223, 0.88) 28%,
    rgba(244, 234, 223, 0.46) 58%,
    rgba(244, 234, 223, 0) 100%
  );
}

.income-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 234, 223, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(185, 77, 48, 0.12), rgba(255, 220, 172, 0.14));
  mix-blend-mode: multiply;
}

.income-card:hover .income-card__image {
  transform: scale(1.03);
}

.income-card__image--start {
  background-image: url("4 секция/ChatGPT Image 19 мая 2026 г., 21_45_33 (1).webp");
  background-position: center 54%;
}

.income-card__image--growth {
  background-image: url("4 секция/ChatGPT Image 19 мая 2026 г., 21_45_33 (2).webp");
  background-position: center 58%;
}

.income-card__image--premium {
  background-image: url("4 секция/ChatGPT Image 19 мая 2026 г., 21_45_35 (3).webp");
  background-position: center 56%;
}

.income-card__image--elite {
  background-image: url("4 секция/ChatGPT Image 19 мая 2026 г., 21_45_35 (4).webp");
  background-position: center 54%;
}

/* ===== FIT SECTION ===== */
.fit__card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
  padding: clamp(32px, 3.5vw, 52px) clamp(28px, 3vw, 46px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 98% 0%, rgba(225, 59, 47, 0.06), transparent 18rem),
    linear-gradient(135deg, rgba(255, 248, 241, 0.92), rgba(247, 239, 230, 0.78));
  box-shadow: 0 18px 50px rgba(62, 42, 28, 0.08);
}

.fit__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fit__label {
  display: inline-block;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fit__content h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
}

.fit__content p {
  max-width: 340px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* Fit cards grid */
.fit__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit__cards .fit-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.fit__cards .fit-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.fit__cards .fit-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.fit__cards .fit-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2 / 4;
}

.fit__cards .fit-card:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

.fit-card {
  display: flex;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(255, 248, 241, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fit-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(62, 42, 28, 0.06);
}

/* ===== PROCESS / TIMELINE ===== */
.process {
  background: var(--bg);
}

.process__title {
  text-align: center;
  margin: 0 0 36px;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 18px;
}

.process__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--champagne);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

/* Connecting line */
.timeline::before {
  content: "";
  position: absolute;
  left: calc(8.33% + 30px);
  right: calc(8.33% + 30px);
  top: 30px;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 99, 0.5), rgba(197, 154, 99, 0.5), transparent);
}

.timeline__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  text-align: center;
}

/* Arrow between steps */
.timeline__step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -4px;
  top: 22px;
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.timeline__number {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--soft-gold);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline__step:hover .timeline__number {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(200, 63, 50, 0.12);
}

.timeline__step h3 {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.timeline__step p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.72rem;
  line-height: 1.5;
  max-width: 180px;
}

/* ===== CURATOR / ALICE ===== */
.curator__card {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(340px, 0.4fr) minmax(290px, 0.34fr);
  gap: clamp(26px, 3vw, 44px);
  align-items: center;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 42px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 98% 8%, rgba(225, 59, 47, 0.05), transparent 18rem),
    linear-gradient(135deg, rgba(255, 248, 241, 0.94), rgba(247, 239, 230, 0.8));
  box-shadow: 0 18px 50px rgba(62, 42, 28, 0.07);
}

.curator__image {
  position: relative;
  min-height: 302px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(185, 120, 80, 0.28);
  background: #f5eadc;
  box-shadow: 0 16px 38px rgba(62, 42, 28, 0.12);
}

.curator__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.08), transparent 38%, rgba(62, 42, 28, 0.08)),
    linear-gradient(135deg, rgba(185, 77, 48, 0.08), transparent 42%);
  mix-blend-mode: multiply;
}

.image-layer--curator {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("images/alice-manager.webp");
  background-size: cover;
  background-position: center 48%;
}

.curator__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.curator__label {
  display: inline-block;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.curator__name {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.2vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.curator__text {
  margin: 0 0 12px;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.65;
}

.curator__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  margin-top: 8px;
  background: linear-gradient(135deg, #d94a3a 0%, #b92f27 100%);
  color: #fff8f1;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(201, 63, 50, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-self: flex-start;
  max-width: 100%;
}

.curator__cta span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.curator__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(201, 63, 50, 0.3);
}

.curator__cta-icon {
  width: 18px;
  height: 18px;
  fill: #fff8f1;
}

/* Perks / Benefits */
.curator__perks {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.curator__perks ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curator__perks li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 6px 10px 6px 7px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
  min-width: 0;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.curator__perks li:hover {
  transform: translateX(2px);
  border-color: rgba(185, 120, 80, 0.22);
  background: rgba(255, 248, 241, 0.42);
}

.curator__perk-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(197, 154, 99, 0.38);
  border-radius: 50%;
  color: #c69252;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 248, 241, 0.96), rgba(247, 239, 230, 0.54));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.64),
    0 8px 18px rgba(62, 42, 28, 0.075);
  stroke-width: 1.55;
}

/* ===== SCOUTS ===== */
.scouts__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 3vw, 42px) clamp(28px, 3vw, 42px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 4% 0%, rgba(197, 154, 99, 0.12), transparent 15rem),
    linear-gradient(135deg, rgba(255, 248, 241, 0.94), rgba(247, 239, 230, 0.8));
  box-shadow: 0 10px 30px rgba(62, 42, 28, 0.05);
}

.scouts__label {
  display: inline-block;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.scouts__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

.scouts__text {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.65;
}

.scouts__text + .scouts__text {
  margin-top: 10px;
}

.scouts__text--muted {
  color: var(--muted);
  opacity: 0.8;
}

.scouts__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.scouts__cta:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(62, 42, 28, 0.08);
  transform: translateY(-1px);
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-soft);
}

.faq__header {
  text-align: center;
  margin-bottom: 36px;
}

.faq__label {
  display: inline-block;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

.faq__subtitle {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.faq-item {
  align-self: start;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 248, 241, 0.72);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(197, 154, 99, 0.5);
  box-shadow: 0 6px 24px rgba(62, 42, 28, 0.06);
}

.faq-item.is-open {
  border-color: rgba(197, 154, 99, 0.6);
  box-shadow: 0 8px 28px rgba(62, 42, 28, 0.08);
}

.faq-item button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-item button:hover {
  color: var(--red);
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--champagne);
  transition: transform 0.3s ease, color 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

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

.faq-item.is-open .faq-item__content {
  max-height: 240px;
}

.faq-item__content > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-item.is-open .faq-item__content > p {
  opacity: 1;
}

/* ===== FINAL CTA BANNER ===== */
.final-cta {
  background: var(--bg);
  padding: 14px 0 12px;
}

.final-cta .container {
  width: min(100% - 36px, 1760px);
}

.cta-banner {
  position: relative;
  min-height: clamp(118px, 8.6vw, 168px);
  margin-inline: auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  padding: clamp(16px, 1.6vw, 28px) clamp(22px, 2.5vw, 44px);
  background:
    linear-gradient(90deg, rgba(44, 18, 13, 0.56) 0%, rgba(44, 18, 13, 0.34) 28%, rgba(44, 18, 13, 0.04) 58%, rgba(44, 18, 13, 0) 100%),
    url("7 секция/final-cta-banner-cropped.webp") center center / cover no-repeat;
  border: 1px solid rgba(226, 201, 173, 0.58);
  box-shadow: 0 12px 32px rgba(62, 42, 28, 0.1);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 0;
  min-width: 0;
}

.cta-banner__panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.cta-banner__panel--main {
  width: min(100%, 420px);
  padding: 0;
}

.cta-banner h2 {
  max-width: 420px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.72rem);
  font-weight: 500;
  line-height: 1.03;
  color: #fff8f1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(37, 19, 14, 0.42);
}

.cta-banner p {
  max-width: 390px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  line-height: 1.55;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  background: linear-gradient(135deg, #d94a3a 0%, #b92f27 100%);
  color: #fff8f1;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(201, 63, 50, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-self: start;
  width: auto;
  min-width: 180px;
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 63, 50, 0.3);
}

.cta-banner__btn-icon {
  width: 15px;
  height: 15px;
  fill: #fff8f1;
}

.footer {
  padding: 14px 0 20px;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1320px) {
  .income__wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .income__sidebar {
    max-width: 760px;
    padding-right: 0;
  }

  .income__sidebar::after {
    display: none;
  }

  .income__main-heading {
    max-width: 620px;
  }

  .income__description {
    max-width: 680px;
  }
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav {
    gap: 16px;
    font-size: 0.7rem;
  }

  .hero__grid {
    grid-template-columns: minmax(560px, 0.96fr) minmax(360px, 1.04fr);
    min-height: 650px;
  }

  .income__wrapper {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .income__sidebar {
    max-width: 720px;
  }

  .income__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .curator__card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .curator__perks {
    grid-column: 1 / -1;
    min-height: 180px;
    padding-right: 180px;
  }

  .curator__perks ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 980px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.is-open {
    position: fixed;
    top: 77px;
    left: 20px;
    right: 20px;
    z-index: 78;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--card-border);
    border-radius: 22px;
    background: rgba(255, 248, 241, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav.is-open a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(226, 201, 173, 0.72);
    font-size: 0.86rem;
  }

  .nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    height: auto;
    overflow: visible;
    padding-top: 96px;
  }

  .hero::before {
    inset: 0;
    width: auto;
    min-height: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: 62% 18px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero::after {
    min-height: 0;
    background:
      linear-gradient(90deg, rgba(247, 239, 230, 0.98) 0%, rgba(247, 239, 230, 0.82) 42%, rgba(247, 239, 230, 0.18) 70%, transparent 100%),
      linear-gradient(180deg, transparent 0%, transparent 82%, rgba(247, 239, 230, 0.38) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__content {
    padding-bottom: 18px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(2.72rem, 5.8vw, 3.32rem);
    font-weight: 700;
  }

  .mobile-title-break {
    display: block;
  }

  .hero__visual {
    display: none;
    min-height: 0;
    order: 2;
  }

  .image-layer--hero {
    display: none;
  }

  .feature-bar {
    margin-top: 22px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    margin-top: 0;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 6px;
  }

  .image-card {
    scroll-snap-align: start;
  }

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

  .advantage-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--card-border);
  }

  .advantage-grid article:nth-child(odd) {
    border-right: 1px solid var(--card-border);
  }

  .advantage-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .condition-grid article:nth-child(odd) {
    border-right: 1px solid var(--card-border);
  }

  .condition-grid article:nth-child(even) {
    border-right: 0;
  }

  .condition-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--card-border);
  }

  .advantages .advantage-grid article,
  .advantages .condition-grid article:nth-child(odd),
  .advantages .condition-grid article:nth-child(n + 3) {
    border-color: transparent;
  }

  .condition-grid article:last-child {
    grid-column: auto;
  }

  .advantages .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
  }

  .advantages .advantage-grid article,
  .advantages .advantage-grid article:nth-child(odd) {
    min-height: 182px;
    border: 0;
    border-radius: 22px;
  }

  .advantages .advantage-grid article:last-child {
    grid-column: auto;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::before {
    left: 30px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .timeline__step {
    min-height: 130px;
    grid-template-columns: 60px 1fr;
    justify-items: start;
    align-items: start;
    column-gap: 20px;
    text-align: left;
    padding: 0 0 28px;
    flex-direction: row;
  }

  .timeline__step:not(:last-child)::after {
    display: none;
  }

  .timeline__step h3,
  .timeline__step p {
    grid-column: 2;
  }

  .timeline__number {
    grid-row: 1 / 3;
    flex-shrink: 0;
  }

  .curator__card {
    grid-template-columns: 1fr;
  }

  .curator__image {
    min-height: clamp(260px, 48vw, 380px);
  }

  .curator__perks ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .curator__perks {
    padding-right: 0;
  }

  .fit__card {
    grid-template-columns: 1fr;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  }

  .fit__content {
    max-width: 480px;
  }

  .fit__cards {
    grid-template-columns: 1fr;
  }

  .fit__cards .fit-card:nth-child(4) {
    grid-row: auto;
  }

  .scouts__card {
    grid-template-columns: 1fr;
  }

  .scouts__cta {
    align-self: start;
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .final-cta .container {
    width: min(100% - 28px, 1760px);
  }

  .cta-banner {
    min-height: 150px;
    padding: 20px 24px;
    background-position: center;
  }

  .cta-banner__content {
    min-height: inherit;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 34px 0;
  }

  .header {
    padding-top: 14px;
  }

  .logo {
    width: 160px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero::before {
    inset: 44% -20% auto -10%;
    height: 590px;
    opacity: 0.88;
    background-size: contain;
    background-position: center center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, var(--bg) 0%, rgba(247, 239, 230, 0.98) 44%, transparent 61%, var(--bg) 100%),
      linear-gradient(90deg, var(--bg) 0%, rgba(247, 239, 230, 0.76) 24%, transparent 68%);
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.95rem);
    line-height: 1.02;
  }

  .hero__subtitle {
    font-size: 1.55rem;
    margin-bottom: 20px;
  }

  .hero__text {
    font-size: 0.98rem;
  }

  .hero__actions,
  .curator__cta,
  .cta-banner__btn {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 0.73rem;
  }

  .btn--telegram {
    justify-content: center;
    gap: 15px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .btn--telegram .telegram-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    margin-left: 0;
  }

  .hero__visual {
    min-height: 470px;
  }

  .image-layer--hero {
    display: none;
  }

  .decor-layer--hero-bag {
    right: -6%;
    width: 140px;
    height: 120px;
  }

  .decor-layer--hero-glass {
    right: 36%;
    width: 64px;
    height: 150px;
  }

  .feature-bar {
    grid-template-columns: 1fr;
  }

  .feature-bar article {
    min-height: 82px;
    padding: 20px;
  }

  .about__grid {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 4px;
    padding-top: 22px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    overflow: visible;
    margin-top: 0;
  }

  .image-card {
    height: auto;
    min-height: 0;
  }

  .image-layer--card {
    min-height: 230px;
  }

  .image-card__badge {
    left: 16px;
    top: 16px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .section-title span {
    display: none;
  }

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

  .advantage-grid article,
  .advantage-grid article:nth-child(odd) {
    min-height: 210px;
    padding: 24px 12px;
    border-bottom: 1px solid var(--card-border);
  }

  .advantage-grid article:nth-child(odd) {
    border-right: 1px solid var(--card-border);
  }

  .advantage-grid article:nth-child(even) {
    border-right: 0;
  }

  .advantage-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 180px;
  }

  .condition-grid article:last-child {
    grid-column: auto;
  }

  .advantages .advantage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .advantages .advantage-grid article,
  .advantages .advantage-grid article:nth-child(odd),
  .advantages .advantage-grid article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 28px 28px;
    border: 0;
    border-radius: 18px;
  }

  .advantage-grid h3 {
    font-size: 0.76rem;
  }

  .advantage-grid p {
    font-size: 0.78rem;
  }

  .line-icon--large svg {
    width: 46px;
    height: 46px;
  }

  .income__wrapper {
    padding: 26px 18px;
    border-radius: 22px;
    gap: 22px;
  }

  .income__script {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .income__main-heading {
    font-size: clamp(1.86rem, 8vw, 2.4rem);
    line-height: 0.98;
  }

  .income__description {
    margin-bottom: 22px;
    font-size: 0.84rem;
  }

  .income__cards {
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 14px;
  }

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

  .income-card__image {
    min-height: 156px;
  }

  .income__cta {
    width: 100%;
    justify-content: center;
  }

  .fit__cards {
    grid-template-columns: 1fr;
  }

  .fit__cards .fit-card:nth-child(4) {
    grid-row: auto;
  }

  .curator__card {
    padding: 16px;
    width: 100%;
    min-width: 0;
  }

  .curator__image {
    min-height: 240px;
  }

  .curator__perks ul {
    grid-template-columns: 1fr;
  }

  .curator__cta {
    justify-content: center;
    padding-inline: 18px;
    text-align: center;
  }

  .faq-item button {
    padding: 16px 18px;
    font-size: 0.74rem;
  }

  .faq-item.is-open .faq-item__content {
    max-height: 320px;
  }

  .final-cta .container {
    width: min(100% - 24px, 1760px);
  }

  .cta-banner {
    min-height: 186px;
    padding: 18px;
    border-radius: 12px;
    background:
      linear-gradient(90deg, rgba(44, 18, 13, 0.64) 0%, rgba(44, 18, 13, 0.32) 56%, rgba(44, 18, 13, 0.04) 100%),
      url("7 секция/final-cta-banner-cropped.webp") center center / cover no-repeat;
  }

  .cta-banner h2 {
    max-width: 270px;
    margin-bottom: 14px;
    font-size: clamp(1.16rem, 5.4vw, 1.45rem);
    line-height: 1.05;
  }

  .cta-banner p {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .cta-banner__content {
    min-height: inherit;
  }

  .cta-banner__btn {
    min-width: 190px;
    width: auto;
    justify-content: center;
  }

  .footer__inner {
    text-align: center;
  }
}

.mobile-sticky-cta {
  display: none;
}

@media (min-width: 681px) and (max-width: 980px) {
  .section-pad {
    padding: 52px 0;
  }

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

  .hero {
    padding-top: 104px;
  }

  .hero__content {
    max-width: 640px;
  }

  .hero__visual {
    display: none;
    min-height: 0;
  }

  .section-kicker,
  .curator__label,
  .scouts__label,
  .faq__label,
  .income__cta {
    font-size: 0.75rem;
  }

  .timeline__step p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .feature-bar {
    border-radius: 24px;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .image-card {
    min-width: 0;
  }

  .cta-banner__btn {
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 680px) {
  :root {
    --mobile-gutter: 16px;
    --mobile-card-radius: 20px;
    --mobile-section-gap: 56px;
    --mobile-inner-gap: 24px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    padding-bottom: 0;
  }

  .container,
  .final-cta .container {
    width: min(100% - (var(--mobile-gutter) * 2), 430px);
  }

  .section-pad {
    padding: var(--mobile-section-gap) 0;
  }

  main > section {
    scroll-margin-top: 82px;
  }

  .header {
    padding-top: 10px;
  }

  .header__inner {
    min-height: 54px;
  }

  .logo {
    width: 132px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
  }

  .nav.is-open {
    top: 72px;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    padding: 12px;
    border-radius: 20px;
  }

  .nav.is-open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 0;
    overflow: hidden;
    padding: 84px 0 18px;
  }

  .hero::before {
    inset: 0;
    width: auto;
    height: 100%;
    min-height: 100%;
    opacity: 1;
    background-size: auto 100%;
    background-position: 59% 16px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero::after {
    min-height: 100%;
    background:
      linear-gradient(180deg, transparent 70%, rgba(247, 239, 230, 0.34) 86%, var(--bg) 100%),
      radial-gradient(ellipse at 8% 31%, rgba(255, 249, 242, 0.98) 0%, rgba(255, 249, 242, 0.82) 25%, rgba(255, 249, 242, 0.08) 39%, transparent 50%),
      linear-gradient(90deg, rgba(247, 239, 230, 0.98) 0%, rgba(247, 239, 230, 0.74) 29%, rgba(247, 239, 230, 0.02) 45%, transparent 58%),
      linear-gradient(180deg, transparent 0%, transparent 44%, rgba(247, 239, 230, 0.12) 100%);
  }

  .hero__grid {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    width: 100%;
    max-width: 342px;
    margin-left: 4px;
    padding: 0 0 6px;
  }

  .hero__content::before {
    content: "";
    position: absolute;
    inset: -16px 58px -18px -18px;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 20% 28%, rgba(255, 249, 242, 0.78) 0%, rgba(255, 249, 242, 0.58) 38%, transparent 72%),
      linear-gradient(90deg, rgba(255, 249, 242, 0.6), rgba(255, 249, 242, 0.08) 62%, transparent);
    filter: blur(10px);
  }

  .hero__eyebrow {
    margin: 0 0 10px 6px;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.36em;
  }

  .flag-layer--georgia {
    width: 32px;
    height: 22px;
  }

  .hero h1 {
    max-width: 282px;
    font-size: clamp(1.58rem, 7vw, 1.84rem);
    font-weight: 650;
    line-height: 1.01;
    letter-spacing: 0.006em;
  }

  .hero h1 span {
    margin-top: 0.24em;
    font-size: clamp(0.84rem, 3.9vw, 0.98rem);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: 0.04em;
  }

  .hero__subtitle {
    max-width: 292px;
    margin: 19px 0 13px;
    color: #9b5635;
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.15;
  }

  .hero__text {
    max-width: 322px;
    margin-bottom: 22px;
    padding: 9px 11px;
    border: 1px solid rgba(216, 184, 148, 0.22);
    border-radius: 14px;
    background: rgba(255, 248, 241, 0.48);
    box-shadow: none;
    backdrop-filter: blur(10px);
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .hero__actions {
    width: 100%;
    max-width: 322px;
    gap: 12px;
  }

  .btn,
  .income__cta,
  .curator__cta,
  .scouts__cta,
  .cta-banner__btn {
    min-height: 52px;
    border-radius: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.045em;
  }

  .hero .btn {
    min-height: 54px;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .hero .btn--telegram {
    min-height: 58px;
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(135deg, #cf4437 0%, #ad3329 100%);
    box-shadow: 0 12px 26px rgba(181, 48, 40, 0.24);
  }

  .hero .btn--telegram .telegram-icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .hero .btn--light {
    min-height: 52px;
    border-color: rgba(216, 184, 148, 0.5);
    background: rgba(255, 248, 241, 0.28);
    box-shadow: none;
    backdrop-filter: blur(8px);
    font-size: 0.68rem;
    font-weight: 700;
  }

  .hero__note {
    max-width: 322px;
    margin-top: 20px;
    padding: 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero__visual {
    display: none;
    min-height: 0;
  }

  .feature-bar {
    display: none;
  }

  .feature-bar article {
    min-height: 70px;
    gap: 14px;
    padding: 15px 16px;
    border: 1px solid rgba(216, 178, 130, 0.48);
    border-radius: 18px;
    background: rgba(255, 248, 241, 0.76);
    box-shadow: 0 14px 34px rgba(62, 42, 28, 0.07);
  }

  .feature-bar article + article {
    border-left: 1px solid rgba(216, 178, 130, 0.48);
  }

  .feature-bar strong {
    font-size: 0.83rem;
    line-height: 1.2;
  }

  .feature-bar .line-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .feature-bar .line-icon svg {
    width: 30px;
    height: 30px;
  }

  .label,
  .section-kicker,
  .fit__label,
  .curator__label,
  .scouts__label,
  .faq__label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  .about__card h2,
  .section-title h2,
  .fit__content h2,
  .process__title,
  .curator__name,
  .scouts__title,
  .faq__title {
    font-size: clamp(1.65rem, 7.4vw, 2rem);
    line-height: 1.03;
  }

  .about__card p,
  .section-lead,
  .fit__content p,
  .curator__text,
  .scouts__text,
  .faq__subtitle {
    font-size: 0.93rem;
    line-height: 1.62;
  }

  .about__grid {
    gap: var(--mobile-inner-gap);
    padding: 24px 16px 28px;
    border-radius: 24px;
  }

  .about__card p {
    margin-top: 16px;
  }

  .lifestyle-grid {
    gap: 14px;
  }

  .image-card {
    overflow: hidden;
    border-radius: var(--mobile-card-radius);
  }

  .image-layer--card {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .image-card h3 {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 0 16px;
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .about-points {
    gap: 12px;
    padding-top: 24px;
  }

  .about-points article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(216, 178, 130, 0.34);
    border-radius: 18px;
    background: rgba(255, 248, 241, 0.56);
  }

  .about-point__icon {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
  }

  .about-points h3 {
    margin-top: 2px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .about-points p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .advantages {
    margin-top: 8px;
    padding: 42px 0 46px;
    background:
      radial-gradient(circle at 78% 12%, rgba(235, 190, 120, 0.18), transparent 34%),
      radial-gradient(circle at 12% 72%, rgba(194, 67, 50, 0.18), transparent 32%),
      linear-gradient(145deg, #130807 0%, #2a1110 44%, #5a1a16 100%);
  }

  .advantages::before {
    opacity: 0.22;
    background:
      radial-gradient(circle at 75% 24%, rgba(246, 208, 143, 0.14), transparent 16rem),
      linear-gradient(180deg, rgba(255, 248, 241, 0.06), transparent 24%, transparent 74%, rgba(0, 0, 0, 0.16));
    background-size: auto;
    mask-image: none;
  }

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

  .advantages .section-title h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .advantages .section-lead {
    display: block;
    overflow: visible;
    max-width: 330px;
    margin: 12px auto 0;
    font-size: 0.82rem;
    line-height: 1.42;
    text-align: center;
  }

  .advantages .advantage-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .advantages .advantage-grid article,
  .advantages .advantage-grid article:nth-child(odd),
  .advantages .advantage-grid article:last-child {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-column: auto;
    align-items: start;
    min-height: 0;
    column-gap: 11px;
    row-gap: 4px;
    padding: 11px 12px;
    border-radius: 14px;
    background:
      linear-gradient(145deg, rgba(255, 248, 241, 0.12), rgba(255, 248, 241, 0.055));
    box-shadow:
      inset 0 1px 0 rgba(255, 248, 241, 0.1),
      0 16px 34px rgba(0, 0, 0, 0.16);
  }

  .advantages .line-icon {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    box-shadow:
      0 0 0 5px rgba(232, 197, 143, 0.05),
      0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .advantages .line-icon img,
  .advantages .line-icon svg {
    width: 22px;
    height: 22px;
  }

  .advantages .advantage-grid h3 {
    margin-top: 1px;
    font-size: 0.7rem;
    line-height: 1.18;
  }

  .advantages .advantage-grid p {
    display: block;
    overflow: visible;
    font-size: 0.74rem;
    line-height: 1.38;
  }

  .income__wrapper {
    gap: 24px;
    padding: 24px 14px 18px;
    border-radius: 26px;
  }

  .income__script-image {
    max-width: 174px;
  }

  .income__main-heading {
    margin-top: 4px;
    font-size: clamp(1.88rem, 8.1vw, 2.16rem);
    line-height: 0.98;
  }

  .income__description {
    max-width: 310px;
    margin-bottom: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .income__cards {
    gap: 14px;
  }

  .income-card {
    min-height: 0;
    border-radius: 22px;
  }

  .income-card__text {
    min-height: 134px;
    padding: 20px 18px 50px;
    background:
      linear-gradient(180deg, var(--income-card-bg) 0%, var(--income-card-bg) 50%, rgba(244, 234, 223, 0.9) 70%, rgba(244, 234, 223, 0.24) 94%, rgba(244, 234, 223, 0) 100%);
  }

  .income-card__text::after {
    display: none;
  }

  .income-card__amount {
    font-size: clamp(1.42rem, 6.4vw, 1.68rem);
  }

  .income-card__title {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .income-card__desc {
    margin-top: 9px;
    font-size: 0.85rem;
    line-height: 1.48;
  }

  .income-card__image {
    min-height: 0;
    margin-top: -56px;
    aspect-ratio: 16 / 8.2;
    background-size: cover;
  }

  .income-card__image::before {
    height: 74px;
    background:
      linear-gradient(180deg, rgba(244, 234, 223, 0.86) 0%, rgba(244, 234, 223, 0.44) 42%, transparent 100%);
  }

  .fit__card,
  .curator__card,
  .scouts__card {
    border-radius: 24px;
  }

  .fit__card {
    gap: 22px;
    overflow: hidden;
    padding: 24px 16px;
  }

  .fit__content h2 {
    margin-bottom: 14px;
  }

  .fit .fit__card .fit__cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .fit .fit__cards .fit-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .fit-card {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .process__title {
    max-width: 340px;
    margin-bottom: 28px;
    text-align: left;
  }

  .process__title::after {
    left: 0;
    transform: none;
  }

  .timeline {
    display: grid;
    gap: 10px;
  }

  .timeline::before {
    content: none;
  }

  .timeline__step {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px 1fr;
    column-gap: 13px;
    row-gap: 3px;
    padding: 13px 14px;
    border: 1px solid rgba(216, 178, 130, 0.3);
    border-radius: 16px;
    background: rgba(255, 248, 241, 0.58);
    box-shadow: 0 10px 24px rgba(62, 42, 28, 0.035);
  }

  .timeline__step:not(:last-child)::after {
    content: none;
  }

  .timeline__number {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-width: 1px;
    font-size: 0.84rem;
  }

  .timeline__step h3 {
    grid-column: 2;
    margin: 1px 0 2px;
    font-size: 0.8rem;
    line-height: 1.22;
  }

  .timeline__step p {
    grid-column: 2;
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .curator__card {
    gap: 18px;
    padding: 18px;
  }

  .curator__image {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .curator__name {
    margin-bottom: 10px;
  }

  .curator__perks ul {
    gap: 10px;
  }

  .curator__perks li {
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .scouts__card {
    gap: 18px;
    padding: 22px 18px;
  }

  .scouts__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq__header {
    margin-bottom: 22px;
  }

  .faq__grid {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item button {
    min-height: 56px;
    padding: 14px 16px;
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: 0.005em;
    text-transform: none;
  }

  .faq-item__content > p {
    padding: 0 16px 18px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .final-cta {
    padding: 58px 0 28px;
  }

  .final-cta .container {
    width: min(100% - 24px, 430px);
  }

  .cta-banner {
    min-height: 0;
    height: clamp(188px, 53vw, 220px);
    padding: 18px;
    border-radius: 16px;
    background:
      linear-gradient(90deg, rgba(44, 18, 13, 0.62) 0%, rgba(44, 18, 13, 0.34) 50%, rgba(44, 18, 13, 0.06) 100%),
      url("7 секция/final-cta-banner-cropped.webp") center center / cover no-repeat;
  }

  .cta-banner__content {
    min-height: 100%;
    align-items: flex-end;
  }

  .cta-banner h2 {
    max-width: 260px;
    margin-bottom: 12px;
    font-size: clamp(1.04rem, 4.8vw, 1.2rem);
    line-height: 1.04;
  }

  .cta-banner__btn {
    width: min(100%, 292px);
    min-height: 46px;
    min-width: 0;
  }

  .footer {
    padding-bottom: calc(26px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    position: fixed;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 248, 241, 0.32);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(221, 72, 58, 0.98), rgba(169, 43, 36, 0.98));
    color: #fff8f1;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow:
      0 18px 42px rgba(75, 18, 13, 0.28),
      0 0 0 1px rgba(142, 39, 31, 0.18);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-sticky-cta__icon {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }

  body.show-mobile-cta .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
