/* Home page */

.home-page {
  /* clip не создаёт scrollport; hidden на одной оси превращает другую в auto
     и колесо «залипает» на .home-page вместо скролла документа */
  overflow-x: clip;
}

.home-hero {
  position: relative;
  z-index: 10;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl) 0;
}

.home-hero__inner {
  position: relative;
  background: radial-gradient(95% 95% at 100% 100%, rgba(47, 158, 158, 0.18) 0%, rgba(47, 158, 158, 0.05) 42%, transparent 72%),
    linear-gradient(315deg, var(--ppch-turquoise-soft) 0%, var(--ppch-haze-soft) 58%);
  border: var(--stroke-hair) solid var(--ppch-haze);
  border-radius: var(--radius-xl);
  padding: 52px 56px 40px;
}

.home-hero__overline {
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  max-width: 42rem;
}

.home-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ppch-deep);
  margin: 0;
  max-width: 18ch;
}

.home-hero__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 16px 0 0;
  max-width: 36rem;
}

.home-hero__search {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  background: var(--surface-card);
  border: var(--stroke-medium) solid var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent), var(--shadow-md);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 8px 8px 8px 26px;
  max-width: 720px;
  gap: 12px;
}

.home-hero__search-field {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.home-hero__search-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.home-hero__search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-primary);
  min-width: 0;
  resize: none;
  min-height: 44px;
  max-height: 44px;
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.home-hero__search-input::placeholder {
  color: var(--text-tertiary);
  opacity: 1;
}

.home-hero__search-btn {
  flex-shrink: 0;
  padding: 15px 32px;
  font-size: 16px;
}

.home-hero__tags {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  max-width: 720px;
}

.home-hero__tags-head {
  display: contents;
}

.home-hero__tags-label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-tertiary);
}

.home-hero__tags-scroll {
  display: contents;
  position: relative;
  min-width: 0;
}

.home-hero__tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-hero__tags-hint {
  display: none;
}

.home-hero__tag {
  border: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
  background: rgba(252, 253, 250, 0.72);
  color: var(--ppch-grey-600);
  font-size: 13.5px;
  font-weight: var(--fw-regular);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: none;
}

.home-hero__tag:hover {
  border-color: rgba(47, 158, 158, 0.45);
  color: var(--accent);
  background: var(--surface-card);
  text-decoration: none;
}

.home-hero__tags-more {
  flex-shrink: 0;
  order: 3;
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 2px;
}

.home-hero__tags-more:hover {
  color: var(--accent);
}

.home-entries__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.home-entries > .section__lead {
  max-width: none;
  margin-bottom: var(--space-xl);
}

.home-entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 100%;
  padding: 28px 26px;
  background: var(--surface-card);
  border: var(--stroke-hair) solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard);
}

.home-entry-card:hover {
  border-color: rgba(47, 158, 158, 0.45);
  box-shadow: var(--shadow-md);
}

.home-entry-card--featured {
  background: var(--ppch-deep);
  border-color: var(--ppch-deep);
  color: var(--text-invert);
  box-shadow: var(--shadow-lg);
}

.home-entry-card--featured:hover {
  border-color: var(--ppch-deep);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.home-entry-card--featured .home-entry-card__title,
.home-entry-card--featured .home-entry-card__text {
  color: var(--text-invert);
}

.home-entry-card--featured .home-entry-card__text {
  color: rgba(255, 255, 255, 0.78);
}

.home-entry-card--featured .btn--primary {
  background: var(--surface-card);
  color: var(--ppch-deep);
  border-color: var(--surface-card);
}

.home-entry-card--featured .btn--primary:hover {
  background: var(--ppch-teal-light);
  border-color: var(--ppch-teal-light);
  color: var(--ppch-deep);
}

.home-entry-card__badge {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ppch-deep);
  background: var(--ppch-teal-light);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.home-entry-card__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ppch-deep);
  margin: 0 0 10px;
}

.home-entry-card__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 var(--space-xl);
  flex: 1 1 auto;
}

.home-entry-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* Вся карточка кликабельна за счёт stretched-link; кнопка остаётся видимой */
.home-entry-card__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-entry-card__link {
  align-self: flex-start;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--ppch-deep);
  text-decoration: none;
  border-bottom: var(--stroke-hair) solid var(--border-subtle);
  padding-bottom: 3px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: inherit;
}

