.promo-offer {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	gap: 1.375rem;
	padding: 1.5rem 1.125rem;
	border: 2px solid #f3e1b0;
	border-radius: 22px;
	background: #fdf8ef;
	box-shadow: 0 8px 26px rgba(255, 188, 39, 0.08);
	text-align: center;
}

.promo-offer__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.promo-offer__clock {
	width: 5.5rem;
	flex-shrink: 0;
}

.promo-offer__clock svg {
	display: block;
	width: 100%;
	height: auto;
}

.promo-offer__headline {
	min-width: 0;
}

.promo-offer__title {
	margin: 0;
	color: var(--brand-navy);
	font-family: var(--font-sans);
	font-size: clamp(1.75rem, 4.5vw, 2.125rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.promo-offer__title-nowrap {
	white-space: nowrap;
}

.promo-offer__period {
	margin: 0.5rem 0 0;
	color: var(--color-text-muted);
	font-size: clamp(1rem, 2vw, 1.0625rem);
	font-weight: 600;
	line-height: 1.35;
}

.promo-offer__divider {
	width: 80%;
	height: 1px;
	background: #ead7ae;
}

.promo-offer__perk {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	margin: 0;
	max-width: 21.25rem;
}

.promo-offer__perk-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 5px 14px rgba(17, 95, 125, 0.08);
	font-size: 1.75rem;
	line-height: 1;
}

.promo-offer__perk-text {
	color: var(--color-text);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
}

.promo-offer__perk-accent {
	color: var(--brand-coral);
}

.promo-offer__perk-gift {
	color: var(--brand-green);
}

.promo-offer--compact .promo-offer__clock {
	width: 4.5rem;
}

.promo-offer--compact .promo-offer__title {
	font-size: clamp(1.5rem, 4vw, 1.875rem);
}

.promo-offer--compact .promo-offer__perk-icon {
	width: 3rem;
	height: 3rem;
	font-size: 1.5rem;
}

.platform-pricing__promo {
	width: 100%;
	margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 640px) {
	.promo-offer__perk {
		flex-direction: row;
		text-align: left;
	}

	.promo-offer__clock {
		width: 7rem;
	}

	.promo-offer--compact .promo-offer__clock {
		width: 5.5rem;
	}
}

@media (min-width: 960px) {
	.promo-offer {
		grid-template-columns: 1.1fr auto 1fr 1fr;
		align-items: center;
		justify-items: stretch;
		gap: 0 2.125rem;
		padding: 1.625rem 2.5rem;
		border-radius: 26px;
		text-align: left;
	}

	.promo-offer__intro {
		flex-direction: row;
		align-items: center;
		gap: 1.125rem;
		text-align: left;
	}

	.promo-offer__divider {
		align-self: stretch;
		width: 1px;
		height: auto;
		margin: 0.5rem 0;
	}

	.promo-offer__perk {
		max-width: none;
	}

	.promo-offer--compact {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 1.125rem;
		padding: 1.25rem 1.125rem;
		text-align: center;
	}

	.promo-offer--compact .promo-offer__intro {
		flex-direction: column;
		text-align: center;
	}

	.promo-offer--compact .promo-offer__divider {
		width: 80%;
		height: 1px;
		margin: 0;
	}

	.promo-offer--compact .promo-offer__perk {
		flex-direction: row;
		text-align: left;
		max-width: 22rem;
	}
}
