/**
 * Главная страница (Figma node 1531:16222).
 *
 * Desktop (1280px+): контент 1200px по центру, без бокового padding у .bc-container.
 * Малый десктоп (≤1279px): боковые поля 20px (кроме hero).
 * Планшет (≤1023px): боковые поля 40px (кроме hero).
 * Малая мобилка (≤559px): боковые поля 20px (кроме hero).
 *
 * @package Bloomcare
 */

body.bc-home-page {
	background: #fff;
	scroll-behavior: smooth;
}

body.bc-home-page .site-footer {
	margin-top: 0;
}

.bc-home {
	--bc-home-pad-x: 20px;
	--bc-home-h2-size: 44px;
	--bc-home-h2-lh: 1.15;
	--bc-home-h2-ls: -0.88px;
	--bc-home-h3-size: 36px;
	--bc-home-h3-lh: 1.2;
	--bc-home-h3-ls: -0.72px;
	--bc-home-body-20-lh: 1.4;
	--bc-home-serif-features: "CTGR" 0, "wdth" 100;
	--bc-home-num-features: "lnum" 1, "pnum" 1;
	width: 100%;
	overflow-x: clip;
}

.bc-home .bc-container {
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--bc-home-pad-x);
	padding-right: var(--bc-home-pad-x);
}

.bc-home__band--accent {
	display: flex;
	flex-direction: column;
	gap: 32px;
	background: #a63d52;
	border-radius: 0 0 100px 100px;
	padding-bottom: 40px;
}

.bc-home__band--light {
	background: #fff;
	border-radius: 100px 100px 0 0;
	margin-top: -1px;
}

.bc-home__band--peach {
	background: #fff3eb;
	border-radius: 100px 100px 100px 100px;
}

.bc-home__band--peach .bc-home-about {
	border-radius: 0 0 100px 100px;
}

.bc-home__band--white {
	background: #fff;
}

/* --- Hero (Figma 1665:7385, desktop 1280+) --- */
.bc-home-hero {
	padding: 0;
	height: 628px;
	min-height: 628px;
	border-radius: 0 0 100px 100px;
	background: url("../../images/home/hero-bg.png") center / cover no-repeat;
	overflow: hidden;
}

.bc-home-hero__inner {
	display: flex;
	align-items: stretch;
	gap: 80px;
	box-sizing: border-box;
	height: 100%;
	min-height: 628px;
	padding: 0;
}

@media (min-width: 1280px) {
	.bc-home-hero__inner.bc-container {
		padding-left: 0;
		padding-right: 0;
	}
}

.bc-home-hero__content {
	display: flex;
	flex: 0 0 612px;
	flex-direction: column;
	gap: 36px;
	align-items: flex-start;
	align-self: center;
	width: 612px;
	min-width: 0;
}

.bc-home-hero__head {
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: flex-start;
	width: 100%;
}

.bc-home-hero__intro {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
	width: 100%;
}

.bc-home-hero__title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: 50px;
	line-height: 1.1;
	font-variation-settings: var(--bc-home-serif-features);
	font-feature-settings: var(--bc-home-num-features);
	color: #3f2b22;
}

.bc-home-hero__title-accent {
	color: #cc7c61;
}

.bc-home-hero__lead {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-hero__btn {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 16px 40px;
	border: none;
	border-radius: 22px;
	background: #cc7c61;
	color: #fff;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	font-feature-settings: var(--bc-home-num-features);
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.bc-home-hero__btn:hover {
	background: #b86d54;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.bc-home-hero__btn:focus-visible {
	outline: 2px solid #3f2b22;
	outline-offset: 3px;
}

.bc-home-hero__btn-icon {
	display: flex;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
}

.bc-home-hero__btn-icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.bc-home-hero__stats {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.bc-home-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}

.bc-home-hero__stat-head {
	display: flex;
	gap: 8px;
	align-items: center;
}

.bc-home-hero__stat-icon {
	display: block;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
}

.bc-home-hero__stat-value {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.25;
	letter-spacing: -0.34px;
	font-variation-settings: var(--bc-home-serif-features);
	font-feature-settings: var(--bc-home-num-features);
	color: #a63d52;
}

.bc-home-hero__stat-label {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-hero__visual {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	align-self: stretch;
	min-width: 0;
	min-height: 100%;
	max-width: 519px;
	margin-left: auto;
}

.bc-home-hero__photo {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: top center;
}

.bc-home-hero__badge {
	position: absolute;
	left: 118px;
	bottom: 18px;
	box-sizing: border-box;
	width: min(373px, calc(100% - 118px));
	padding: 20px 28px;
	border-radius: 28px;
	background: #fff;
}

.bc-home-hero__badge-name {
	margin: 0 0 14px;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.15;
	font-variation-settings: var(--bc-home-serif-features);
	font-feature-settings: var(--bc-home-num-features);
	color: #cc7c61;
}

.bc-home-hero__badge-role {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

/* --- Checkup --- */
.bc-home-checkup {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.5vw, 48px);
	flex-wrap: wrap;
	padding-top: 0;
}

.bc-home-checkup__title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: clamp(24px, 2.5vw, var(--bc-home-h3-size));
	line-height: 1.15;
	letter-spacing: var(--bc-home-h3-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #fff;
	text-align: center;
}

.bc-home-checkup__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	border: none;
	border-radius: 22px;
	background: #fff;
	color: #454545;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: clamp(18px, 1.15vw, 22px);
	line-height: 1.2;
	font-feature-settings: var(--bc-home-num-features);
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.bc-home-checkup__btn:hover {
	background: #fef5ed;
	color: #454545;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.bc-home-checkup__btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* --- Symptoms --- */
.bc-home-symptoms {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	padding-top: 130px;
	padding-bottom: 0;
	text-align: center;
}

.bc-home-symptoms__title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: var(--bc-home-h3-size);
	line-height: var(--bc-home-h3-lh);
	letter-spacing: var(--bc-home-h3-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #3f2b22;
}

.bc-home-symptoms__list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bc-home-symptoms__item {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px 12px 12px;
	border-radius: 500px;
	background: #fef5ed;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 20px;
	line-height: var(--bc-home-body-20-lh);
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
	white-space: nowrap;
}

.bc-home-symptoms__item::before {
	content: "";
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #a63d52;
}

/* --- Pelvic floor --- */
.bc-home-pelvic {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 100px;
	padding: 4px;
	padding-bottom: 65px;
	border-radius: 40px;
	overflow: hidden;
}

.bc-home-pelvic__media {
	flex: 0 0 546px;
	width: 546px;
	max-width: 546px;
	height: 411px;
	border-radius: 36px;
	overflow: hidden;
}

.bc-home-pelvic__img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 36px;
	object-fit: cover;
}

.bc-home-pelvic__content {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
	min-width: 0;
	padding: 0 38px;
}

.bc-home-pelvic__title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: var(--bc-home-h2-size);
	line-height: var(--bc-home-h2-lh);
	letter-spacing: var(--bc-home-h2-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #1e1e1e;
}

.bc-home-pelvic__text {
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 20px;
	line-height: var(--bc-home-body-20-lh);
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
	opacity: 0.9;
}

.bc-home-pelvic__text p {
	margin: 0;
}

.bc-home-pelvic__text p + p {
	margin-top: 1.4em;
}

/* --- Training stages --- */
.bc-home-stages {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding-top: 65px;
	padding-bottom: 130px;
}

.bc-home-stages__head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	margin-bottom: 0;
	text-align: center;
}

.bc-home-stages__title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: var(--bc-home-h2-size);
	line-height: var(--bc-home-h2-lh);
	letter-spacing: var(--bc-home-h2-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #3f2b22;
}

.bc-home-stages__lead {
	margin: 0 auto;
	max-width: 775px;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 20px;
	line-height: var(--bc-home-body-20-lh);
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-stages__layout {
	display: flex;
	gap: 12px;
	align-items: stretch;
	width: 100%;
}

.bc-home-stages__photo {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	border-radius: 36px;
	overflow: hidden;
}

.bc-home-stages__photo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-home-stages__list {
	display: flex;
	flex: 0 0 648px;
	flex-direction: column;
	gap: 12px;
	width: 648px;
	max-width: 648px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bc-home-stages__item {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	padding: 32px;
	border-radius: 36px;
	background: #fef5ed;
}

.bc-home-stages__item-body {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.bc-home-stages__item-title {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 26px;
	line-height: 1.2;
	font-feature-settings: var(--bc-home-num-features);
	color: #3f2b22;
}

.bc-home-stages__item-text {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 20px;
	line-height: var(--bc-home-body-20-lh);
	font-feature-settings: var(--bc-home-num-features);
	color: #636363;
}

.bc-home-stages__step {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
}

.bc-home-stages__step-img {
	display: block;
	width: 52px;
	height: 52px;
}

/* --- Courses --- */
.bc-home-courses {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding-top: 130px;
	scroll-margin-top: 24px;
}

.bc-home-courses__head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 1066px;
	margin: 0;
	text-align: center;
}

.bc-home-courses__title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: var(--bc-home-h2-size);
	line-height: var(--bc-home-h2-lh);
	letter-spacing: var(--bc-home-h2-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #3f2b22;
}

.bc-home-courses__lead {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 20px;
	line-height: var(--bc-home-body-20-lh);
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-courses__lead strong {
	font-weight: 700;
}

.bc-home-courses__grid {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}

.bc-home-courses__card,
.bc-home-courses__quiz {
	flex: 0 0 392px;
	width: 392px;
	height: 578px;
}

.bc-home-courses__card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	border-radius: 36px;
	overflow: hidden;
	background: #fff;
}

.bc-home-courses__card-media {
	position: relative;
	flex-shrink: 0;
	height: 260px;
	box-sizing: border-box;
}

.bc-home-courses__card-media-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 32px;
	overflow: hidden;
}

.bc-home-courses__card-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-home-courses__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 68px;
	background: #a63d52;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.35;
	font-feature-settings: var(--bc-home-num-features);
	color: #fff;
	white-space: nowrap;
}

.bc-home-courses__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 0;
	padding: 26px;
	box-sizing: border-box;
}

.bc-home-courses__card-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.bc-home-courses__card-title {
	margin: 0;
	max-width: 323px;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	font-feature-settings: var(--bc-home-num-features);
	color: #3f2b22;
}

.bc-home-courses__chips {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	gap: 5px;
	width: 100%;
}

.bc-home-courses__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border: 1px solid #fff;
	border-radius: 68px;
	background: #fdf7f1;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.35;
	font-feature-settings: var(--bc-home-num-features);
	color: #a63d52;
}

