/* ================================================
   AMOTZ — OFFER  "הצעד הבא מתחיל כאן"  (Figma 570:1980)
   ================================================
   band      1440x892 · #0C0C0C · padding 80/60 · gap 90
   glow      682x450 gold ellipse, centred
   headline  Polin Semibold 72/1.2 · tracking 1 · #F5F2EA
   struck    two struck-through prices either side of a 47px rule · #9A8E7E
   price     Polin Bold 48/1.4 · tracking 1 · #DDA833 · two authored lines
   lead      Polin Medium 18/1.4 · white · 565px
   signoff   Polin Medium 34/1.4 · tracking -0.34 · rgba(245,242,234,.45)
   ================================================ */

.az-offer {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 90px;
	padding: 80px var(--az-edge);
	overflow: hidden;
	background-color: var(--az-ink);
}

.az-offer__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	width: 1082px;
	max-width: 100%;
	height: 850px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	pointer-events: none;
}

.az-offer__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	width: 100%;
	max-width: 883px;
	text-align: center;
}

.az-offer__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
}

.az-offer__title {
	font-size: 72px;
	font-weight: 600; /* Polin Semibold — the largest type in the design */
	line-height: 1.2;
	letter-spacing: 1px;
	color: #F5F2EA;
}

/* ------------------------------------------------
   STRUCK-THROUGH PRICES
   ------------------------------------------------
   Two labelled prices either side of a 47px vertical rule. The main course comes first in
   source, which under dir="rtl" puts it on the right — the same order the design has, and the
   order a Hebrew reader takes them in.

   The rule is a 47px line rotated -90° in Figma inside a zero-width box; a 1px x 47px block
   is the same mark without the transform. */
.az-offer__compare {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

.az-offer__compare-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #9A8E7E;
}

.az-offer__compare-label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

/* `line-through` rather than a <del> border trick, so the strike follows the font's own
   metrics — the design uses `text-decoration-skip-ink: none`, i.e. the line runs unbroken
   through descenders. */
.az-offer__compare-price {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: line-through;
	text-decoration-skip-ink: none;
	white-space: nowrap;
}

.az-offer__compare-rule {
	flex-shrink: 0;
	width: 1px;
	height: 47px;
	background-color: #9A8E7E;
}

/* ------------------------------------------------
   PRICE
   ------------------------------------------------ */
.az-offer__price-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: 806px;
}

.az-offer__price {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 1px;
	color: #DDA833;
}

/* The design breaks the price into two explicit lines. */
.az-offer__price span {
	display: block;
}

.az-offer__price-note {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(245, 242, 234, 0.5);
}

/* ------------------------------------------------
   CTA
   ------------------------------------------------ */
.az-offer__cta-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
	max-width: 565px;
}

.az-offer__lead {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #FFFFFF;
}

.az-offer__cta-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 330px;
	max-width: 100%;
}

.az-offer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 14px 28px;
	border-radius: 1000px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.az-offer__cta:hover,
.az-offer__cta:focus-visible {
	filter: brightness(1.06);
	transform: translateY(-1px);
	color: #FFFFFF;
}

.az-offer__fineprint {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.16px;
	color: #8C8578;
	white-space: nowrap;
}

.az-offer__signoff {
	position: relative;
	z-index: 1;
	font-size: 34px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.34px;
	color: rgba(245, 242, 234, 0.45);
	text-align: center;
}

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 1024px) {
	.az-offer {
		padding: 72px 32px;
		gap: 60px;
	}

	.az-offer__inner {
		gap: 44px;
	}
}

@media (max-width: 640px) {
	.az-offer {
		padding: 56px 20px;
		gap: 44px;
	}

	.az-offer__compare {
		gap: 28px;
	}

	.az-offer__cta-col {
		width: 100%;
	}

	.az-offer__cta {
		width: 100%;
	}

	.az-offer__fineprint {
		white-space: normal;
	}

	/* See the !important note in amotz-announcement-bar.css. 72px and 48px are the two largest
	   sizes anywhere in this design and neither survives a phone untouched. */
	.az-offer__title {
		font-size: clamp(32px, 9vw, 46px) !important;
		letter-spacing: 0 !important;
	}

	.az-offer__price {
		font-size: clamp(26px, 7.5vw, 36px) !important;
		letter-spacing: 0 !important;
	}

	.az-offer__signoff {
		font-size: clamp(20px, 5.5vw, 26px) !important;
	}

	.az-offer__lead {
		font-size: 16px !important;
	}
}