/* Общая зона: команда + качество + цифры */
.home-proof {
  max-width: var(--container-wide);
  margin: var(--space-3xl) auto 0;
  padding: 0 var(--space-xl);
}

.home-proof__inner {
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(47, 158, 158, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--ppch-haze-soft) 0%, rgba(252, 253, 250, 0.92) 48%, var(--ppch-turquoise-soft) 100%);
  border: var(--stroke-hair) solid var(--ppch-haze);
  border-radius: var(--radius-xl);
  padding: 48px 52px 36px;
}

.home-proof .home-proof__block.section {
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-proof__block + .home-proof__block {
  margin-top: 40px;
  padding-top: 36px;
  border-top: var(--stroke-hair) solid rgba(27, 43, 45, 0.08);
}

.home-proof__block--stats {
  border-top: none;
  padding-top: 0;
  margin-top: var(--space-3xl);
}

.home-proof__title {
  font-size: clamp(26px, 3vw, 34px);
  width: 80%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-team__card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px 48px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.home-team__content {
  padding-bottom: var(--space-xl);
}

.home-team__badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.home-team__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  color: var(--ppch-deep);
  margin: 0 0 16px;
}

.home-team__text {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 22px;
  max-width: 36rem;
}

.home-team__tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
  max-width: 36rem;
}

.home-team__tag {
  border: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
  background: rgba(252, 253, 250, 0.7);
  color: var(--ppch-grey-700);
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.home-team__mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 420px;
  margin-left: auto;
}

.home-team__avatar-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 50%;
  isolation: isolate;
}

.home-team__avatar-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.home-team__avatar-link:hover,
.home-team__avatar-link:focus-visible {
  z-index: 2;
  text-decoration: none;
}

.home-team__avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ppch-haze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--ppch-deep);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-standard);
}

.home-team__avatar-link:hover .home-team__avatar,
.home-team__avatar-link:focus-visible .home-team__avatar {
  transform: scale(1.04);
}

.home-team__avatar--more {
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 20px;
}

.home-team__avatar-name {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  min-width: max-content;
  max-width: 140px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--ppch-deep);
  color: var(--ppch-white);
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard);
  box-shadow: var(--shadow-md);
}

.home-team__avatar-name::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: var(--ppch-deep);
}

.home-team__avatar-link:hover .home-team__avatar-name,
.home-team__avatar-link:focus-visible .home-team__avatar-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.home-stats__inner {
  background: var(--ppch-deep);
  border-radius: 24px;
  padding: 28px 32px;
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 14px;
}

.home-stats__item {
  text-align: center;
}

.home-stats__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
  color: var(--ppch-white);
  margin-bottom: 8px;
}

.home-stats__item:nth-child(even) .home-stats__value {
  color: var(--ppch-teal-light);
}

.home-stats__label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.74);
}

.home-how__grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  --home-how-gap-x: 40px;
  --home-how-num-size: 44px;
  gap: 28px var(--home-how-gap-x);
  counter-reset: none;
  overflow: visible;
}

.home-how__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  overflow: visible;
}

/* Соединительная линия: от края круга через колонку и gap до следующего круга */
.home-how__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(var(--home-how-num-size) / 2);
  left: var(--home-how-num-size);
  width: calc(100% - var(--home-how-num-size) + var(--home-how-gap-x));
  height: 1px;
  margin-top: -0.5px;
  background: linear-gradient(
    90deg,
    rgba(47, 158, 158, 0.55) 0%,
    rgba(47, 158, 158, 0.2) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.home-how__marker {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
}

.home-how__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--stroke-hair) solid rgba(47, 158, 158, 0.55);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 18px;
  line-height: 1;
  background: var(--surface-page);
  flex-shrink: 0;
}

.home-how__body {
  max-width: 28rem;
}

.home-how__step-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 20px;
  line-height: 1.25;
  color: var(--ppch-deep);
  margin: 0 0 8px;
}

.home-how__step-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.home-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  margin-top: 28px;
  margin-bottom: var(--space-xl);
}

.home-quality__card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: center;
}

.home-quality__card-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 20px;
  color: var(--ppch-deep);
  margin: 0 0 10px;
  padding-top: 14px;
  border-top: 2px solid rgba(47, 158, 158, 0.35);
}

