/**
 * Информационные страницы: О нас, Контакты, Доставка.
 */

.sm-info-page {
	font-family: "Nunito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	background: #fcfbfc;
	padding-top: 1.5rem;
	padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
	.sm-info-page {
		padding-top: 2rem;
		padding-bottom: 6rem;
	}
}

body.sahalin-info-page {
	background-color: #fcfbfc !important;
}

.sm-info-page__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #6b7280;
}

.sm-info-page__breadcrumb a {
	color: #4b7b9b;
	text-decoration: none;
	transition: color 0.15s ease;
}

.sm-info-page__breadcrumb a:hover {
	color: #003459;
}

.sm-info-page__breadcrumb-sep {
	color: #d1d5db;
}

.sm-info-page__breadcrumb [aria-current="page"] {
	color: #374151;
}

.sm-info-page__article {
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid #f3f4f6;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sm-info-page__header {
	padding: 2rem 1.5rem;
	border-bottom: 1px solid #f3f4f6;
	background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

@media (min-width: 768px) {
	.sm-info-page__header {
		padding: 2.5rem 2.5rem;
	}
}

.sm-info-page__kicker {
	margin: 0 0 0.35rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #4b7b9b;
}

.sm-info-page__title {
	margin: 0;
	font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #001f3f;
}

.sm-info-page__lead {
	margin: 0.75rem 0 0;
	font-size: 1.125rem;
	font-weight: 500;
	color: #6b7280;
}

.sm-info-page__body {
	padding: 2rem 1.5rem;
	color: #374151;
}

@media (min-width: 768px) {
	.sm-info-page__body {
		padding: 2.5rem 2.5rem;
	}
}

.sm-info-page__text {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.65;
}

.sm-info-page__text--last {
	margin-bottom: 0;
}

.sm-info-page__section-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #001f3f;
}

.sm-info-page__section-title--center {
	text-align: center;
	margin-bottom: 1.5rem;
}

/* ——— О нас (макет как на sahalin.market) ——— */
.sm-info-page--about {
	background: #fff;
}

body.sahalin-info-page.sm-info-page--about,
body.sahalin-info-page:has(.sm-info-page--about) {
	background-color: #fff !important;
}

