/* PRICING BLOCK */

:root {
	--btm-pr-btn-primary-bg: #1f7ae0;
	--btm-pr-btn-primary-bg-hover: #186dca;
	--btm-pr-btn-primary-border: #1b6dca;
	--btm-pr-btn-primary-border-hover: #165fb0;
	--btm-pr-btn-primary-text: #ffffff;

	--btm-pr-btn-secondary-bg: #f8fafc;
	--btm-pr-btn-secondary-bg-hover: #f3f7fb;
	--btm-pr-btn-secondary-border: #b6c5d8;
	--btm-pr-btn-secondary-border-hover: #b6c5d8;
	--btm-pr-btn-secondary-text: #24364f;

	--btm-pr-badge-bg: #ffcf38;
	--btm-pr-badge-text: #000000;

	--btm-pr-text: #2e3642;
	--btm-pr-text-strong: #242628;
	--btm-pr-text-muted: #6f8097;

	--btm-pr-container: 1040px;
}

.btm-pr-page *,
.btm-pr-summary-page *,
.btm-pr-modal * {
	box-sizing: border-box;
}

.btm-pr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.btm-pr-btn--primary {
	border: 1px solid var(--btm-pr-btn-primary-border);
	background: var(--btm-pr-btn-primary-bg);
	color: var(--btm-pr-btn-primary-text) !important;
}

.btm-pr-btn--primary:hover {
	background: var(--btm-pr-btn-primary-bg-hover);
	border-color: var(--btm-pr-btn-primary-border-hover);
	color: var(--btm-pr-btn-primary-text) !important;
}

.btm-pr-btn--secondary {
	border: 1px solid var(--btm-pr-btn-secondary-border);
	background: var(--btm-pr-btn-secondary-bg);
	color: var(--btm-pr-btn-secondary-text) !important;
}

.btm-pr-btn--secondary:hover {
	background: var(--btm-pr-btn-secondary-bg-hover);
	border-color: var(--btm-pr-btn-secondary-border-hover);
	color: var(--btm-pr-btn-secondary-text) !important;
}

.btm-pr-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--btm-pr-badge-bg);
	color: var(--btm-pr-badge-text);
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	white-space: nowrap;
}

.btm-pr-text-muted {
	color: var(--btm-pr-text-muted);
}

.btm-pr-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.btm-pr-check-list li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	line-height: 1.45;
	color: var(--btm-pr-text-strong);
	font-weight: 600;
}

.btm-pr-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--btm-pr-btn-primary-bg);
}

.btm-pr-section-label {
	margin: 0;
	padding-left: 25px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--btm-pr-text-muted);
}


/* Pricing page */

.btm-pr-page {
	background: #ffffff;
	color: var(--btm-pr-text);
}

.btm-pr-page__container {
	width: min(100% - 32px, var(--btm-pr-container));
	margin: 0 auto;
}

.btm-pr-page__hero {
	padding: 52px 0 24px;
	text-align: center;
}

.btm-pr-page__title {
	margin: 0 !important;
	font-size: 44px;
	line-height: 1.02;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: var(--btm-pr-text);
}

.btm-pr-page__subtitle {
	max-width: 520px;
	margin: 24px auto 0;
	font-size: 17px;
	line-height: 1.55;
	color: var(--btm-pr-text-muted);
	font-weight: 500;
}

.btm-pr-page__plans {
	padding: 8px 0 40px;
}

.btm-pr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 24px;
}

.btm-pr-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100%;
	padding: 24px;
	border: 1px solid #d9dfe7;
	border-radius: 18px;
	background: #fcfafa;
	box-shadow: 0 0 4px 1px rgba(24, 39, 75, 0.03);
	text-align: center;
}

.btm-pr-card--featured {
	border-color: #c8dffd;
	background: #f8fbff;
	box-shadow: 0 12px 28px rgba(31, 122, 224, 0.08);
}

.btm-pr-card__badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 2;
}

.btm-pr-card__title {
	margin: 0;
	width: 100%;
	min-height: 58px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	font-size: 26px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--btm-pr-text-strong);
}

.btm-pr-card__price-row {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
	min-height: 52px;
	width: 100%;
}

.btm-pr-card__price {
    font-size: 29px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: #3d4144;
}

.btm-pr-card__old-price {
	font-size: 17px;
	line-height: 1.2;
	font-weight: 700;
	color: #95a1b1;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: #d14343;
}

.btm-pr-card__desc {
	margin: 14px 0 0;
	width: 100%;
	min-height: 70px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	font-size: 15px;
	line-height: 1.55;
	color: var(--btm-pr-text-muted);
	font-weight: 500;
}