.home-quality__card-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.home-club__inner {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(47, 158, 158, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(15, 125, 116, 0.1) 0%, transparent 50%),
    var(--ppch-haze);
  border: var(--stroke-hair) solid rgba(15, 125, 116, 0.12);
  border-radius: 32px;
  padding: 48px 52px 56px;
  overflow: hidden;
}

.home-club__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.home-club__badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ppch-deep);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: var(--stroke-hair) solid rgba(255, 255, 255, 0.55);
  margin: 0;
}

.home-club__schedule {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--ppch-deep);
  text-decoration: none;
  padding: 8px 4px;
  flex-shrink: 0;
}

.home-club__schedule:hover {
  color: var(--accent);
  text-decoration: underline;
}

.home-club__nearest {
  margin: 0 0 24px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: var(--stroke-hair) solid rgba(15, 125, 116, 0.14);
}

.home-club__nearest-label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.home-club__nearest-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--fw-medium);
  color: var(--ppch-deep);
  margin: 0 0 10px;
  line-height: 1.25;
}

.home-club__nearest-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.home-club__cta {
  margin: 0;
  flex-shrink: 0;
}

.home-club__enter {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ppch-white);
  cursor: pointer;
  text-decoration: none;
  isolation: isolate;
}

.home-club__enter-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, rgba(47, 158, 158, 0.55), rgba(255, 255, 255, 0.35), rgba(15, 125, 116, 0.7), rgba(47, 158, 158, 0.35));
  opacity: 0.95;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-base);
}

.home-club__enter-ring::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ppch-haze);
}

.home-club__enter-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 78px;
  height: 78px;
  padding: 0 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.22) 0%, transparent 42%),
    linear-gradient(155deg, #1a4a4e 0%, var(--ppch-deep) 48%, #0f7d74 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 28px rgba(15, 125, 116, 0.32),
    0 4px 10px rgba(27, 43, 45, 0.16);
  transition:
    transform var(--dur-base) var(--ease-standard),
    box-shadow var(--dur-base) var(--ease-standard);
  white-space: nowrap;
}

.home-club__enter-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.home-club__enter-arrow {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  opacity: 0.92;
  transition: transform var(--dur-base) var(--ease-out);
}

.home-club__enter:hover,
.home-club__enter:focus-visible {
  text-decoration: none;
  color: var(--ppch-white);
  outline: none;
}

.home-club__enter:hover .home-club__enter-ring,
.home-club__enter:focus-visible .home-club__enter-ring {
  transform: rotate(28deg) scale(1.04);
  opacity: 1;
}

.home-club__enter:hover .home-club__enter-core,
.home-club__enter:focus-visible .home-club__enter-core {
  transform: scale(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 16px 36px rgba(15, 125, 116, 0.4),
    0 6px 14px rgba(27, 43, 45, 0.18);
}

.home-club__enter:hover .home-club__enter-arrow,
.home-club__enter:focus-visible .home-club__enter-arrow {
  transform: translateX(3px);
}

.home-club__enter:active .home-club__enter-core {
  transform: scale(0.97);
}

.home-club__enter:focus-visible .home-club__enter-ring {
  box-shadow: 0 0 0 3px rgba(47, 158, 158, 0.45);
}

.home-club__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 36px;
  line-height: 1.12;
  color: var(--ppch-deep);
  margin: 0 0 18px;
  max-width: 680px;
}

.home-club__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ppch-grey-700);
  margin: 0 0 40px;
  max-width: 660px;
}

.home-club__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-club__feature {
  background: rgba(252, 253, 250, 0.88);
  backdrop-filter: blur(6px);
  border: var(--stroke-hair) solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base);
}

.home-club__feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.home-club__feature-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 19px;
  color: var(--ppch-deep);
  margin: 0 0 10px;
}

.home-club__feature-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 720px) {
  .home-club__inner {
    display: flex;
    flex-direction: column;
    padding: 28px 20px 32px;
  }

  .home-club__top {
    order: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }

  .home-club__nearest {
    order: 2;
    margin-bottom: 20px;
  }

  .home-club__title {
    order: 3;
    font-size: clamp(26px, 7vw, 32px);
  }

  .home-club__text {
    order: 4;
  }

  .home-club__features {
    order: 5;
  }

  .home-club__schedule {
    font-size: 14.5px;
  }
}