.sm-info-page__article--about {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.sm-info-page__header--about {
	padding: 0 0 1.5rem;
	border: 0;
	background: transparent;
}

@media (min-width: 768px) {
	.sm-info-page__header--about {
		padding: 0 0 2rem;
	}
}

.sm-info-page__title--about {
	font-size: clamp(1.625rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	color: #333;
	letter-spacing: -0.01em;
}

.sm-info-page__body--about {
	padding: 0;
	color: #666;
}

.sm-info-page__text--about {
	margin: 0 0 1.125rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
}

.sm-info-page__reasons--about {
	--sm-about-navy: #003459;
	--sm-about-navy-deep: #001f3f;
	padding: 0.5rem 0 0;
	border: 0;
	background: transparent;
}

.sm-info-page__reasons-heading {
	margin: 0 0 1.5rem;
	font-size: clamp(1.375rem, 2.5vw, 1.625rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--sm-about-navy, #003459);
}

.sm-info-page__reasons-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: sm-about-reason;
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.sm-info-page__reason-item {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr);
	gap: 0.85rem 1rem;
	align-items: start;
	counter-increment: sm-about-reason;
}

.sm-info-page__reason-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--sm-about-navy, #003459);
	color: #fff;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.sm-info-page__reason-num::before {
	content: counter(sm-about-reason);
}

.sm-info-page__reason-line {
	margin: 0.15rem 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
}

.sm-info-page__reason-label {
	font-weight: 700;
	color: var(--sm-about-navy-deep, #001f3f);
}

/* ——— Контакты (макет с галереей) ——— */
.sm-info-page--contact {
	background: #fcfbfc;
}

.sm-info-page__article--contact {
	overflow: visible;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.sm-info-page__header--contact {
	padding: 0 0 1.75rem;
	border: 0;
	background: transparent;
}

@media (min-width: 768px) {
	.sm-info-page__header--contact {
		padding: 0 0 2.25rem;
	}
}

.sm-info-page__title--contact {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
	letter-spacing: -0.02em;
}

.sm-info-page__lead--contact {
	margin: 0.5rem 0 0;
	font-size: 1.125rem;
	font-weight: 400;
	color: #6b7280;
}

.sm-contact__top {
	display: grid;
	gap: 1.5rem 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.sm-contact__top {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
		align-items: start;
		gap: 2rem 3rem;
		margin-bottom: 2.5rem;
	}
}

.sm-contact__stores {
	margin: 0;
	padding: 0 0 0 1.25rem;
	list-style: disc;
	color: var(--sm-contact-navy, #003459);
}

.sm-contact__store {
	margin: 0 0 0.65rem;
	font-size: 1.0625rem;
	line-height: 1.45;
}

.sm-contact__store:last-child {
	margin-bottom: 0;
}

.sm-contact__store-link {
	font-weight: 600;
	color: var(--sm-contact-navy, #003459);
	text-decoration: none;
}

.sm-contact__store-link:hover,
.sm-contact__store-link:focus-visible {
	color: var(--sm-contact-navy-deep, #001f3f);
	text-decoration: underline;
}

.sm-contact__store-hours {
	color: #6b7280;
	font-weight: 400;
}

.sm-contact__store-hours::before {
	content: " (";
}

.sm-contact__store-hours::after {
	content: ")";
}

.sm-contact__reach {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
	margin-top: 1.75rem;
}

@media (min-width: 768px) {
	.sm-contact__reach {
		gap: 2rem 4rem;
		margin-top: 2rem;
	}
}

.sm-contact__reach-label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
}

.sm-contact__reach-value {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--sm-contact-navy, #003459);
	text-decoration: none;
}

.sm-contact__reach-value:hover,
.sm-contact__reach-value:focus-visible {
	color: var(--sm-contact-navy-deep, #001f3f);
	text-decoration: underline;
}

.sm-contact__phones,
.sm-contact__messengers {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sm-contact__reach-value--phone {
	display: block;
}

.sm-contact__reach-value--messenger {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.sm-contact__messenger-icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	object-fit: cover;
}

.sm-contact__legal {
	padding: 1.5rem 1.75rem;
	border-radius: 0.75rem;
	background: #f3f4f6;
}

.sm-contact__legal-title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
}

.sm-contact__legal-line {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #6b7280;
}

.sm-contact__legal-line:last-child {
	margin-bottom: 0;
}

.sm-contact__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.sm-contact__gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
	}
}

.sm-contact__gallery-item {
	margin: 0;
	overflow: hidden;
	border-radius: 0.5rem;
}

.sm-contact__gallery-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 140px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
	.sm-contact__gallery-img {
		min-height: 200px;
	}
}

.sm-contact__map-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
}

.sm-contact__map-credit {
	position: absolute;
	left: 0;
	z-index: 1;
	padding: 0 0.5rem;
	font-size: 12px;
	line-height: 1.2;
	color: #eee;
	text-decoration: none;
}

.sm-contact__map-credit--city {
	top: 0;
}

.sm-contact__map-credit--place {
	top: 14px;
}

.sm-contact__map-credit:hover,
.sm-contact__map-credit:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.sm-contact__map {
	position: relative;
	display: block;
	width: 100%;
	height: 400px;
	min-height: 320px;
	border: 0;
}

@media (min-width: 768px) {
	.sm-contact__map {
		min-height: 400px;
	}
}

/* ——— Доставка и оплата ——— */
.sm-info-page--delivery {
	background: #f3f4f6;
}

.sm-delivery {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.sm-delivery {
		gap: 1.5rem;
	}
}

.sm-delivery__card {
	padding: 1.5rem 1.25rem;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
	.sm-delivery__card {
		padding: 2rem 2.25rem;
	}
}

.sm-delivery__hero-title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
}

.sm-delivery__section-title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
}

.sm-delivery__section-title--faq {
	margin-bottom: 1.25rem;
}

.sm-delivery__pickup {
	display: flex;
	gap: 0.75rem 1rem;
	align-items: flex-start;
	margin-bottom: 1.75rem;
}

.sm-delivery__pickup-text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: #4b5563;
	white-space: pre-line;
}