.bc-home-courses__btn {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 18px 40px;
	border-radius: 22px;
	background: #cc7c61;
	color: #fff;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	font-feature-settings: var(--bc-home-num-features);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.bc-home-courses__btn:hover {
	background: #b56a52;
	color: #fff;
}

.bc-home-courses__quiz {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 40px;
	padding: 36px;
	border-radius: 36px;
	overflow: hidden;
	background: #cc7c61;
	box-sizing: border-box;
}

.bc-home-courses__quiz-art {
	flex-shrink: 0;
	width: 304px;
	height: 208px;
}

.bc-home-courses__quiz-art-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bc-home-courses__quiz-content {
	display: flex;
	flex: none;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	gap: 24px;
	width: 100%;
	min-height: 0;
}

.bc-home-courses__quiz-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
}

.bc-home-courses__quiz-title {
	margin: 0;
	width: 100%;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.2;
	letter-spacing: -0.64px;
	font-variation-settings: var(--bc-home-serif-features);
	color: #fff;
}

.bc-home-courses__quiz-text {
	margin: 0;
	width: 100%;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #fff;
}

.bc-home-courses__quiz-btn {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	width: 100%;
	min-height: 58px;
	padding: 18px 40px;
	border: none;
	border-radius: 22px;
	background: #fff;
	color: #454545;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	font-feature-settings: var(--bc-home-num-features);
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	box-sizing: border-box;
	transition: background-color 0.2s ease;
}

.bc-home-courses__quiz-btn:hover {
	background: #fef5ed;
	color: #454545;
}

/* --- Results --- */
.bc-home-results {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding-top: 130px;
	padding-bottom: 65px;
}

