/* ============================================================
   ГЛАВНАЯ СТРАНИЦА — точно по Figma дизайну
   ============================================================ */

/* Лейбл секции: — ТЕКСТ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

/* Для центрированных секций — с левым маркером */
.section-label--center {
  display: flex;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 64px 0 64px;
  overflow: hidden;
  background-color: #ffffff;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 568px;
  align-items: center;
  gap: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--color-brown-900);
}
.hero__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-brown-600);
  line-height: 1.6;
}

.hero__cta {
  align-self: flex-start;
}

/* Мокап справа — прибит к низу */
.hero__mockup-wrap {
  align-self: center;
  width: 568px;
  flex-shrink: 0;
}

.hero__mockup-img {
  width: 568px;
  height: 424px;
  display: block;
  object-fit: contain;
}

.hero__mockup {
  background-color: var(--color-beige-100);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 20px 0;
  border: 1px solid var(--color-beige-300);
}

.hero__mockup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.hero__mockup-dots {
  display: flex;
  gap: 5px;
  position: absolute;
  left: 0;
}
.hero__mockup-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: var(--color-beige-400);
}

.hero__mockup-label {
  font-size: var(--text-xxs);
  font-weight: 600;
  color: var(--color-brown-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero__mockup-card {
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 115px;
  gap: 12px;
}
.hero__mockup-card--orange { background-color: #FFF4ED; }
.hero__mockup-card--blue   { background-color: #EEF3FF; }
.hero__mockup-card--green  { background-color: #F0FFF7; }
.hero__mockup-card--beige  { background-color: #EDE7DA; }

/* Верхняя часть карточки с фигурами */
.hero__mockup-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}

.hero__mockup-card-shape {
  border-radius: 6px;
  height: 32px;
  flex: 1;
}
.hero__mockup-card--orange .hero__mockup-card-shape { background-color: #F0A070; }
.hero__mockup-card--blue   .hero__mockup-card-shape { background-color: #B8CAEE; }
.hero__mockup-card--green  .hero__mockup-card-shape { background-color: #A5D9B8; }
.hero__mockup-card--beige  .hero__mockup-card-shape { background-color: #C8BFB2; }

/* Для Mega Kit: вертикальный pill слева + горизонтальный rect справа */
.hero__mockup-card--green .hero__mockup-card-shape.hero__mockup-card-shape--pill {
  width: 20px;
  flex: none;
  height: 44px;
  border-radius: 20px;
  background-color: #6ABF8A;
}
.hero__mockup-card--green .hero__mockup-card-shape.hero__mockup-card-shape--wide {
  flex: 1;
  height: 28px;
  background-color: #A5D9B8;
  align-self: flex-end;
}

/* Маленький круг в правом верхнем углу */
.hero__mockup-card-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__mockup-card--orange .hero__mockup-card-circle { background-color: var(--color-accent); }
.hero__mockup-card--blue   .hero__mockup-card-circle { background-color: #7DA2D9; }
.hero__mockup-card--beige  .hero__mockup-card-circle { background-color: #8C8476; }

.hero__mockup-card-name {
  font-size: var(--text-xxs);
  font-weight: 600;
  color: var(--color-brown-700);
}
.hero__mockup-card-price {
  font-size: var(--text-xxs);
  font-weight: 600;
  color: var(--color-accent);
  margin-left: auto;
}
.hero__mockup-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__mockup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-beige-300);
  padding: 12px 0 14px;
  margin-top: 10px;
}
.hero__mockup-footer-text {
  font-size: var(--text-xxs);
  color: var(--color-brown-500);
}
.hero__mockup-footer-count {
  font-size: var(--text-base-lg);
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background-color: var(--color-beige-100);
  border-top: 1px solid var(--color-beige-400);
  border-bottom: 1px solid var(--color-beige-400);
  padding: 11px 0;
}
.marquee__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__inner:hover { animation-play-state: paused; }
.marquee__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  color: #6F675F;
  padding: 0 20px;
  white-space: nowrap;
}
.marquee__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background-color: #6F675F;
  flex-shrink: 0;
}

/* ============================================================
   SECTION: ЧТО ЭТО ЗА ПРОДУКТЫ
   ============================================================ */
.section-what {
  padding: 80px 0;
  background-color: var(--color-white);
}

.section-what__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-what__title {
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.14;
  color: var(--color-brown-900);
  margin-bottom: 20px;
}
.section-what__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-what__desc {
  font-size: 17px;
  color: var(--color-brown-600);
  line-height: 1.6;
}

.section-what__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-what__item {
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-beige-300);
  border-radius: 16px;
  padding: 20px 24px;
}

.section-what__num {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.section-what__item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brown-900);
  margin-bottom: 6px;
}

.section-what__item-desc {
  font-size: var(--text-sm);
  color: var(--color-brown-500);
  line-height: 1.55;
}

/* ============================================================
   SECTION: ЧЕМ ЭТО ПОЛЕЗНО (Benefits)
   ============================================================ */
.section-benefits {
  padding: 80px 0;
  background-color: var(--color-beige-100);
}

.section-benefits__head {
  text-align: center;
  margin-bottom: 40px;
}

.section-benefits__title {
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.14;
  color: var(--color-brown-900);
  margin-bottom: 16px;
}
.section-benefits__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-benefits__subtitle {
  font-size: 18px;
  color: var(--color-brown-600);
  line-height: 1.6;
  max-width: 960px;
  margin: 0 auto;
}

.section-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.benefit-card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-beige-300);
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
}

.benefit-card__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-beige-400);
  line-height: 1;
  margin-bottom: 28px;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.benefit-card__desc {
  font-size: 14px;
  color: var(--color-brown-600);
  line-height: 1.6;
}

/* ============================================================
   SECTION: УРОВНИ ПРОДУКТОВ (Pricing)
   ============================================================ */
.section-ladder {
  padding: 80px 0;
  background-color: var(--color-white);
}

.section-ladder__head {
  text-align: center;
  margin-bottom: 32px;
}

.section-ladder__title {
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.14;
  color: var(--color-brown-900);
  margin-bottom: 12px;
}
.section-ladder__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-ladder__subtitle {
  font-size: 17px;
  color: var(--color-brown-600);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.section-ladder__grid {
  display: grid;
  grid-template-columns: repeat(4, 285px);
  gap: 20px;
  align-items: end;
  justify-content: center;
}

.pricing-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  padding: 36px 28px;
  width: 285px;
  height: 434px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--color-accent);
  border-width: 1.5px;
  background-color: var(--color-accent-bg-soft);
  padding: 50px 28px 36px;
  height: 448px;
  box-shadow: 0px 12px 28px 0px rgba(217, 79, 43, 0.16);
}

.pricing-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(212, 82, 42, 0.08);
  border: 1px solid rgba(212, 82, 42, 0.15);
  color: #D4522A;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.pricing-card__level {
  font-size: var(--text-xxs);
  font-weight: 700;
  color: var(--color-brown-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-card__level { color: var(--color-accent); }

.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brown-900);
  margin-bottom: 4px;
}