.sm-delivery__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	color: var(--sm-delivery-navy, #003459);
}

.sm-delivery__icon-img {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	object-fit: contain;
}

.sm-delivery__icon-svg {
	display: block;
	width: 1.35rem;
	height: 1.35rem;
}

.sm-delivery__zones {
	display: grid;
	gap: 1.5rem 2rem;
}

@media (min-width: 768px) {
	.sm-delivery__zones {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 2.5rem;
	}
}

.sm-delivery__zone-title {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
}

.sm-delivery__zone-row {
	display: flex;
	gap: 0.65rem 0.85rem;
	align-items: flex-start;
	margin-bottom: 0.85rem;
}

.sm-delivery__zone-row:last-child {
	margin-bottom: 0;
}

.sm-delivery__zone-text {
	margin: 0.1rem 0 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #4b5563;
}

.sm-delivery__card--map {
	padding: 0;
	overflow: hidden;
}

.sm-delivery__map-wrap {
	position: relative;
	overflow: hidden;
}

.sm-delivery__map {
	display: block;
	width: 100%;
	height: 360px;
	min-height: 280px;
	border: 0;
}

@media (min-width: 768px) {
	.sm-delivery__map {
		height: 420px;
	}
}

.sm-delivery__payment-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
}

.sm-delivery__payment-grid {
	display: grid;
	gap: 1.25rem 2rem;
}

@media (min-width: 640px) {
	.sm-delivery__payment-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem 3rem;
	}
}

.sm-delivery__payment-label {
	margin: 0 0 0.65rem;
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
}

.sm-delivery__list {
	margin: 0;
	padding: 0 0 0 1.1rem;
	list-style: disc;
	color: #4b5563;
}

.sm-delivery__list li {
	font-size: 0.9375rem;
	line-height: 1.55;
}

.sm-delivery__list li + li {
	margin-top: 0.35rem;
}

.sm-delivery__list--plain {
	list-style: none;
	padding-left: 0;
}

.sm-delivery__section-title--standalone {
	margin-bottom: 1.25rem;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.sm-delivery__banner {
	padding: 1.5rem 1.25rem;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
	.sm-delivery__banner {
		padding: 2rem 2.25rem;
	}
}

.sm-delivery__banner-title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111827;
}

.sm-delivery__banner-lead {
	margin: 0 0 0.65rem;
	font-size: 1rem;
	line-height: 1.55;
	color: #4b5563;
}

.sm-delivery__banner-addresses {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #9ca3af;
}

.sm-delivery__banner-addresses-label {
	margin: 0 0 0.35rem;
	color: #9ca3af;
}

.sm-delivery__banner-city {
	margin: 0 0 0.2rem;
	font-weight: 600;
	color: #6b7280;
}

.sm-delivery__banner-streets {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm-delivery__banner-streets li {
	margin: 0;
}

.sm-delivery__banner-address-link {
	color: #6b7280;
	text-decoration: none;
}

.sm-delivery__banner-address-link:hover,
.sm-delivery__banner-address-link:focus-visible {
	color: var(--sm-delivery-navy, #003459);
	text-decoration: underline;
}

.sm-delivery__steps-section {
	margin-top: 0.25rem;
	padding: 1.5rem 1.25rem 1.75rem;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
	.sm-delivery__steps-section {
		padding: 2rem 2.25rem 2.25rem;
	}
}

.sm-delivery__steps-section .sm-delivery__section-title--standalone {
	margin-bottom: 1.5rem;
}

.sm-delivery__steps-grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.sm-delivery__steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.sm-delivery__steps-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

.sm-delivery__step-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem 1.25rem 1.75rem;
	border-radius: 0.75rem;
	background: #f7f7f7;
	text-align: center;
}

.sm-delivery__step-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 7rem;
	margin-bottom: 1rem;
}

.sm-delivery__step-icon {
	display: block;
	width: auto;
	max-width: 7.5rem;
	height: auto;
	max-height: 7.5rem;
	object-fit: contain;
}

.sm-delivery__step-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #4b5563;
}

.sm-delivery__step-num {
	font-weight: 700;
	color: #111827;
}

