/* 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);
}

/* Summary fallback message */

.btm-pr-plan-summary-message {
	max-width: 640px;
	margin: 40px auto;
	padding: 18px 20px;
	border: 1px solid #d9dfe7;
	border-radius: 14px;
	background: #fff;
	color: var(--btm-pr-text-strong);
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
	box-shadow: 0 18px 50px rgba(24, 39, 75, 0.06);
}


/* Plan summary page */

.btm-pr-summary-page {
	padding: 48px 20px;
	display: flex;
	justify-content: center;
}

.btm-pr-summary-shell {
	width: 100%;
	max-width: 640px;
}

.btm-pr-summary-top {
	text-align: center;
	margin-bottom: 24px;
}

.btm-pr-summary-title {
	margin: 0;
	font-size: 38px;
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--btm-pr-text);
}

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

.btm-pr-summary-help {
	position: relative;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	margin-left: 6px;
}

.btm-pr-summary-help__trigger {
	appearance: none;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 1px solid #b8c4d3;
	border-radius: 50%;
	background: #fff;
	color: var(--btm-pr-text-muted);
	font-size: 11px;
	line-height: 1;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btm-pr-summary-help__trigger:hover {
	border-color: var(--btm-pr-btn-primary-bg);
	color: var(--btm-pr-btn-primary-bg);
}

.btm-pr-summary-help__popup {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	transform: translateX(-50%);
	width: 260px;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--btm-pr-text);
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
	text-align: left;
	box-shadow: 0 12px 30px rgba(24, 39, 75, 0.22);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .15s ease, visibility .15s ease;
	z-index: 20;
}

.btm-pr-summary-help__popup::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: var(--btm-pr-text) transparent transparent transparent;
}

.btm-pr-summary-help.is-open .btm-pr-summary-help__popup {
	opacity: 1;
	visibility: visible;
}

.btm-pr-summary-card {
	background: #fff;
	border: 1px solid #d9dfe7;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(24, 39, 75, 0.08);
	overflow: hidden;
}

.btm-pr-summary-card__main {
	padding: 26px;
}

.btm-pr-summary-card__header {
	margin-bottom: 22px;
}

.btm-pr-summary-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 8px;
}

.btm-pr-summary-card__eyebrow {
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--btm-pr-text-muted);
}

.btm-pr-summary-change {
	appearance: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--btm-pr-btn-primary-bg);
	font-size: 13px;
	line-height: .8;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
}

.btm-pr-summary-change:hover {
	color: var(--btm-pr-btn-primary-bg-hover);
	text-decoration: underline;
}

.btm-pr-summary-card__name {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--btm-pr-text-strong);
}

.btm-pr-summary-pricing {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.btm-pr-summary-price {
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
    padding-left: 3px;
    color: #474a4e;
}

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

.btm-pr-summary-badge-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.btm-pr-summary-note {
	font-size: 14px;
	line-height: 1.45;
	color: var(--btm-pr-text-muted);
	font-weight: 600;
}

.btm-pr-summary-includes {
	border-top: 1px solid #edf1f5;
	padding-top: 22px;
	margin-top: 4px;
}

.btm-pr-summary__benefits {
	margin-top: 14px;
}

.btm-pr-summary-card__footer {
	padding: 22px 26px 26px;
	background: #fff;
	border-top: 1px solid #edf1f5;
}

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

.btm-pr-summary-cta-note {
	margin: 12px 0 0;
	text-align: center;
	font-size: 13px;
	line-height: 1.45;
	color: var(--btm-pr-text-muted);
	font-weight: 600;
}


@media (max-width: 640px) {
	.btm-pr-summary-page {
		padding: 24px 0;
	}

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

	.btm-pr-summary-subtitle {
		font-size: 15px;
	}

	.btm-pr-summary-help__popup {
		width: 220px;
	}

	.btm-pr-summary-card__main,
	.btm-pr-summary-card__footer {
		padding-left: 16px;
		padding-right: 16px;
	}

	.btm-pr-summary-card__topline {
		align-items: flex-start;
	}

	.btm-pr-summary-price {
		font-size: 36px;
	}
}