.home-requests__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.home-requests__link {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--accent);
  text-decoration: none;
}

.home-requests__link:hover {
  text-decoration: underline;
}

.home-requests__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
}

.home-requests__group {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-width: 0;
}

.home-requests__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: default;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: none;
  color: var(--ppch-deep);
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
}

@media (min-width: 721px) {
  .home-requests__link {
    display: none;
  }

  .home-requests__group-title {
    pointer-events: none;
  }

  .home-requests__tags[hidden] {
    display: flex !important;
  }
}

.home-requests__group-title-text {
  min-width: 0;
}

.home-requests__group-icon {
  display: none;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--dur-fast) var(--ease-standard);
  flex-shrink: 0;
  opacity: 0.55;
}

.home-requests__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.home-requests__tag {
  display: inline-flex;
  align-items: center;
  border: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
  background: rgba(252, 253, 250, 0.8);
  color: var(--ppch-grey-700);
  font-size: 14px;
  font-weight: var(--fw-regular);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition:
    color var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard),
    background var(--dur-fast) var(--ease-standard);
}

.home-requests__tag:hover,
.home-requests__tag:focus-visible {
  border-color: rgba(47, 158, 158, 0.45);
  color: var(--accent);
  background: var(--surface-card);
  text-decoration: none;
}

.home-approaches__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.home-approaches__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 10px 0 0;
  max-width: 520px;
}

.home-approaches__link {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--accent);
  text-decoration: none;
}

.home-approaches__link:hover {
  text-decoration: underline;
}

.home-approaches__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: stretch;
  overflow: visible;
}

.home-approaches__item {
  position: relative;
  min-width: 0;
  display: flex;
  height: 100%;
}

.home-approaches__item:hover,
.home-approaches__item:focus-within {
  z-index: 2;
}

.home-approaches__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 42px;
  box-sizing: border-box;
  border: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
  background: rgba(252, 253, 250, 0.8);
  color: var(--ppch-grey-700);
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.35;
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
  transition:
    color var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard),
    background var(--dur-fast) var(--ease-standard);
}

.home-approaches__tag:hover,
.home-approaches__tag:focus-visible {
  border-color: rgba(47, 158, 158, 0.45);
  color: var(--accent);
  background: var(--surface-card);
  text-decoration: none;
}

.home-approaches__tip {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 3;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity var(--dur-fast) var(--ease-standard),
    visibility var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.home-approaches__item:hover .home-approaches__tip,
.home-approaches__item:focus-within .home-approaches__tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-approaches__more {
  display: none;
}

.home-tests__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.home-tests__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 100%;
  background: var(--surface-card);
  border: var(--stroke-hair) solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard);
}

.home-tests__card:hover,
.home-tests__card:focus-within {
  border-color: rgba(47, 158, 158, 0.35);
  box-shadow: var(--shadow-md);
}

.home-tests__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--accent);
  margin-bottom: 14px;
}

.home-tests__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 25px;
  line-height: 1.2;
  color: var(--ppch-deep);
  margin: 0 0 12px;
}

.home-tests__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 24px;
  max-width: 440px;
  flex: 1 1 auto;
}

.home-tests__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* Вся карточка ведёт на тест (якорь — position: relative у карточки) */
.home-tests__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* —— Founder (editorial, не карточка продукта) —— */

.home-founder {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.home-founder__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  grid-template-areas:
    'intro media'
    'body media';
  column-gap: 56px;
  row-gap: 20px;
  align-items: start;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.home-founder__intro {
  grid-area: intro;
  max-width: 28rem;
}

.home-founder__body {
  grid-area: body;
  max-width: 34rem;
  padding-top: 4px;
}

.home-founder__overline {
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.home-founder__name {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ppch-deep);
  margin: 0 0 12px;
  text-wrap: balance;
}

.home-founder__role {
  font-size: 18px;
  font-weight: var(--fw-medium);
  line-height: 1.45;
  color: var(--accent);
  margin: 0;
}

.home-founder__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.home-founder__text:last-of-type {
  margin-bottom: 0;
}

.home-founder__social {
  margin-top: 28px;
  padding-top: 22px;
  border-top: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
}

.home-founder__social-label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.home-founder__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-founder__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 158, 158, 0.1);
  color: var(--ppch-deep);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.home-founder__social-link:hover {
  background: var(--surface-accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

.home-founder__media {
  grid-area: media;
  margin: 0;
  align-self: stretch;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(47, 158, 158, 0.12) 0%, transparent 45%),
    var(--ppch-haze-soft);
}

.home-founder__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.home-journal__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.home-journal__access {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 42rem;
}

.home-journal__archive-link {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  flex-shrink: 0;
}

.home-journal__archive-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.home-journal__subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: start;
  max-width: 560px;
  margin: 0 0 36px;
}