.sm-delivery__faq-section {
	margin-top: 0.25rem;
}

.sm-delivery__faq {
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.sm-delivery__faq-item {
	border-bottom: 1px solid #e5e7eb;
}

.sm-delivery__faq-item:first-child {
	border-top: 1px solid #e5e7eb;
}

.sm-delivery__faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1.1rem 1.25rem;
	border: 0;
	background: transparent;
	text-align: left;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: #111827;
	cursor: pointer;
	transition: color 0.15s ease;
}

@media (min-width: 768px) {
	.sm-delivery__faq-q {
		padding: 1.15rem 1.75rem;
	}
}

.sm-delivery__faq-item.is-open .sm-delivery__faq-q {
	color: #4b7b9b;
}

.sm-delivery__faq-q:hover,
.sm-delivery__faq-q:focus-visible {
	color: #4b7b9b;
}

.sm-delivery__faq-q-text {
	flex: 1;
	min-width: 0;
}

.sm-delivery__faq-chevron {
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: -0.2rem;
	transition: transform 0.2s ease;
}

.sm-delivery__faq-item.is-open .sm-delivery__faq-chevron {
	transform: rotate(-135deg);
	margin-top: 0.15rem;
}

.sm-delivery__faq-a-wrap {
	display: none;
	padding: 0 1.25rem 1.15rem;
}

@media (min-width: 768px) {
	.sm-delivery__faq-a-wrap {
		padding: 0 1.75rem 1.25rem;
	}
}

.sm-delivery__faq-item.is-open .sm-delivery__faq-a-wrap {
	display: block;
}

.sm-delivery__faq-a {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #6b7280;
}

/* Контакты (старые утилиты — доставка и пр.) */
.sm-info-page__grid-2 {
	display: grid;
	gap: 0;
}

@media (min-width: 768px) {
	.sm-info-page__grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}

.sm-info-page__col {
	padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
	.sm-info-page__col {
		padding: 2.5rem 2.5rem;
	}

	.sm-info-page__col + .sm-info-page__col {
		border-left: 1px solid #f3f4f6;
	}
}

.sm-info-page__col--muted {
	background: rgba(250, 249, 246, 0.5);
}

.sm-info-page__label {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #9ca3af;
}

.sm-info-page__label:not(:first-child) {
	margin-top: 2rem;
}

.sm-info-page__address-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sm-info-page__address-card {
	padding: 1rem 1.125rem;
	border-radius: 0.75rem;
	border: 1px solid #f3f4f6;
	background: #faf9f6;
}

.sm-info-page__address-card a {
	color: #111827;
	font-weight: 600;
	text-decoration: none;
}

.sm-info-page__address-card a:hover {
	color: #4b7b9b;
}

.sm-info-page__address-meta {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: #6b7280;
}

.sm-info-page__link {
	font-size: 1.0625rem;
	font-weight: 600;
	color: #4b7b9b;
	text-decoration: none;
}

.sm-info-page__link:hover {
	color: #003459;
}

.sm-info-page__link--tel {
	font-size: 1.25rem;
}

.sm-info-page__dl {
	margin: 0;
}

.sm-info-page__dl dt {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #9ca3af;
}

.sm-info-page__dl dd {
	margin: 0.25rem 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.sm-info-page__map-wrap {
	margin-top: 0;
	border-top: 1px solid #f3f4f6;
	overflow: hidden;
}

.sm-info-page__map {
	display: block;
	width: 100%;
	min-height: 280px;
	border: 0;
}

@media (min-width: 768px) {
	.sm-info-page__map {
		min-height: 360px;
	}
}

/* Доставка */
.sm-info-page__highlight {
	margin: 0 0 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #e8f0f5 0%, #f0f7fa 100%);
	border: 1px solid #d4e0e8;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #003459;
}

.sm-info-page__zones {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.sm-info-page__zone-card {
	padding: 1.25rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid #f3f4f6;
	background: #faf9f6;
}

.sm-info-page__zone-card--kad {
	border-left: 4px solid #22c55e;
}

.sm-info-page__zone-card--out {
	border-left: 4px solid #eab308;
}

.sm-info-page__zone-title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	color: #001f3f;
}

.sm-info-page__list {
	margin: 0;
	padding-left: 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #374151;
}

.sm-info-page__list li + li {
	margin-top: 0.35rem;
}

.sm-info-page__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: sm-step;
}