.btm-pr-card__meta {
	margin-top: 10px;
	width: 100%;
	min-height: 22px;
	text-align: center;
	font-size: 14px;
	line-height: 1.45;
	color: var(--btm-pr-text-muted);
	font-weight: 600;
}

.btm-pr-card__actions {
	margin-top: auto;
	padding-top: 24px;
	width: 100%;
}

.btm-pr-card__button {
	width: 100%;
	min-height: 52px;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
}

/* Benefits and FAQ */

.btm-pr-section {
	padding: 24px 0;
}

.btm-pr-section--benefits {
	padding-top: 8px;
	margin-top: 20px;
	margin-bottom: 30px;
}

.btm-pr-section--faq {
	padding-top: 26px;
	padding-bottom: 72px;
}

.btm-pr-section__head {
	text-align: center;
	max-width: 660px;
	margin: 0 auto 22px;
}

.btm-pr-section__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 700;
	color: var(--btm-pr-text);
}

.btm-pr-section__subtitle {
	margin: 12px auto 0;
	font-size: 16px;
	line-height: 1.55;
	color: var(--btm-pr-text-muted);
	font-weight: 500;
}

.btm-pr-benefits {
	max-width: 860px;
	margin: 0 auto;
	padding: 26px;
	border: 1px solid #d9dfe7;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 0 4px 1px rgba(24, 39, 75, 0.03);
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 28px;
	align-items: start;
}

.btm-pr-benefits__title {
	margin: 0;
	font-size: 30px;
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 700;
	color: var(--btm-pr-text);
}

.btm-pr-benefits__text {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--btm-pr-text-muted);
	font-weight: 500;
}

.btm-pr-benefits__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 18px;
}

.btm-pr-benefits__list li {
	position: relative;
	padding-left: 26px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--btm-pr-text-strong);
	font-weight: 600;
}

.btm-pr-benefits__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--btm-pr-btn-primary-bg);
}

.btm-pr-benefits__list strong {
	display: block;
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 1.35;
	color: var(--btm-pr-text-strong);
	font-weight: 700;
}

.btm-pr-benefit-list-title {
	display: block;
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 1.35;
	color: var(--btm-pr-text-strong);
	font-weight: 700;
}

.btm-pr-benefit-list-text {
	display: block;
	font-size: 15px;
	line-height: 1.5;
	color: var(--btm-pr-text-muted);
	font-weight: 500;
}

.btm-pr-faq {
	max-width: 760px;
	margin: 0 auto;
	border-top: 1px solid #edf1f5;
}

.btm-pr-faq__item {
	border-bottom: 1px solid #edf1f5;
	padding: 0;
}

.btm-pr-faq__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	cursor: pointer;
}

.btm-pr-faq__question {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
	color: var(--btm-pr-text-strong);
}

.btm-pr-faq__icon {
	flex: 0 0 auto;
	color: #95a1b1;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	transition: transform .22s ease, color .22s ease;
	transform-origin: center;
}

.btm-pr-faq__answer-wrap {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .28s ease, opacity .22s ease;
}

.btm-pr-faq__answer {
	padding: 0 28px 18px 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--btm-pr-text-muted);
	font-weight: 500;
}

.btm-pr-faq__item.is-open .btm-pr-faq__answer-wrap {
	opacity: 1;
}

.btm-pr-faq__item.is-open .btm-pr-faq__icon {
	transform: rotate(45deg);
	color: var(--btm-pr-text-strong);
}


/* Responsive */

@media (max-width: 960px) {
	.btm-pr-page__plans {
		padding: 8px 0 20px;
	}

	.btm-pr-benefits {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.btm-pr-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.btm-pr-card__title,
	.btm-pr-card__desc,
	.btm-pr-card__price-row,
	.btm-pr-card__meta {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.btm-pr-page__container {
		width: min(100% - 20px, var(--btm-pr-container));
	}

	.btm-pr-page__hero {
		padding: 14px 0 8px;
	}

	.btm-pr-page__title {
		font-size: 30px;
	}

	.btm-pr-page__subtitle,
	.btm-pr-section__subtitle {
		font-size: 15px;
	}

	.btm-pr-section__title {
		font-size: 28px;
	}

	.btm-pr-benefits__title {
		font-size: 26px;
	}

	.btm-pr-card {
		padding: 18px;
	}

	.btm-pr-card__title {
		font-size: 24px;
	}

	.btm-pr-card__price {
		font-size: 29px;
	}

	.btm-pr-card__desc {
		min-height: 0;
	}

	.btm-pr-faq__row {
		padding: 16px 0;
	}
}