.home-journal__email {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: var(--stroke-hair) solid var(--border-subtle);
  border-radius: 14px;
  background: var(--surface-card);
  font: inherit;
  font-size: 16px;
  color: var(--ppch-deep);
}

.home-journal__email:focus {
  outline: none;
  border-color: rgba(47, 158, 158, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 158, 158, 0.16);
}

.home-journal__submit {
  min-height: 48px;
  white-space: nowrap;
}

.home-journal__subscribe-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--accent);
}

.home-journal__subscribe-status.is-error {
  color: #b42318;
}

.home-journal__subscribe.is-success .home-journal__email,
.home-journal__subscribe.is-success .home-journal__submit {
  display: none;
}

.home-journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  width: 100%;
}

.home-faq__testimonial {
  max-width: 880px;
  margin: 0 0 28px;
}

.home-testimonial {
  background: var(--ppch-deep);
  border-radius: 28px;
  padding: 42px 40px;
  margin: 0;
}

.home-testimonial__quote {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ppch-white);
  margin: 0 0 28px;
}

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

.home-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ppch-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ppch-deep);
  font-size: 18px;
}

.home-testimonial__name {
  font-size: 15.5px;
  font-weight: var(--fw-medium);
  color: var(--ppch-white);
}

.home-testimonial__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.home-faq__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.15;
  color: var(--ppch-deep);
  margin: 0 0 28px;
}

.faq-item {
  background: var(--surface-card);
  border: var(--stroke-hair) solid var(--border-subtle);
  border-radius: 18px;
  margin: 0;
  overflow: clip;
  overflow-anchor: none;
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--ppch-deep);
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item__question::-webkit-details-marker,
.faq-item__question::marker {
  display: none;
  content: '';
}

.faq-item__question-text {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--ppch-haze-soft);
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--ppch-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  padding: 0 22px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-item__answer-inner {
  max-width: 62ch;
}

.home-cta__inner {
  background: linear-gradient(120deg, var(--accent) 0%, var(--ppch-deep) 38%, var(--ppch-deep-press) 55%, var(--ppch-deep) 72%, var(--accent) 100%);
  background-size: 280% 280%;
  border-radius: 32px;
  padding: 64px 56px;
  text-align: center;
}

.home-cta__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 40px;
  line-height: 1.08;
  color: var(--ppch-white);
  margin: 0 auto 16px;
  max-width: 620px;
}

.home-cta__subtitle {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 520px;
}