.bc-home-results__title {
	margin: 0;
	width: 100%;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: var(--bc-home-h2-size);
	line-height: var(--bc-home-h2-lh);
	letter-spacing: var(--bc-home-h2-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #3f2b22;
	text-align: center;
}

.bc-home-results__grid {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.bc-home-results__card {
	position: relative;
	display: flex;
	flex: 0 0 392px;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-end;
	width: 392px;
	height: 320px;
	margin: 0;
	border-radius: 36px;
	overflow: hidden;
}

.bc-home-results__card--wide {
	flex: 0 0 796px;
	width: 796px;
}

.bc-home-results__card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 36px;
	pointer-events: none;
	background: linear-gradient(222.28deg, rgba(102, 102, 102, 0) 48.15%, rgba(0, 0, 0, 0.35) 68.42%);
}

.bc-home-results__card--wide::after {
	background: linear-gradient(204.13deg, rgba(102, 102, 102, 0) 48.15%, rgba(0, 0, 0, 0.35) 68.42%);
}

.bc-home-results__card:nth-child(3)::after {
	background: linear-gradient(198.59deg, rgba(102, 102, 102, 0) 44.93%, rgba(0, 0, 0, 0.45) 66.14%);
}

.bc-home-results__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-home-results__caption {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 20px;
	box-sizing: border-box;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	font-feature-settings: var(--bc-home-num-features);
	color: #fff;
}

/* --- Reviews --- */
.bc-home-reviews {
	padding-top: 65px;
	padding-bottom: 65px;
}

.bc-home-reviews__title {
	margin: 0 0 36px;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: clamp(32px, 3vw, var(--bc-home-h2-size));
	line-height: var(--bc-home-h2-lh);
	letter-spacing: var(--bc-home-h2-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #3f2b22;
	text-align: center;
}

.bc-home-reviews__grid {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.bc-home-reviews__col {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.bc-home-reviews__item {
	margin: 0;
	border: 1px solid #a63d52;
	border-radius: 24px;
	background: #fff;
	overflow: hidden;
}

.bc-home-reviews__item--dark {
	background: #3d3d3f;
}

.bc-home-reviews__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* --- About --- */
.bc-home-about {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 65px;
	padding-bottom: 130px;
}

.bc-home-about__top,
.bc-home-about__middle,
.bc-home-about__clinic {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.bc-home-about__top {
	min-height: 417px;
}

.bc-home-about__author-photo {
	flex: 0 0 455px;
	width: 455px;
	height: 417px;
	border-radius: 28px;
	overflow: hidden;
}

.bc-home-about__author-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-home-about__intro,
.bc-home-about__achievements,
.bc-home-about__partners {
	min-width: 0;
	padding: 32px;
	border-radius: 32px;
	background: #fff;
	box-sizing: border-box;
}

.bc-home-about__intro {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
}

.bc-home-about__name,
.bc-home-about__clinic-title {
	margin: 0;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: var(--bc-home-h3-size);
	line-height: 1.05;
	letter-spacing: var(--bc-home-h3-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #cc7c61;
}

.bc-home-about__bio,
.bc-home-about__mission {
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-about__mission {
	font-weight: 700;
}

.bc-home-about__bio p,
.bc-home-about__mission p {
	margin: 0;
}

.bc-home-about__bio p + p,
.bc-home-about__mission p + p {
	margin-top: 1.4em;
}

.bc-home-about__middle {
	flex-wrap: nowrap;
}

.bc-home-about__achievements,
.bc-home-about__partners {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.bc-home-about__partners {
	flex: 0 0 695px;
	width: 695px;
	justify-content: flex-start;
}

.bc-home-about__achievements {
	flex: 0 0 493px;
	width: 493px;
	justify-content: center;
	align-self: stretch;
}

.bc-home-about__subheading {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	font-feature-settings: var(--bc-home-num-features);
	color: #3f2b22;
}

.bc-home-about__list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bc-home-about__list-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-about__list-item:first-child {
	align-items: center;
}

.bc-home-about__check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.bc-home-about__logos {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 8px;
	width: 100%;
}

.bc-home-about__logo {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bc-home-about__logo img {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: auto;
	max-width: none;
	object-fit: contain;
}

.bc-home-about__logo--kirov {
	gap: 17px;
	justify-content: flex-start;
	padding: 11px 18px;
	border-radius: 20px;
	background: #fef5ed;
}

.bc-home-about__logo--kirov .bc-home-about__logo-mark {
	width: 40px;
	height: 51px;
}

.bc-home-about__logo-label {
	flex-shrink: 0;
	width: 167px;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 13px;
	line-height: 1.2;
	font-feature-settings: var(--bc-home-num-features);
	color: #000;
}

.bc-home-about__logo--msu img {
	width: 77px;
	height: 74px;
}

.bc-home-about__logo--asotb img {
	width: 176px;
	height: 74px;
}

.bc-home-about__logo--partner img {
	width: 214px;
	height: 74px;
}

.bc-home-about__logo--partner-alt img {
	width: 212px;
	height: 74px;
}

.bc-home-about__logo--botkin img {
	width: 198px;
	height: 74px;
}

.bc-home-about__logo--burdenko img {
	width: 398px;
	height: 74px;
}

.bc-home-about__clinic-photo {
	flex: 1 1 563px;
	min-width: 0;
	height: 414px;
	border-radius: 28px;
	overflow: hidden;
}

.bc-home-about__clinic-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-home-about__clinic {
	align-items: stretch;
	min-height: 414px;
}

.bc-home-about__clinic-card {
	display: flex;
	flex: 0 0 625px;
	flex-direction: column;
	gap: 36px;
	width: 625px;
	height: 414px;
	padding: 32px;
	border-radius: 36px;
	background: #fff;
	box-sizing: border-box;
}

.bc-home-about__clinic-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 16px;
	min-height: 0;
	width: 100%;
}

.bc-home-about__clinic-title {
	margin: 0;
}

.bc-home-about__clinic-text {
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-about__clinic-text p {
	margin: 0;
}

.bc-home-about__clinic-text p + p {
	margin-top: 1.4em;
}

.bc-home-about__license {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 91px;
	padding: 24px;
	border-radius: 24px;
	background: #cc7c61;
	overflow: hidden;
}

.bc-home-about__license-text {
	position: relative;
	z-index: 1;
	margin: 0;
	flex: 1 1 0;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.25;
	color: #fff;
}

.bc-home-about__license-doc {
	position: absolute;
	right: 24px;
	top: 50%;
	width: 90px;
	height: auto;
	transform: translateY(-50%) rotate(2deg);
	object-fit: cover;
	opacity: 0.95;
}

/* --- Articles --- */
.bc-home-articles {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 130px;
	padding-bottom: 65px;
}

.bc-home-articles__head {
	max-width: 1066px;
	margin: 0 auto 40px;
	text-align: center;
}

.bc-home-articles__title {
	margin: 0 0 20px;
	font-family: var(--bc-font-serif);
	font-weight: 700;
	font-size: clamp(32px, 3vw, var(--bc-home-h2-size));
	line-height: var(--bc-home-h2-lh);
	letter-spacing: var(--bc-home-h2-ls);
	font-variation-settings: var(--bc-home-serif-features);
	color: #3f2b22;
}

.bc-home-articles__lead {
	margin: 0;
	font-family: var(--bc-font-sans);
	font-weight: 500;
	font-size: clamp(17px, 1.25vw, 20px);
	line-height: var(--bc-home-body-20-lh);
	font-feature-settings: var(--bc-home-num-features);
	color: #454545;
}

.bc-home-articles__grid {
	margin-bottom: 40px;
}

.bc-home-articles .bc-article__more-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	align-items: stretch;
	overflow-x: visible;
}

.bc-home-articles .bc-article__more-card-link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
	min-height: 489px;
	padding: 0 0 28px;
	border-radius: 32px;
	background: #fef5ed;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.bc-home-articles .bc-article__more-card-link:hover {
	background: #fff7f0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.bc-home-articles .bc-article__more-thumb {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 32px;
	overflow: hidden;
	flex-shrink: 0;
}

.bc-home-articles .bc-article__more-body {
	gap: 12px;
	padding: 0 28px;
}

.bc-home-articles .bc-article__more-card-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.1;
	font-variation-settings: var(--bc-home-serif-features);
	font-feature-settings: var(--bc-home-num-features);
}

.bc-home-articles .bc-article__more-excerpt {
	font-weight: 500;
	line-height: 1.45;
}

.bc-home-articles__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0 auto;
	padding: 15px 32px;
	min-height: 60px;
	border-radius: 22px;
	background: #cc7c61;
	color: #fff;
	font-family: var(--bc-font-sans);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.bc-home-articles__btn:hover {
	background: #b56a52;
	color: #fff;
}

.bc-home-articles__btn-icon {
	width: 26px;
	height: 26px;
}

/* --- Desktop (Figma, 1280px+) --- */
@media (min-width: 1280px) {
	.bc-home {
		--bc-home-pad-x: 0;
	}
}

@media (min-width: 1024px) {
	.bc-home-articles .bc-article__more-card:nth-child(4) {
		display: none;
	}
}

/* --- Маленький десктоп (≤1279px) --- */
@media (max-width: 1279px) {
	.bc-home {
		--bc-home-pad-x: 20px;
	}

	/* Accent band + Hero + Checkup — Figma 1665:7469 (1024, малый десктоп). */
	.bc-home__band--accent {
		gap: 24px;
		border-radius: 0 0 48px 48px;
		padding-bottom: 24px;
	}

	.bc-home-hero {
		height: auto;
		min-height: 572px;
		border-radius: 0 0 48px 48px;
	}

	.bc-home-hero__inner {
		position: relative;
		align-items: center;
		gap: 0;
		height: auto;
		min-height: 572px;
		padding: 60px 10px 0;
	}

	.bc-home-hero__inner.bc-container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.bc-home-hero__content {
		position: relative;
		z-index: 1;
		flex: 0 0 525px;
		gap: 24px;
		width: 525px;
		align-self: center;
	}

	.bc-home-hero__head {
		gap: 24px;
	}

	.bc-home-hero__intro {
		gap: 18px;
	}

	.bc-home-hero__title {
		font-size: 43px;
	}

	.bc-home-hero__lead {
		font-size: 18px;
		line-height: 1.4;
	}

	.bc-home-hero__btn {
		padding: 14px 32px;
		border-radius: 18px;
		font-size: 17px;
	}

	.bc-home-hero__btn-icon {
		width: 24px;
		height: 24px;
	}

	.bc-home-hero__stats {
		gap: 28px;
	}

	.bc-home-hero__stat-head {
		gap: 6px;
	}

	.bc-home-hero__stat-icon {
		width: 35px;
		height: 35px;
	}

	.bc-home-hero__stat-value {
		font-size: 28px;
		letter-spacing: -0.28px;
	}

	.bc-home-hero__stat-label {
		font-size: 16px;
	}

	.bc-home-hero__visual {
		position: absolute;
		top: 0;
		right: 10px;
		left: auto;
		flex: none;
		width: 445px;
		max-width: 445px;
		height: 572px;
		min-height: 572px;
		margin-left: 0;
	}

	.bc-home-hero__photo {
		height: 100%;
		min-height: 0;
		object-position: center top;
	}

	.bc-home-hero__badge {
		left: 68px;
		bottom: auto;
		top: 403px;
		width: 345px;
	}

	.bc-home-hero__badge-name {
		margin-bottom: 14px;
		font-size: 21px;
	}

	.bc-home-hero__badge-role {
		font-size: 17px;
	}

	.bc-home-checkup {
		gap: 48px;
		flex-wrap: nowrap;
	}

	.bc-home-checkup__title {
		font-size: 28px;
		line-height: 1.15;
		letter-spacing: -0.56px;
	}

	.bc-home-checkup__btn {
		padding: 16px 32px;
		border-radius: 18px;
		font-size: 17px;
	}

	/* Section spacing — Figma 1579:33533 (1024, между блоками 100px). */
	.bc-home-symptoms {
		padding-top: 100px;
	}

	.bc-home-pelvic {
		margin-top: 100px;
		padding-bottom: 0;
	}

	.bc-home-stages {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.bc-home-courses {
		padding-top: 100px;
	}

	.bc-home-results {
		padding-top: 100px;
		padding-bottom: 0;
	}

	.bc-home-reviews {
		padding-top: 100px;
		padding-bottom: 0;
	}

	.bc-home-about {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.bc-home-articles {
		padding-top: 100px;
		padding-bottom: 50px;
	}

	.bc-home__band--peach {
		border-radius: 40px;
	}

	.bc-home__band--peach .bc-home-about {
		border-radius: 0;
	}

	/* Symptoms — Figma 1579:33535 (984×295, pills 18px). */
	.bc-home-symptoms__item {
		padding: 10px 18px 10px 10px;
		font-size: 18px;
		line-height: 1.4;
	}

	.bc-home-symptoms__item::before {
		width: 20px;
		height: 20px;
	}

	/* Courses — Figma 1579:33557 (984×1287, карточки 320×554). */
	.bc-home-courses__head {
		max-width: none;
	}

	.bc-home-courses__title {
		font-size: var(--bc-home-h3-size);
		line-height: 1.15;
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-courses__lead {
		font-size: 18px;
		line-height: 1.4;
	}

	.bc-home-courses__card,
	.bc-home-courses__quiz {
		flex: 1 1 calc((100% - 24px) / 3);
		width: calc((100% - 24px) / 3);
		min-width: 0;
		height: 554px;
	}

	.bc-home-courses__card {
		border-radius: 32px;
	}

	.bc-home-courses__card-media {
		height: 202px;
	}

	.bc-home-courses__card-media-inner {
		border-radius: 32px;
	}

	.bc-home-courses__card-body {
		padding: 24px 20px;
	}

	.bc-home-courses__card-title {
		max-width: none;
		font-size: 22px;
	}

	.bc-home-courses__btn {
		padding: 16px 32px;
		font-size: 17px;
	}

	.bc-home-courses__quiz {
		gap: 0;
		justify-content: space-between;
		padding: 26px 24px;
	}

	.bc-home-courses__quiz-art {
		width: 100%;
		height: auto;
		aspect-ratio: 304 / 208;
	}

	.bc-home-courses__quiz-title {
		font-size: 26px;
		line-height: 1.2;
		letter-spacing: -0.52px;
	}

	.bc-home-courses__quiz-text {
		font-size: 18px;
		line-height: 1.2;
	}

	.bc-home-courses__quiz-btn {
		min-height: 52px;
		padding: 16px 32px;
		border-radius: 18px;
		font-size: 17px;
	}

	/* Results — Figma 1587:38613 (984×615, карточки 320×261). */
	.bc-home-results__title {
		font-size: var(--bc-home-h3-size);
		line-height: 1.15;
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-results__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.bc-home-results__card {
		flex: none;
		width: auto;
		height: 261px;
	}

	.bc-home-results__card--wide {
		grid-column: span 2;
		flex: none;
		width: auto;
	}

	.bc-home-results__caption {
		font-size: 21px;
	}

	/* Reviews — Figma 1587:38713 (984×1510, колонки 320px). */
	.bc-home-reviews__title {
		margin-bottom: 36px;
		font-size: var(--bc-home-h3-size);
		line-height: 1.15;
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-reviews__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.bc-home-reviews__col {
		flex: none;
		width: auto;
		min-width: 0;
	}

	.bc-home-reviews__col:nth-child(1),
	.bc-home-reviews__col:nth-child(2) {
		gap: 16px;
	}

	.bc-home-reviews__col:nth-child(3) {
		gap: 6px;
	}

	.bc-home-reviews__col:nth-child(1) .bc-home-reviews__item:nth-child(2) {
		border-radius: 23px;
	}

	/* Pelvic floor — Figma 1565:28298 (984×370). */
	.bc-home-pelvic {
		gap: 28px;
	}

	.bc-home-pelvic__media {
		flex: 0 0 478px;
		width: 478px;
		max-width: 478px;
		height: 370px;
	}

	.bc-home-pelvic__content {
		gap: 20px;
		padding: 0;
	}

	.bc-home-pelvic__title {
		font-size: var(--bc-home-h3-size);
		line-height: var(--bc-home-h3-lh);
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-pelvic__text {
		font-size: 18px;
		line-height: 1.4;
	}

	/* Articles — Figma 1565:28362 (3×320px, ряд). */
	.bc-home-articles {
		gap: 40px;
	}

	.bc-home-articles__head {
		max-width: none;
		margin: 0;
	}

	.bc-home-articles__title {
		margin-bottom: 20px;
		font-size: var(--bc-home-h3-size);
		line-height: var(--bc-home-h3-lh);
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-articles__lead {
		font-size: 18px;
	}

	.bc-home-articles__grid {
		margin-bottom: 0;
	}

	.bc-home-articles .bc-article__more-grid {
		flex-wrap: nowrap;
	}

	.bc-home-articles .bc-article__more-card {
		flex: 1 1 0;
		width: auto;
		max-width: none;
		min-width: 0;
	}

	.bc-home-articles .bc-article__more-card-link {
		min-height: 0;
		padding: 0 0 28px;
	}

	.bc-home-articles .bc-article__more-thumb {
		height: 204px;
	}

	.bc-home-articles .bc-article__more-body {
		padding: 0 20px;
	}

	.bc-home-articles .bc-article__more-card-title {
		font-size: 22px;
		line-height: 1.2;
	}

	.bc-home-articles .bc-article__more-excerpt {
		font-size: 16px;
	}

	/* Training stages — Figma 1565:28300 (984px, фото 460px). */
	.bc-home-stages {
		align-items: stretch;
	}

	.bc-home-stages__title {
		font-size: var(--bc-home-h3-size);
		line-height: var(--bc-home-h3-lh);
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-stages__lead {
		font-size: 18px;
	}

	.bc-home-stages__photo {
		flex: 0 0 460px;
		width: 460px;
		max-width: 460px;
	}

	.bc-home-stages__photo-img {
		inset: auto;
		top: 0;
		left: -46%;
		width: 176.45%;
		height: 100%;
		max-width: none;
		object-fit: cover;
	}

	.bc-home-stages__list {
		flex: 1 1 0;
		width: auto;
		max-width: none;
	}

	.bc-home-stages__item {
		gap: 12px;
		padding: 28px;
		border-radius: 32px;
	}

	.bc-home-stages__item-body {
		gap: 12px;
	}

	.bc-home-stages__item-title {
		font-size: 24px;
	}

	.bc-home-stages__item-text {
		font-size: 18px;
		line-height: 1.4;
	}

	.bc-home-stages__step {
		width: 40px;
		height: 40px;
	}

	.bc-home-stages__step-img {
		width: 40px;
		height: 40px;
	}

	/* About — Figma 1565:28361 (984×816, фото 370px). */
	.bc-home-about__top {
		min-height: 414px;
	}

	.bc-home-about__author-photo {
		flex: 0 0 370px;
		width: 370px;
		height: 414px;
		border-radius: 32px;
	}

	.bc-home-about__intro,
	.bc-home-about__achievements,
	.bc-home-about__partners {
		padding: 28px;
	}

	.bc-home-about__name {
		font-size: 32px;
		letter-spacing: -0.64px;
	}

	.bc-home-about__bio {
		font-size: 17px;
		line-height: 1.35;
	}

	.bc-home-about__mission {
		font-size: 17px;
		line-height: 1.4;
	}

	.bc-home-about__bio p + p,
	.bc-home-about__mission p + p {
		margin-top: 1.35em;
	}

	.bc-home-about__partners {
		flex: 1 1 0;
		width: auto;
		max-width: none;
	}

	.bc-home-about__achievements {
		flex: 0 0 434px;
		width: 434px;
		justify-content: flex-start;
	}

	.bc-home-about__achievements,
	.bc-home-about__partners {
		gap: 26px;
	}

	.bc-home-about__subheading {
		font-size: 20px;
		line-height: 1.4;
	}

	.bc-home-about__list {
		gap: 16px;
	}

	.bc-home-about__list-item {
		font-size: 17px;
		line-height: 1.35;
	}

	.bc-home-about__logos {
		max-width: 430px;
	}

	.bc-home-about__logo {
		flex-shrink: 0;
		line-height: 0;
	}

	.bc-home-about__logo:not(.bc-home-about__logo--kirov) {
		height: 64px;
		padding: 0;
		border-radius: 0;
		background: transparent;
	}

	.bc-home-about__logo--msu img,
	.bc-home-about__logo--asotb img,
	.bc-home-about__logo--partner img,
	.bc-home-about__logo--partner-alt img,
	.bc-home-about__logo--botkin img,
	.bc-home-about__logo--burdenko img {
		display: block;
		width: auto;
		height: 64px;
		max-width: none;
	}

	.bc-home-about__logo--kirov {
		gap: 14px;
		height: 64px;
		padding: 10px 16px;
		border-radius: 16px;
		box-sizing: border-box;
	}

	.bc-home-about__logo--kirov .bc-home-about__logo-mark {
		width: 35px;
		height: 44px;
	}

	.bc-home-about__logo-label {
		width: 145px;
		font-size: 11px;
		line-height: 1.2;
	}
}

/* --- Планшет (≤1023px) --- */
@media (max-width: 1023px) {
	.bc-home {
		--bc-home-pad-x: 40px;
	}

	/* Accent band + Hero + Checkup — Figma 1665:7548 (768, планшет). */
	.bc-home__band--accent {
		gap: 24px;
		border-radius: 0 0 48px 48px;
		padding-bottom: 24px;
	}

	.bc-home-hero {
		height: auto;
		min-height: 0;
		border-radius: 0 0 48px 48px;
	}

	.bc-home-hero__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: start;
		justify-items: center;
		gap: 36px;
		height: auto;
		min-height: 0;
		padding: 48px 40px 20px;
	}

	.bc-home-hero__inner.bc-container {
		padding-left: 40px;
		padding-right: 40px;
	}

	.bc-home-hero__content {
		display: contents;
	}

	.bc-home-hero__head {
		grid-row: 1;
		display: flex;
		flex-direction: column;
		gap: 28px;
		align-items: center;
		width: 100%;
		text-align: center;
	}

	.bc-home-hero__intro {
		gap: 18px;
		align-items: center;
		text-align: center;
	}

	.bc-home-hero__title {
		font-size: 43px;
		text-align: center;
	}

	.bc-home-hero__lead {
		font-size: 18px;
		line-height: 1.4;
		text-align: center;
	}

	.bc-home-hero__btn {
		padding: 14px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-hero__btn-icon {
		width: 26px;
		height: 26px;
	}

	.bc-home-hero__visual {
		position: relative;
		top: auto;
		right: auto;
		grid-row: 2;
		grid-column: 1;
		z-index: 0;
		justify-self: center;
		flex: none;
		width: 378px;
		max-width: 100%;
		height: 466px;
		min-height: 466px;
		margin-left: 0;
	}

	.bc-home-hero__photo {
		width: 100%;
		height: 100%;
		min-height: 0;
		object-position: center top;
	}

	.bc-home-hero__badge {
		display: none;
	}

	.bc-home-hero__stats {
		grid-row: 2;
		grid-column: 1;
		z-index: 1;
		align-self: start;
		justify-self: center;
		width: 100%;
		max-width: 688px;
		margin-top: 388px;
		box-sizing: border-box;
		gap: 26px;
		justify-content: center;
		padding: 24px 20px;
		border-radius: 36px;
		background: #fff;
	}

	.bc-home-hero__stat {
		align-items: center;
		text-align: center;
	}

	.bc-home-hero__stat-head {
		gap: 8px;
		justify-content: center;
	}

	.bc-home-hero__stat-icon {
		width: 30px;
		height: 30px;
	}

	.bc-home-hero__stat-value {
		font-size: 28px;
		letter-spacing: -0.28px;
	}

	.bc-home-hero__stat-label {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-checkup {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.bc-home-checkup__title {
		font-size: 22px;
		line-height: 1.15;
		letter-spacing: -0.44px;
		text-align: center;
		white-space: normal;
	}

	.bc-home-checkup__btn {
		padding: 16px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	/* Section spacing — Figma 1579:33620 (768, между блоками 80px). */
	.bc-home-symptoms {
		padding-top: 80px;
	}

	.bc-home-pelvic {
		margin-top: 80px;
		padding-bottom: 0;
	}

	.bc-home-stages {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.bc-home__band--peach {
		display: flex;
		flex-direction: column;
		gap: 80px;
		border-radius: 40px;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.bc-home__band--peach .bc-home-about {
		border-radius: 0;
	}

	.bc-home-courses,
	.bc-home-results,
	.bc-home-reviews,
	.bc-home-about {
		padding-top: 0;
		padding-bottom: 0;
	}

	.bc-home-articles {
		padding-top: 80px;
		padding-bottom: 50px;
	}

	/* Symptoms — Figma 1579:33622 (688×432, gap pills 8px). */
	.bc-home-symptoms__list {
		gap: 8px;
	}

	/* Results — Figma 1587:38638 (688×925, сетка 338×276). */
	.bc-home-results {
		gap: 32px;
	}

	.bc-home-results__grid {
		display: flex;
		flex-wrap: wrap;
	}

	.bc-home-results__card {
		flex: 0 0 calc((100% - 12px) / 2);
		width: calc((100% - 12px) / 2);
		height: 276px;
		border-radius: 32px;
	}

	.bc-home-results__card::after {
		border-radius: 32px;
	}

	.bc-home-results__card:nth-child(1) {
		order: 1;
	}

	.bc-home-results__card:nth-child(3) {
		order: 2;
	}

	.bc-home-results__card:nth-child(4) {
		order: 4;
	}

	.bc-home-results__card:nth-child(5) {
		order: 5;
	}

	.bc-home-results__card--wide {
		order: 3;
		grid-column: auto;
		flex: 0 0 100%;
		width: 100%;
		border-radius: 36px;
	}

	.bc-home-results__card--wide::after {
		border-radius: 36px;
	}

	.bc-home-results__caption {
		font-size: 20px;
	}

	.bc-home-results__card--wide .bc-home-results__caption {
		font-size: 21px;
	}

	/* Reviews — Figma 1587:38755 (688×1337, слайдер колонок 280px). */
	.bc-home-reviews__grid {
		display: flex;
		flex-wrap: nowrap;
		margin-inline: calc(-1 * var(--bc-home-pad-x));
		padding-inline: var(--bc-home-pad-x);
		padding-bottom: 4px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--bc-home-pad-x);
		scrollbar-width: thin;
	}

	.bc-home-reviews__grid::-webkit-scrollbar {
		height: 6px;
	}

	.bc-home-reviews__col {
		flex: 0 0 280px;
		width: 280px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.bc-home-reviews__col:last-child {
		scroll-snap-align: end;
	}

	/* Pelvic floor — Figma 1565:28384 (688×659, колонка). */
	.bc-home-pelvic {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}

	.bc-home-pelvic__media {
		flex: none;
		width: 100%;
		max-width: none;
		height: 380px;
		border-radius: 32px;
	}

	.bc-home-pelvic__img {
		border-radius: 32px;
	}

	.bc-home-pelvic__content {
		flex: none;
		width: 100%;
		gap: 20px;
		padding: 0;
	}

	.bc-home-pelvic__text {
		font-size: 17px;
		line-height: 1.35;
	}

	.bc-home-pelvic__text p + p {
		margin-top: 1.35em;
	}

	/* Articles — Figma 1565:28447 (2×2, карточка 338px). */
	.bc-home-articles {
		gap: 40px;
	}

	.bc-home-articles__head {
		max-width: none;
		margin: 0;
	}

	.bc-home-articles__title {
		margin-bottom: 20px;
		font-size: var(--bc-home-h3-size);
		line-height: var(--bc-home-h3-lh);
		letter-spacing: var(--bc-home-h3-ls);
	}

	.bc-home-articles__lead {
		font-size: 18px;
	}

	.bc-home-articles__grid {
		margin-bottom: 0;
	}

	.bc-home-articles .bc-article__more-grid {
		flex-wrap: wrap;
	}

	.bc-home-articles .bc-article__more-card {
		flex: 0 0 calc((100% - 12px) / 2);
		max-width: calc((100% - 12px) / 2);
	}

	.bc-home-articles .bc-article__more-card-link {
		min-height: 0;
		padding: 0 0 28px;
	}

	.bc-home-articles .bc-article__more-thumb {
		height: 216px;
	}

	.bc-home-articles .bc-article__more-body {
		padding: 0 20px;
	}

	.bc-home-articles .bc-article__more-card-title {
		font-size: 22px;
		line-height: 1.2;
	}

	.bc-home-articles .bc-article__more-excerpt {
		font-size: 16px;
	}

	/* About — Figma 1565:28446 (688×1214, колонка). */
	.bc-home-about__top {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		min-height: 0;
		padding: 24px;
		border-radius: 32px;
		background: #fff;
		box-sizing: border-box;
	}

	.bc-home-about__author-photo {
		flex: none;
		width: 242px;
		height: 257px;
		border-radius: 24px;
	}

	.bc-home-about__intro {
		flex: none;
		width: 100%;
		padding: 0;
		border-radius: 0;
		background: transparent;
		gap: 20px;
		justify-content: flex-start;
	}

	.bc-home-about__name {
		font-size: 26px;
		letter-spacing: -0.52px;
	}

	.bc-home-about__bio,
	.bc-home-about__mission {
		font-size: 16px;
	}

	.bc-home-about__bio {
		line-height: 1.35;
	}

	.bc-home-about__mission {
		line-height: 1.4;
	}

	.bc-home-about__bio p + p,
	.bc-home-about__mission p + p {
		margin-top: 1.35em;
	}

	.bc-home-about__middle {
		flex-direction: column;
	}

	.bc-home-about__achievements {
		order: 1;
		flex: none;
		width: 100%;
		max-width: none;
		padding: 24px;
		gap: 24px;
		justify-content: flex-start;
	}

	.bc-home-about__partners {
		order: 2;
		flex: none;
		width: 100%;
		max-width: none;
		padding: 24px;
		gap: 24px;
	}

	.bc-home-about__subheading {
		font-size: 20px;
		line-height: 1.4;
	}

	.bc-home-about__list {
		gap: 16px;
	}

	.bc-home-about__list-item {
		font-size: 17px;
		line-height: 1.35;
	}

	.bc-home-about__logos {
		max-width: none;
	}

	/* Training stages — Figma 1565:28385 (колонка 688×895, фото 688×368). */
	.bc-home-stages {
		gap: 32px;
	}

	.bc-home-stages__layout {
		flex-direction: column;
		gap: 12px;
	}

	.bc-home-stages__list {
		order: 1;
		flex: none;
		width: 100%;
		max-width: none;
	}

	.bc-home-stages__photo {
		order: 2;
		flex: none;
		width: 100%;
		max-width: none;
		height: 368px;
	}

	.bc-home-stages__photo-img {
		inset: 0;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
	}

	.bc-home-stages__item {
		gap: 20px;
	}

	.bc-home-stages__step {
		width: 48px;
		height: 48px;
	}

	.bc-home-stages__step-img {
		width: 48px;
		height: 48px;
	}
}

/* --- Большая мобилка (≤767px) --- */
@media (max-width: 767px) {
	/* Accent band + Hero + Checkup — Figma 1665:7521 (560). */
	.bc-home-hero__inner {
		gap: 36px;
		padding: 48px 40px 20px;
	}

	.bc-home-hero__head {
		gap: 28px;
	}

	.bc-home-hero__intro {
		gap: 18px;
	}

	.bc-home-hero__title {
		font-size: 36px;
	}

	.bc-home-hero__lead {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-hero__btn {
		padding: 14px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-hero__btn-icon {
		width: 26px;
		height: 26px;
	}

	.bc-home-hero__visual {
		width: 378px;
		max-width: 100%;
		height: 466px;
		min-height: 466px;
		margin-top: 0;
	}

	.bc-home-hero__photo {
		height: 100%;
	}

	.bc-home-hero__stats {
		width: 100%;
		max-width: 480px;
		margin-top: 388px;
		gap: 5px;
		padding: 24px 20px;
	}

	.bc-home-hero__stat {
		flex: 1 1 0;
		min-width: 0;
	}

	.bc-home-hero__stat-head {
		gap: 5px;
	}

	.bc-home-hero__stat-icon {
		width: 27px;
		height: 27px;
	}

	.bc-home-hero__stat-value {
		font-size: 24px;
		letter-spacing: -0.24px;
	}

	.bc-home-hero__stat-label {
		font-size: 14px;
		line-height: 1.35;
	}

	.bc-home-checkup {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.bc-home-checkup__title {
		font-size: 22px;
		line-height: 1.15;
		letter-spacing: -0.44px;
		text-align: center;
		white-space: normal;
	}

	.bc-home-checkup__btn {
		padding: 16px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	/* Section spacing — Figma 1579:33706 (480, между блоками 64px). */
	.bc-home-symptoms {
		padding-top: 64px;
	}

	.bc-home-pelvic {
		margin-top: 64px;
		padding-bottom: 0;
	}

	.bc-home-stages {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.bc-home__band--peach {
		display: flex;
		flex-direction: column;
		gap: 64px;
		border-radius: 40px;
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.bc-home__band--peach .bc-home-about {
		border-radius: 0;
	}

	.bc-home-courses,
	.bc-home-results,
	.bc-home-reviews,
	.bc-home-about {
		padding-top: 0;
		padding-bottom: 0;
	}

	.bc-home-articles {
		padding-top: 64px;
		padding-bottom: 50px;
	}

	/* Pelvic floor — Figma 1565:28470 (480×524, mobile-big). */
	.bc-home-pelvic {
		gap: 24px;
	}

	.bc-home-pelvic__media {
		height: 300px;
	}

	.bc-home-pelvic__title {
		font-size: 32px;
		line-height: 1.2;
		letter-spacing: -0.64px;
	}

	.bc-home-pelvic__text {
		font-size: 16px;
		line-height: 1.35;
	}

	/* Symptoms — Figma 1579:33708 (480×488, mobile-big). */
	.bc-home-symptoms {
		align-items: stretch;
		gap: 24px;
		text-align: left;
	}

	.bc-home-symptoms__title {
		font-size: 32px;
		line-height: 1.15;
		letter-spacing: -0.64px;
	}

	.bc-home-symptoms__list {
		justify-content: flex-start;
		gap: 6px;
	}

	.bc-home-symptoms__item {
		padding: 8px 14px 8px 8px;
		font-size: 16px;
		line-height: 1.4;
	}

	.bc-home-symptoms__item::before {
		width: 18px;
		height: 18px;
	}

	/* Results — Figma 1587:38663 (480×360, колонка, порядок как на десктопе). */
	.bc-home-results {
		align-items: stretch;
		gap: 32px;
	}

	.bc-home-results__title {
		font-size: 32px;
		line-height: 1.15;
		letter-spacing: -0.64px;
		text-align: left;
	}

	.bc-home-results__grid {
		gap: 8px;
	}

	.bc-home-results__card:nth-child(1),
	.bc-home-results__card:nth-child(2),
	.bc-home-results__card:nth-child(3),
	.bc-home-results__card:nth-child(4),
	.bc-home-results__card:nth-child(5),
	.bc-home-results__card--wide {
		flex: 0 0 100%;
		width: 100%;
		height: 360px;
		border-radius: 32px;
	}

	.bc-home-results__card:nth-child(1) {
		order: 1;
	}

	.bc-home-results__card:nth-child(2) {
		order: 2;
	}

	.bc-home-results__card:nth-child(3) {
		order: 3;
	}

	.bc-home-results__card:nth-child(4) {
		order: 4;
	}

	.bc-home-results__card:nth-child(5) {
		order: 5;
	}

	.bc-home-results__card::after,
	.bc-home-results__card--wide::after {
		border-radius: 32px;
	}

	.bc-home-results__card:nth-child(1) .bc-home-results__img,
	.bc-home-results__card:nth-child(2) .bc-home-results__img,
	.bc-home-results__card:nth-child(3) .bc-home-results__img,
	.bc-home-results__card:nth-child(4) .bc-home-results__img,
	.bc-home-results__card:nth-child(5) .bc-home-results__img {
		inset: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
	}

	.bc-home-results__card:nth-child(2) .bc-home-results__img {
		object-position: 50% 38%;
	}

	.bc-home-results__card:nth-child(3) .bc-home-results__img {
		object-position: 42% 28%;
	}

	.bc-home-results__card:nth-child(4) .bc-home-results__img {
		object-position: 50% 32%;
	}

	.bc-home-results__card:nth-child(5) .bc-home-results__img {
		object-position: 52% 30%;
	}

	.bc-home-results__card:nth-child(1)::after {
		background: linear-gradient(185.02deg, rgba(102, 102, 102, 0) 62.24%, rgba(0, 0, 0, 0.38) 73.52%);
	}

	.bc-home-results__card:nth-child(2)::after {
		background: linear-gradient(196.47deg, rgba(102, 102, 102, 0) 44.78%, rgba(0, 0, 0, 0.41) 71.79%);
	}

	.bc-home-results__card:nth-child(3)::after {
		background: linear-gradient(182.1deg, rgba(102, 102, 102, 0) 62.22%, rgba(0, 0, 0, 0.404) 73.17%);
	}

	.bc-home-results__card:nth-child(4)::before {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: 32px;
		background: rgba(166, 61, 82, 0.1);
		mix-blend-mode: soft-light;
		pointer-events: none;
	}

	.bc-home-results__card:nth-child(4)::after {
		background: linear-gradient(180deg, rgba(102, 102, 102, 0) 59.53%, rgba(0, 0, 0, 0.49) 76.72%);
	}

	.bc-home-results__card:nth-child(5)::after {
		background: linear-gradient(180deg, rgba(102, 102, 102, 0) 59.53%, rgba(0, 0, 0, 0.48) 72.5%);
	}

	.bc-home-results__caption {
		padding: 24px;
		font-size: 18px;
		line-height: 1.2;
	}

	.bc-home-results__card--wide .bc-home-results__caption {
		font-size: 18px;
		line-height: 1.2;
	}

	/* Courses — Figma 1579:33729 (480×3501, колонка). */
	.bc-home-courses {
		gap: 32px;
		align-items: stretch;
	}

	.bc-home-courses__head {
		max-width: none;
		align-items: flex-start;
		gap: 20px;
		text-align: left;
	}

	.bc-home-courses__title {
		font-size: 32px;
		line-height: 1.15;
		letter-spacing: -0.64px;
	}

	.bc-home-courses__lead {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-courses__grid {
		align-items: stretch;
		gap: 12px;
	}

	.bc-home-courses__card,
	.bc-home-courses__quiz {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.bc-home-courses__card {
		border-radius: 32px;
	}

	.bc-home-courses__card-media {
		height: auto;
	}

	.bc-home-courses__card-media-inner {
		aspect-ratio: 480 / 300;
		height: auto;
	}

	.bc-home-courses__card-body {
		flex: none;
		align-items: stretch;
		justify-content: flex-start;
		gap: 24px;
		padding: 24px 20px;
	}

	.bc-home-courses__card-main {
		align-items: stretch;
	}

	.bc-home-courses__card-title {
		font-size: 22px;
		line-height: 1.25;
	}

	.bc-home-courses__chips {
		gap: 5px;
	}

	.bc-home-courses__btn {
		padding: 16px 28px;
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-courses__quiz {
		gap: 24px;
		justify-content: flex-start;
		align-items: center;
		padding: 24px 20px;
		border-radius: 32px;
	}

	.bc-home-courses__quiz-art {
		width: 304px;
		max-width: 100%;
		height: 208px;
		margin-inline: auto;
	}

	.bc-home-courses__quiz-title {
		font-size: 24px;
		line-height: 1.2;
		letter-spacing: -0.48px;
	}

	.bc-home-courses__quiz-text {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-courses__quiz-btn {
		min-height: auto;
		padding: 16px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	/* Reviews — Figma 1591:41094 (480×633, слайдер карточек 280px). */
	.bc-home-reviews__title {
		margin-bottom: 32px;
		font-size: 32px;
		line-height: 1.15;
		letter-spacing: -0.64px;
		text-align: left;
	}

	.bc-home-reviews__grid {
		align-items: flex-start;
	}

	.bc-home-reviews__col {
		display: contents;
	}

	.bc-home-reviews__item {
		flex: 0 0 280px;
		width: 280px;
		box-sizing: border-box;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.bc-home-reviews__col:last-child .bc-home-reviews__item:last-child {
		scroll-snap-align: end;
	}

	.bc-home-reviews__col:nth-child(1) .bc-home-reviews__item:nth-child(2) {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 564px;
		border-radius: 23px;
	}

	.bc-home-reviews__col:nth-child(1) .bc-home-reviews__item:nth-child(2) .bc-home-reviews__img {
		flex: 1 1 auto;
		min-height: 0;
		max-height: 100%;
	}

	.bc-home-reviews__col:nth-child(2) .bc-home-reviews__item:nth-child(4) {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 391px;
	}

	.bc-home-reviews__col:nth-child(2) .bc-home-reviews__item:nth-child(4) .bc-home-reviews__img {
		flex: 1 1 auto;
		min-height: 0;
		max-height: 100%;
	}

	/* Articles — Figma 1565:28532 (колонка, карточка 480px). */
	.bc-home-articles__head {
		text-align: left;
	}

	.bc-home-articles__title {
		font-size: 32px;
		line-height: 1.15;
		letter-spacing: -0.64px;
	}

	.bc-home-articles__lead {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-articles .bc-article__more-card {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.bc-home-articles .bc-article__more-card-link {
		gap: 16px;
		padding: 0 0 24px;
	}

	.bc-home-articles .bc-article__more-thumb {
		height: 305px;
	}

	.bc-home-articles .bc-article__more-body {
		padding: 0 24px;
	}

	.bc-home-articles .bc-article__more-card-title {
		font-size: 20px;
		line-height: 1.2;
	}

	.bc-home-articles .bc-article__more-excerpt {
		font-weight: 400;
		line-height: 1.35;
		color: #454545;
		opacity: 0.85;
	}

	/* About — Figma 1565:28531 (488×1178, mobile-big). */
	.bc-home-about__top {
		gap: 20px;
	}

	.bc-home-about__author-photo {
		width: 200px;
		height: 212px;
	}

	.bc-home-about__intro {
		gap: 20px;
	}

	.bc-home-about__subheading {
		font-size: 18px;
		line-height: 1.2;
	}

	.bc-home-about__list-item {
		gap: 8px;
		font-size: 16px;
	}

	.bc-home-about__check {
		width: 22px;
		height: 22px;
	}

	.bc-home-about__logo:not(.bc-home-about__logo--kirov) {
		height: 53px;
	}

	.bc-home-about__logo--msu img,
	.bc-home-about__logo--asotb img,
	.bc-home-about__logo--partner img,
	.bc-home-about__logo--partner-alt img,
	.bc-home-about__logo--botkin img,
	.bc-home-about__logo--burdenko img {
		height: 53px;
	}

	.bc-home-about__logo--kirov {
		height: 53px;
		gap: 12px;
		padding: 8px 13px;
		border-radius: 15px;
	}

	.bc-home-about__logo--kirov .bc-home-about__logo-mark {
		width: 29px;
		height: 37px;
	}

	.bc-home-about__logo-label {
		width: 120px;
		font-size: 9px;
	}

	/* Training stages — Figma 1565:28471 (480×1044, mobile-big). */
	.bc-home-stages {
		gap: 24px;
	}

	.bc-home-stages__head {
		text-align: left;
	}

	.bc-home-stages__title {
		font-size: 32px;
		line-height: 1.15;
		letter-spacing: -0.64px;
	}

	.bc-home-stages__title br {
		display: none;
	}

	.bc-home-stages__lead {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-stages__photo {
		height: 250px;
	}

	.bc-home-stages__item {
		gap: 20px;
		padding: 24px;
		border-radius: 32px;
	}

	.bc-home-stages__item-body {
		gap: 12px;
	}

	.bc-home-stages__item-title {
		font-size: 22px;
	}

	.bc-home-stages__item-text {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-stages__step {
		width: 44px;
		height: 44px;
	}

	.bc-home-stages__step-img {
		width: 44px;
		height: 44px;
	}

	.bc-home-about__logo--burdenko {
		width: 282px;
	}
}

/* --- Малая мобилка (≤559px) --- */
@media (max-width: 559px) {
	.bc-home {
		--bc-home-pad-x: 20px;
	}

	/* Accent band + Hero + Checkup — Figma 1665:7575 (360, малая мобилка). */
	.bc-home__band--accent {
		gap: 36px;
		border-radius: 0 0 36px 36px;
		padding-bottom: 24px;
	}

	.bc-home-hero {
		border-radius: 0 0 36px 36px;
	}

	.bc-home-hero__inner {
		gap: 28px;
		padding: 40px 20px 20px;
	}

	.bc-home-hero__inner.bc-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.bc-home-hero__head {
		gap: 28px;
	}

	.bc-home-hero__intro {
		gap: 16px;
		align-items: center;
		text-align: center;
	}

	.bc-home-hero__title {
		font-size: 26px;
		text-align: center;
	}

	.bc-home-hero__lead {
		font-size: 15px;
		line-height: 1.4;
		text-align: center;
	}

	.bc-home-hero__btn {
		padding: 14px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-hero__btn-icon {
		width: 26px;
		height: 26px;
	}

	.bc-home-hero__visual {
		width: 284px;
		max-width: 100%;
		height: 349px;
		min-height: 349px;
		margin-top: 0;
	}

	.bc-home-hero__photo {
		height: 100%;
	}

	.bc-home-hero__stats {
		flex-direction: column;
		gap: 20px;
		align-items: center;
		width: 100%;
		max-width: 320px;
		margin-top: 300.61px;
		padding: 24px 20px;
	}

	.bc-home-hero__stat {
		flex: none;
		align-items: center;
		text-align: center;
	}

	.bc-home-hero__stat-head {
		gap: 5px;
		justify-content: center;
	}

	.bc-home-hero__stat-icon {
		width: 27px;
		height: 27px;
	}

	.bc-home-hero__stat-value {
		font-size: 24px;
		letter-spacing: -0.24px;
	}

	.bc-home-hero__stat-label {
		font-size: 14px;
		line-height: 1.35;
	}

	.bc-home-hero__badge {
		display: none;
	}

	.bc-home-checkup {
		flex-direction: column;
		gap: 20px;
		align-items: center;
		padding-inline: 20px;
	}

	.bc-home-checkup__title {
		font-size: 17px;
		line-height: 1.15;
		letter-spacing: -0.34px;
		text-align: center;
		white-space: normal;
	}

	.bc-home-checkup__btn {
		padding: 16px 28px;
		border-radius: 22px;
		font-size: 16px;
		line-height: 1.35;
	}

	/* Section spacing — Figma 1579:33792 (320, между блоками 64px). */
	.bc-home-symptoms {
		padding-top: 64px;
	}

	.bc-home-pelvic {
		margin-top: 64px;
		padding-bottom: 0;
	}

	.bc-home-stages {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.bc-home__band--peach {
		display: flex;
		flex-direction: column;
		gap: 64px;
		border-radius: 36px;
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.bc-home__band--peach .bc-home-about {
		border-radius: 0;
	}

	.bc-home-courses,
	.bc-home-results,
	.bc-home-reviews,
	.bc-home-about {
		padding-top: 0;
		padding-bottom: 0;
	}

	.bc-home-articles {
		padding-top: 64px;
		padding-bottom: 50px;
	}

	/* Pelvic floor — Figma 1565:28555 (320×444, mobile). */
	.bc-home-pelvic__media {
		height: 220px;
	}

	.bc-home-pelvic__content {
		gap: 16px;
	}

	.bc-home-pelvic__title {
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-pelvic__text {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-pelvic__text p + p {
		margin-top: 1.4em;
	}

	/* Symptoms — Figma 1579:33794 (320×456, mobile). */
	.bc-home-symptoms__title {
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-symptoms__item {
		gap: 6px;
		padding: 6px 10px 6px 6px;
		font-size: 14px;
	}

	.bc-home-symptoms__item::before {
		width: 12px;
		height: 12px;
	}

	/* Results — Figma 1587:38688 (320×261, порядок как на большой мобилке). */
	.bc-home-results {
		gap: 24px;
	}

	.bc-home-results__title {
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-results__card:nth-child(1),
	.bc-home-results__card:nth-child(2),
	.bc-home-results__card:nth-child(3),
	.bc-home-results__card:nth-child(4),
	.bc-home-results__card:nth-child(5),
	.bc-home-results__card--wide {
		height: 261px;
	}

	.bc-home-results__card:nth-child(1) {
		order: 1;
	}

	.bc-home-results__card:nth-child(2) {
		order: 2;
	}

	.bc-home-results__card:nth-child(3) {
		order: 3;
	}

	.bc-home-results__card:nth-child(4) {
		order: 4;
	}

	.bc-home-results__card:nth-child(5) {
		order: 5;
	}

	.bc-home-results__card:nth-child(1) .bc-home-results__img,
	.bc-home-results__card:nth-child(2) .bc-home-results__img,
	.bc-home-results__card:nth-child(3) .bc-home-results__img,
	.bc-home-results__card:nth-child(4) .bc-home-results__img,
	.bc-home-results__card:nth-child(5) .bc-home-results__img {
		object-position: center center;
	}

	.bc-home-results__card:nth-child(1)::after {
		background: linear-gradient(222.26deg, rgba(102, 102, 102, 0) 48.15%, rgba(0, 0, 0, 0.35) 68.42%);
	}

	.bc-home-results__card:nth-child(2)::after {
		background: linear-gradient(200.47deg, rgba(102, 102, 102, 0) 44.78%, rgba(0, 0, 0, 0.41) 71.79%);
	}

	.bc-home-results__card:nth-child(3)::before {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: 32px;
		background: rgba(166, 61, 82, 0.1);
		mix-blend-mode: soft-light;
		pointer-events: none;
	}

	.bc-home-results__card:nth-child(3)::after {
		background: linear-gradient(182.65deg, rgba(102, 102, 102, 0) 62.22%, rgba(0, 0, 0, 0.404) 73.17%);
	}

	.bc-home-results__caption,
	.bc-home-results__card--wide .bc-home-results__caption {
		padding: 20px;
		font-size: 18px;
		line-height: 1.2;
	}

	/* Courses — Figma 1579:33815 (320×3315, колонка). */
	.bc-home-courses__head {
		gap: 16px;
	}

	.bc-home-courses__title {
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-courses__lead {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-courses__lead strong {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-home-courses__badge {
		top: 10px;
		left: 10px;
		font-size: 14px;
	}

	.bc-home-courses__card-title {
		font-size: 20px;
		line-height: 1.4;
	}

	.bc-home-courses__quiz {
		padding: 12px 20px 24px;
		border-radius: 36px;
	}

	.bc-home-courses__quiz-copy {
		gap: 14px;
	}

	.bc-home-courses__quiz-title {
		font-size: 22px;
		letter-spacing: -0.44px;
	}

	/* Reviews — Figma 1591:41095 (320×596, слайдер карточек 270px). */
	.bc-home-reviews__title {
		margin-bottom: 24px;
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-reviews__item {
		flex: 0 0 270px;
		width: 270px;
	}

	.bc-home-reviews__col:nth-child(1) .bc-home-reviews__item:nth-child(2) {
		height: 543px;
	}

	.bc-home-reviews__col:nth-child(2) .bc-home-reviews__item:nth-child(4) {
		height: 377px;
	}

	/* Articles — Figma 1565:28617 (колонка, карточка 320px). */
	.bc-home-articles__title {
		margin-bottom: 16px;
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-articles__lead {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-articles .bc-article__more-thumb {
		height: 220px;
	}

	.bc-home-articles .bc-article__more-body {
		padding: 0 20px;
	}

	.bc-home-articles .bc-article__more-card-title {
		font-size: 19px;
	}

	.bc-home-articles .bc-article__more-excerpt {
		font-size: 15px;
	}

	/* About — Figma 1565:28616 (320×1364, mobile). */
	.bc-home-about {
		gap: 8px;
	}

	.bc-home-about__top {
		padding: 24px 20px;
	}

	.bc-home-about__intro {
		gap: 16px;
	}

	.bc-home-about__name {
		font-size: 24px;
		letter-spacing: -0.48px;
	}

	.bc-home-about__bio,
	.bc-home-about__mission {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-about__bio p + p,
	.bc-home-about__mission p + p {
		margin-top: 1.4em;
	}

	.bc-home-about__achievements,
	.bc-home-about__partners {
		padding: 24px 20px;
	}

	.bc-home-about__list {
		gap: 12px;
	}

	.bc-home-about__list-item {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-about__logo:not(.bc-home-about__logo--kirov) {
		height: 48px;
	}

	.bc-home-about__logo--msu img,
	.bc-home-about__logo--asotb img,
	.bc-home-about__logo--partner img,
	.bc-home-about__logo--partner-alt img,
	.bc-home-about__logo--botkin img,
	.bc-home-about__logo--burdenko img {
		height: 48px;
	}

	.bc-home-about__logo--kirov {
		height: 48px;
		gap: 11px;
		padding: 7px 12px;
		border-radius: 14px;
	}

	.bc-home-about__logo--kirov .bc-home-about__logo-mark {
		width: 26px;
		height: 33px;
	}

	.bc-home-about__logo-label {
		width: 108px;
		font-size: 8px;
	}

	/* Training stages — Figma 1565:28556 (320×1113, mobile). */
	.bc-home-stages__head {
		gap: 16px;
	}

	.bc-home-stages__title {
		font-size: 26px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.bc-home-stages__lead {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-stages__layout {
		gap: 8px;
	}

	.bc-home-stages__photo {
		height: 200px;
	}

	.bc-home-stages__item {
		gap: 16px;
		padding: 24px 20px;
	}

	.bc-home-stages__item-title {
		font-size: 20px;
	}

	.bc-home-stages__item-text {
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-home-stages__step {
		width: 36px;
		height: 36px;
	}

	.bc-home-stages__step-img {
		width: 36px;
		height: 36px;
	}
}