.pricing-card__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  line-height: 1.1;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #5F5A55;
  line-height: 1.5;
}
.pricing-card__feature::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
}

.pricing-card .btn {
  width: 227px;
  height: 48px;
  margin-top: auto;
  font-family: 'Instrument Sans', var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  flex-shrink: 0;
  padding: 0;
}

/* ============================================================
   SECTION: КАТАЛОГ
   ============================================================ */
.section-catalog {
  padding: 80px 0;
  background-color: var(--color-white);
}

.section-catalog__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.section-catalog__head-footer {
  display: flex;
  justify-content: flex-end;
}

.section-catalog__title {
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-brown-900);
  margin-bottom: 16px;
  white-space: nowrap;
}
.section-catalog__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-catalog__subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-brown-600);
  line-height: 1.6;
  margin-bottom: 0;
}

.section-catalog__all-btn {
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  height: 58px;
  padding: 0 28px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(26, 23, 19, 0.12);
  color: #1A1713;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.section-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-beige-300);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(26,23,19,0.09);
  transform: translateY(-2px);
}

.product-card__preview {
  height: 196px;
  display: flex;
  align-items: stretch;
  padding: 20px;
}
.product-card__preview--green  { background: #E8F5ED; }
.product-card__preview--orange { background: #FFF0E8; }
.product-card__preview--purple { background: #F2EEFF; }

/* 5-block preview grid: 2 top + 3 bottom */
.product-card__preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  width: 100%;
  height: 100%;
}
.product-card__preview-block { border-radius: 8px; }

.product-card__preview-block:nth-child(1) { grid-column: span 3; }
.product-card__preview-block:nth-child(2) { grid-column: span 3; }
.product-card__preview-block:nth-child(3) { grid-column: span 2; }
.product-card__preview-block:nth-child(4) { grid-column: span 2; }
.product-card__preview-block:nth-child(5) { grid-column: span 2; }

/* Green blocks */
.product-card__preview--green  .product-card__preview-block:nth-child(1) { background-color: #6ABF8A; }
.product-card__preview--green  .product-card__preview-block:nth-child(2) { background-color: #A5D9B8; }
.product-card__preview--green  .product-card__preview-block:nth-child(3) { background-color: #A5D9B8; }
.product-card__preview--green  .product-card__preview-block:nth-child(4) { background-color: #C8E8D5; }
.product-card__preview--green  .product-card__preview-block:nth-child(5) { background-color: #3A9E5F; }

/* Orange blocks */
.product-card__preview--orange .product-card__preview-block:nth-child(1) { background-color: #F0A070; }
.product-card__preview--orange .product-card__preview-block:nth-child(2) { background-color: #F5C4A5; }
.product-card__preview--orange .product-card__preview-block:nth-child(3) { background-color: #D97040; }
.product-card__preview--orange .product-card__preview-block:nth-child(4) { background-color: #F0A070; }
.product-card__preview--orange .product-card__preview-block:nth-child(5) { background-color: #FDE8D8; }

/* Purple blocks */
.product-card__preview--purple .product-card__preview-block:nth-child(1) { background-color: #B09ADE; }
.product-card__preview--purple .product-card__preview-block:nth-child(2) { background-color: #D4C4F0; }
.product-card__preview--purple .product-card__preview-block:nth-child(3) { background-color: #D4C4F0; }
.product-card__preview--purple .product-card__preview-block:nth-child(4) { background-color: #EAE3F8; }
.product-card__preview--purple .product-card__preview-block:nth-child(5) { background-color: #8A6EC8; }

.product-card__body {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--color-beige-200);
}

.product-card__type {
  font-size: var(--text-xxs);
  font-weight: 700;
  color: var(--color-brown-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.product-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brown-900);
  margin-bottom: 4px;
}

.product-card__desc {
  font-size: 14px;
  color: var(--color-brown-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
}

.product-card__btn {
  height: 39px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
  white-space: nowrap;
}

.product-card__btn:hover {
  background-color: #FFF4ED;
  color: #D4522A;
  border-color: rgba(212, 82, 42, 0.2);
}

/* ============================================================
   SECTION: ПОЧЕМУ FIGURA (Why)
   ============================================================ */
.section-why {
  padding: 80px 0;
  background-color: var(--color-white);
}

.section-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-why__title {
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-brown-900);
  margin-bottom: 28px;
}
.section-why__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-why__list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--color-divider);
}
.why-item:last-child { border-bottom: 1px solid var(--color-divider); }

.why-item__num {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-accent);
  padding-top: 3px;
}

.section-why__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.why-item__title {
  font-size: var(--text-base-lg);
  font-weight: 600;
  color: var(--color-brown-900);
  margin-bottom: 4px;
}

.why-item__desc {
  font-size: var(--text-sm);
  color: var(--color-brown-600);
  line-height: 1.6;
}

/* Мокап справа */
.section-why__mockup {
  position: sticky;
  top: 100px;
}

.why-mockup {
  position: relative;
}
.why-mockup__card-bg {
  position: absolute;
  top: -10px;
  left: 12px;
  right: -12px;
  height: 56px;
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-beige-300);
  z-index: 1;
}
.why-mockup__card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-beige-300);
  padding: 16px;
  box-shadow: 0 8px 40px rgba(26,23,19,0.08);
  position: relative;
  z-index: 2;
}

/* Preview с горизонтальными барами */
.why-mockup__preview {
  height: 80px;
  background: #FFF0E8;
  border-radius: 10px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
}
.why-mockup__preview-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-mockup__preview-bar {
  height: 10px;
  border-radius: 4px;
  background-color: #F0A070;
}
.why-mockup__preview-bar--wide  { width: 100%; }
.why-mockup__preview-bar--medium { width: 65%; }

/* Мета-строка: бейдж + кол-во компонентов */
.why-mockup__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.why-mockup__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background-color: var(--color-accent-bg);
  border-radius: var(--radius-full);
  font-size: var(--text-xxs);
  font-weight: 600;
  color: var(--color-accent);
}

.why-mockup__components {
  font-size: var(--text-xxs);
  color: var(--color-brown-400);
}

/* Контентные плашки */
.why-mockup__content-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.why-mockup__content-bar {
  height: 8px;
  border-radius: 4px;
  background-color: #F0DCC0;
}
.why-mockup__content-bar--short { width: 60%; }

.why-mockup__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--color-beige-200);
}
.why-mockup__name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-brown-900);
}
.why-mockup__price {
  font-size: var(--text-base-lg);
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.section-faq {
  padding: 80px 0;
  background-color: var(--color-beige-100);
}

.section-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-faq__title {
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-brown-900);
  margin-bottom: 16px;
}
.section-faq__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-faq__subtitle {
  font-size: 17px;
  color: var(--color-brown-600);
  line-height: 1.6;
}

/* Accordion — shared styles in faq-accordion.css */

/* ============================================================
   SECTION: CTA
   ============================================================ */
.section-cta {
  padding: 64px 0;
  background-color: var(--color-white);
}

.section-cta__inner {
  position: relative;
  overflow: hidden;
  background-color: #FFF8F2;
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-cta__inner::before,
.section-cta__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 450px;
  border-radius: 300px;
  background: radial-gradient(circle, rgba(212, 82, 42, 0.22) 0%, rgba(212, 82, 42, 0.08) 45%, rgba(212, 82, 42, 0) 70%);
  filter: blur(80px);
  opacity: 0.9;
}
.section-cta__inner::before {
  left: -180px;
  bottom: -180px;
}
.section-cta__inner::after {
  right: -180px;
  top: -160px;
}
.section-cta__inner > * {
  position: relative;
  z-index: 1;
}

.section-cta__title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-brown-900);
  max-width: 900px;
}
.section-cta__title em {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.section-cta__subtitle {
  font-size: 17px;
  color: var(--color-brown-600);
  line-height: 1.6;
  max-width: 900px;
}

.section-cta__note {
  font-size: var(--text-xs);
  color: var(--color-brown-400);
  margin-top: 4px;
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner          { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .hero__content        { padding-bottom: 0; }
  .hero__title          { font-size: 40px; }
  .hero__mockup-wrap    { display: none; }

  .section-what__inner  { grid-template-columns: 1fr; gap: 40px; }
  .section-what__title  { font-size: 36px; }

  .section-benefits__title  { font-size: 36px; }
  .section-benefits__grid   { grid-template-columns: 1fr 1fr; }

  .section-ladder__title    { font-size: 36px; }
  .section-ladder__grid     { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

  .section-catalog__title   { font-size: 36px; }
  .section-catalog__grid    { grid-template-columns: 1fr 1fr; }
  .section-catalog__head { flex-direction: column; align-items: flex-start; }

  .section-why__inner   { grid-template-columns: 1fr; gap: 48px; }
  .section-why__title   { font-size: 36px; }
  .section-why__mockup  { position: static; }

  .section-faq__inner   { grid-template-columns: 1fr; gap: 40px; }
  .section-faq__title   { font-size: 36px; }

  .section-cta__inner   { padding: 48px 40px; }
  .section-cta__title   { font-size: 36px; }
}

@media (max-width: 767px) {
  .hero__title          { font-size: 32px; }
  .hero__subtitle       { font-size: 15px; }

  .section-what__title  { font-size: 28px; }
  .section-benefits__title  { font-size: 28px; }
  .section-benefits__grid   { grid-template-columns: 1fr; }

  .section-ladder__title    { font-size: 28px; }
  .section-ladder__grid     { flex-direction: column; align-items: center; }
  .pricing-card,
  .pricing-card--featured   { width: min(285px, calc(100vw - 40px)); }

  .section-catalog__title   { font-size: 26px; white-space: normal; overflow-wrap: break-word; }
  .section-catalog__grid    { grid-template-columns: 1fr; }

  .section-why__mockup      { display: none; }
  .section-why__title   { font-size: 28px; }
  .section-faq__title   { font-size: 28px; }
  .faq-item__btn        { font-size: var(--text-base); }

  .section-cta__inner   { padding: 40px 24px; border-radius: 16px; }
  .section-cta__title   { font-size: 26px; }
}