.sm-info-page__step {
	position: relative;
	padding-left: 2.75rem;
	margin-bottom: 1.25rem;
}

.sm-info-page__step::before {
	counter-increment: sm-step;
	content: counter(sm-step);
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	background: #003459;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
}

.sm-info-page__step-title {
	margin: 0 0 0.35rem;
	font-weight: 600;
	color: #111827;
}

.sm-info-page__step-text {
	margin: 0;
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.55;
}

.sm-info-page__faq {
	border-top: 1px solid #f3f4f6;
	padding: 2rem 1.5rem;
	background: rgba(250, 249, 246, 0.4);
}

@media (min-width: 768px) {
	.sm-info-page__faq {
		padding: 2.5rem 2.5rem;
	}
}

.sm-info-page__faq-item {
	border-bottom: 1px solid #e5e7eb;
}

.sm-info-page__faq-item:first-child {
	border-top: 1px solid #e5e7eb;
}

.sm-info-page__faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1rem 0;
	border: 0;
	background: transparent;
	text-align: left;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
}

.sm-info-page__faq-q::after {
	content: "+";
	flex-shrink: 0;
	font-size: 1.25rem;
	font-weight: 400;
	color: #4b7b9b;
}

.sm-info-page__faq-item.is-open .sm-info-page__faq-q::after {
	content: "−";
}

.sm-info-page__faq-a {
	display: none;
	margin: 0 0 1rem;
	padding-right: 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #6b7280;
}

.sm-info-page__faq-item.is-open .sm-info-page__faq-a {
	display: block;
}

.sm-info-page__cta {
	margin-top: 2rem;
	text-align: center;
}

.sm-info-page__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-size: 1rem;
	font-weight: 600;
	color: #fff !important;
	background: #003459;
	border-radius: 0.625rem;
	text-decoration: none !important;
	transition: background 0.15s ease;
}

.sm-info-page__btn:hover {
	background: #002a48;
}

/* ——— Политика конфиденциальности ——— */
.sm-info-page--legal .sm-info-page__header {
	padding: 1.75rem 1.5rem 1.25rem;
}

@media (min-width: 768px) {
	.sm-info-page--legal .sm-info-page__header {
		padding: 2rem 2.5rem 1.5rem;
	}
}

.sm-info-page__article--legal .sm-info-page__title {
	font-size: clamp(1.375rem, 2.2vw, 1.75rem);
	line-height: 1.3;
}

.sm-legal-doc {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #374151;
}

.sm-legal-doc__p {
	margin: 0 0 1rem;
}

.sm-legal-doc__section {
	margin-top: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid #f3f4f6;
}

.sm-legal-doc__section:first-of-type {
	margin-top: 1.25rem;
	padding-top: 0;
	border-top: 0;
}

.sm-legal-doc__section-title {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #001f3f;
}

.sm-legal-doc__clause {
	display: flex;
	gap: 0.35rem;
	margin: 0 0 0.75rem;
	text-align: left;
}

.sm-legal-doc__clause-num {
	flex-shrink: 0;
	font-weight: 600;
	color: #003459;
}

.sm-legal-doc__clause-text {
	flex: 1;
	min-width: 0;
}

.sm-legal-doc__list {
	margin: 0 0 1rem;
	padding: 0 0 0 1.25rem;
	list-style: none;
}

.sm-legal-doc__list-item {
	position: relative;
	margin: 0 0 0.5rem;
	padding-left: 0.25rem;
}

.sm-legal-doc__list-item::before {
	content: "—";
	position: absolute;
	left: -1.25rem;
	color: #9ca3af;
}

.sm-legal-doc__requisites .sm-legal-doc__p--req {
	margin-bottom: 0.5rem;
}

.sm-legal-doc__closing {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #f3f4f6;
}

.sm-legal-doc__brand {
	margin: 0.25rem 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	color: #003459;
}

.sm-legal-doc__date {
	margin: 0;
	font-size: 0.875rem;
	color: #6b7280;
}