@media (max-width: 1100px) {
  .home-entries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-entry-card {
    padding: 22px 18px;
  }

  .home-entry-card__title {
    font-size: 19px;
  }

  .home-entry-card__text {
    font-size: 14px;
  }

  .home-how__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    --home-how-gap-x: 28px;
    gap: 24px var(--home-how-gap-x);
  }

  .home-club__features,
  .home-tests__grid,
  .home-journal__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-requests__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

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

  .home-proof {
    padding: 0 var(--space-md);
  }

  .home-proof__inner {
    padding: 36px 28px 28px;
  }

  .home-team__card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-team__content {
    order: 0;
  }

  .home-team__mosaic {
    order: 1;
    max-width: 360px;
    margin-left: 0;
  }

  .home-team__avatar-name {
    display: none;
  }

  .home-quality__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

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

  .home-founder__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro'
      'media'
      'body';
    gap: 22px;
  }

  .home-founder__intro,
  .home-founder__body {
    max-width: none;
  }

  .home-founder__media {
    min-height: 0;
    width: 100%;
    max-width: none;
    border-radius: 20px;
  }

  .home-founder__photo {
    min-height: 0;
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .home-founder__role {
    font-size: 16.5px;
  }

  .home-founder__text {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  .home-hero {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .home-hero__inner {
    padding: 36px 22px 28px;
  }

  .home-hero__title {
    font-size: clamp(28px, 7vw, 40px);
    max-width: 14ch;
  }

  .home-hero__subtitle {
    font-size: 16.5px;
    margin-top: 12px;
    max-width: 34rem;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding-top: var(--space-md);
  }

  .home-hero__inner {
    padding: 32px 20px 24px;
  }

  .home-hero__search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 14px;
    gap: 12px;
    max-width: none;
  }

  .home-hero__search-field {
    align-items: flex-start;
  }

  .home-hero__search-icon {
    margin-top: 10px;
  }

  .home-hero__search-input {
    min-height: 88px;
    max-height: 160px;
    white-space: pre-wrap;
    overflow-y: auto;
    text-overflow: unset;
    font-size: 17px;
    line-height: 1.45;
    padding: 8px 0;
    field-sizing: content;
  }

  .home-hero__search-btn {
    width: 100%;
    min-height: 48px;
    position: sticky;
    bottom: env(safe-area-inset-bottom, 0px);
  }

  .home-hero__search .btn {
    width: 100%;
  }

  .home-hero__tags {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    max-width: none;
    gap: 12px;
    margin-top: 16px;
  }

  .home-hero__tags-head {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .home-hero__tags-more {
    order: unset;
    margin-left: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .home-hero__tags-scroll {
    display: block;
    margin-inline: -20px;
  }

  .home-hero__tags-scroll.is-scrollable::before,
  .home-hero__tags-scroll.is-scrollable::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .home-hero__tags-scroll.is-scrollable::before {
    left: 0;
    background: linear-gradient(90deg, rgba(232, 244, 242, 0.98) 10%, transparent);
  }

  .home-hero__tags-scroll.is-scrollable::after {
    right: 0;
    background: linear-gradient(270deg, rgba(232, 244, 242, 0.98) 18%, transparent);
  }

  .home-hero__tags-scroll.can-scroll-left::before,
  .home-hero__tags-scroll.can-scroll-right::after {
    opacity: 1;
  }

  .home-hero__tags-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 2px 20px 4px;
    gap: 8px;
  }

  .home-hero__tags-row::-webkit-scrollbar {
    display: none;
  }

  .home-hero__tags-row.is-nudging {
    animation: home-hero-tags-nudge 1.1s ease 0.35s 1 both;
  }

  @keyframes home-hero-tags-nudge {
    0%,
    100% {
      transform: translateX(0);
    }
    35% {
      transform: translateX(-18px);
    }
    70% {
      transform: translateX(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .home-hero__tags-row.is-nudging {
      animation: none;
    }
  }

  .home-hero__tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    scroll-snap-align: start;
  }

  .home-hero__tags-hint {
    display: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(252, 253, 250, 0.92);
    border: var(--stroke-hair) solid rgba(27, 43, 45, 0.1);
    color: var(--ppch-deep);
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .home-hero__tags-scroll.can-scroll-right .home-hero__tags-hint {
    display: inline-flex;
    opacity: 1;
  }

  .home-hero__tags-scroll.can-scroll-right .home-hero__tags-hint {
    animation: home-hero-tags-hint-pulse 1.6s ease-in-out infinite;
  }

  @keyframes home-hero-tags-hint-pulse {
    0%,
    100% {
      transform: translateY(-50%) translateX(0);
    }
    50% {
      transform: translateY(-50%) translateX(3px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .home-hero__tags-scroll.can-scroll-right .home-hero__tags-hint {
      animation: none;
    }
  }

  .home-entries__grid,
  .home-quality__grid,
  .home-club__features,
  .home-tests__grid,
  .home-journal__grid {
    grid-template-columns: 1fr;
  }

  .home-faq__list,
  .home-faq__testimonial {
    max-width: none;
  }

  .faq-item__question {
    min-height: 56px;
    align-items: center;
    padding: 16px 16px 16px 18px;
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .home-journal__subscribe {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .home-journal__submit {
    width: 100%;
  }

  .home-entries__grid {
    gap: 12px;
  }

  .home-requests__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-requests__group {
    background: var(--surface-card);
    border: var(--stroke-hair) solid var(--border-subtle);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
  }

  .home-requests__group-title {
    cursor: pointer;
    pointer-events: auto;
    margin: 0;
    padding: 14px 16px;
    border-bottom: none;
    font-size: 17px;
    min-height: 48px;
  }

  .home-requests__group.is-open .home-requests__group-title {
    border-bottom: var(--stroke-hair) solid rgba(27, 43, 45, 0.08);
  }

  .home-requests__group-icon {
    display: block;
  }

  .home-requests__group.is-open .home-requests__group-icon {
    transform: rotate(225deg);
    margin-top: 4px;
  }

  .home-requests__group:not(.is-open) .home-requests__tags,
  .home-requests__tags[hidden] {
    display: none;
  }

  .home-requests__tags {
    padding: 12px 16px 16px;
    gap: 8px;
  }

  .home-requests__tag {
    font-size: 14px;
    padding: 8px 12px;
  }

  .home-approaches__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-approaches__grid:not(.is-expanded) .home-approaches__item:nth-child(n + 7) {
    display: none;
  }

  .home-approaches__tag {
    min-height: 44px;
    padding: 10px 12px;
  }

  .home-approaches__tip {
    display: none;
  }

  .home-approaches__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-height: 44px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 15px;
    font-weight: var(--fw-medium);
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
  }

  .home-approaches__more:hover,
  .home-approaches__more:focus-visible {
    text-decoration: underline;
  }

  .home-approaches__grid.is-expanded ~ .home-approaches__more {
    display: none;
  }

  .home-how {
    padding-top: var(--space-2xl);
  }

  .home-how .section__title {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 8px;
  }

  .home-how__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
    position: relative;
  }

  .home-how__step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding-bottom: 18px;
  }

  .home-how__step:last-child {
    padding-bottom: 0;
  }

  .home-how__marker {
    width: 40px;
    justify-content: center;
  }

  /* На мобиле горизонтальную линию скрываем — остаётся вертикальная ::before */
  .home-how__step:not(:last-child)::after {
    display: none;
  }

  .home-how__step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(47, 158, 158, 0.5) 0%,
      rgba(47, 158, 158, 0.15) 100%
    );
    pointer-events: none;
  }

  .home-how__num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .home-how__step-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .home-how__step-text {
    font-size: 14.5px;
  }

  .home-proof {
    margin-top: var(--space-2xl);
    padding: 0 var(--space-md);
  }

  .home-proof__inner {
    padding: 28px 18px 20px;
    border-radius: 24px;
  }

  .home-proof__block + .home-proof__block {
    margin-top: 28px;
    padding-top: 24px;
  }

  .home-proof__block--stats {
    margin-top: var(--space-2xl);
  }

  .home-team__card {
    gap: 20px;
  }

  .home-team__mosaic {
    max-width: 320px;
    gap: 10px;
  }

  /* Один набор на сессию: на мобиле показываем меньше аватаров, «все» остаётся */
  .home-team__avatar-link:not(.home-team__avatar-link--more):nth-child(n+6) {
    display: none;
  }

  .home-team__avatar {
    font-size: 16px;
    min-width: 72px;
    min-height: 72px;
  }

  .home-team__avatar--more {
    font-size: 17px;
  }

  .home-team__avatar-name {
    display: none;
  }

  .home-quality__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .home-stats__inner {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .home-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    margin-top: 10px;
  }

  .home-stats__value {
    font-size: clamp(28px, 9vw, 36px);
    margin-bottom: 6px;
  }

  .home-stats__label {
    font-size: 13px;
  }

  .home-entry-card--featured {
    order: -1;
  }

  .home-entry-card {
    padding: 18px 16px;
  }

  .home-entry-card__title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .home-entry-card__text {
    font-size: 14.5px;
  }

  .home-entry-card__cta {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    margin-top: 16px;
  }

  .home-tests__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-tests__card {
    padding: 22px 20px;
  }

  .home-tests__title {
    font-size: 22px;
  }

  .home-tests__text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .home-tests__cta {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }

  .home-cta__inner {
    padding: 36px 24px;
  }

  .home-cta__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .home-testimonial {
    padding: 28px 22px;
  }
}
