.subscribe-page {
	padding: 8px 12px 60px;
	max-width: 1180px;
	margin: 0 auto;
	overflow-x: hidden;
	box-sizing: border-box;
}

.subscribe-header {
	text-align: center;
	padding: 28px 16px 32px;
	margin-bottom: 8px;
}

.subscribe-header__title {
	margin: 0 0 14px;
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.3;
}

.subscribe-header__text {
	margin: 0 auto;
	max-width: 720px;
	color: #fff;
	font-size: 15px;
	line-height: 1.9;
	font-weight: 400;
}

.light-mode .subscribe-header__title,
.light-mode .subscribe-header__text {
	color: #222;
}

.subscribe-desc {
	text-align: center;
	color: #b3b3b3;
	margin-bottom: 22px;
	font-size: 14px;
}

.payment-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px;
	margin: 0 auto 36px;
	background: #0d0d12;
	border: 1px solid #2a2a33;
	border-radius: 5px;
	width: fit-content;
	max-width: 100%;
	box-sizing: border-box;
}

.payment-toggle__btn {
	flex: 1;
	border: 0;
	background: transparent;
	color: #f5f5f5;
	padding: 12px 18px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
	white-space: nowrap;
}

.payment-toggle__btn.is-active {
	background: #f1b942;
	color: #111;
}

.subscribe-panel {
	display: none;
}

.subscribe-panel.is-active {
	display: block;
}

.subscribe-empty {
	text-align: center;
	color: #999;
	padding: 40px 0;
}

.plan-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.plan-card {
	position: relative;
	width: 190px;
	min-height: 280px;
	padding: 28px 18px 20px;
	border: 1px solid #f1b942;
	border-radius: 5px;
	background: #050508;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(241, 185, 66, 0.08);
}

.plan-card--featured {
	background: #f1b942;
	color: #111;
}

.plan-card__ribbon {
	position: absolute;
	top: 14px;
	left: -34px;
	width: 120px;
	background: #c44536;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	padding: 4px 0;
	transform: rotate(-45deg);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.plan-card__title {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	margin-top: 18px;
}

.plan-card__pricing {
	text-align: center;
	margin: 18px 0 22px;
}

.plan-card__old {
	font-size: 18px;
	opacity: 0.75;
	text-decoration: line-through;
	margin-bottom: 4px;
}

.plan-card__price {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.1;
}

.plan-card__currency {
	font-size: 14px;
	margin-top: 4px;
	opacity: 0.9;
}

.plan-card__btn {
	width: 100%;
	border: 0;
	border-radius: 8px;
	padding: 11px 12px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	background: #f1b942;
	color: #111;
	transition: transform .15s ease, opacity .15s ease;
}

.plan-card--featured .plan-card__btn {
	background: #111;
	color: #f1b942;
}

.plan-card__btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.light-mode .subscribe-page .plan-card {
	background: #fff;
	color: #111;
}

.light-mode .subscribe-page .plan-card--featured {
	background: #f1b942;
}

.light-mode .payment-toggle {
	background: #f3f3f3;
	border-color: #ddd;
}

.light-mode .payment-toggle__btn {
	color: #333;
}

.light-mode .payment-toggle__btn.is-active {
	color: #111;
}

@media (max-width: 768px) {
	.payment-toggle {
		flex-direction: column;
		border-radius: 18px;
		width: 100%;
		max-width: 100%;
	}

	.payment-toggle__btn {
		width: 100%;
		white-space: normal;
	}

	.plan-card {
		width: calc(50% - 12px);
		min-width: 150px;
	}

	.plan-card__title {
		font-size: 22px;
	}

	.plan-card__price {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.plan-card {
		width: 100%;
		max-width: 280px;
	}
}
