/**
 * Hamenagen - דף נחיתה למפרסמים
 */

html[data-hm-theme="light"] .hm-adv,
html:not([data-hm-theme]) .hm-adv {
	--hm-adv-brand: #cb1e53;
	--hm-adv-brand-2: #e0285f;
	--hm-adv-heading: #20215a;
	--hm-adv-text: #333;
	--hm-adv-muted: #666;
	--hm-adv-bg: #f7f6ff;
	--hm-adv-surface: #ffffff;
	--hm-adv-border: rgba(32, 33, 90, 0.12);
	--hm-adv-glow: rgba(203, 30, 83, 0.2);
	--hm-adv-hero-bg: linear-gradient(165deg, #f0eeff 0%, #fff5f8 45%, #f7f6ff 100%);
}

html[data-hm-theme="dark"] .hm-adv {
	--hm-adv-brand: #cb1e53;
	--hm-adv-brand-2: #ff4d7a;
	--hm-adv-heading: #f5f5f7;
	--hm-adv-text: rgba(245, 245, 247, 0.9);
	--hm-adv-muted: rgba(245, 245, 247, 0.55);
	--hm-adv-bg: #141428;
	--hm-adv-surface: #1e1e3a;
	--hm-adv-border: rgba(255, 255, 255, 0.1);
	--hm-adv-glow: rgba(203, 30, 83, 0.35);
	--hm-adv-hero-bg: linear-gradient(165deg, #0f0f22 0%, #1a1030 50%, #141428 100%);
}

.hm-adv,
.hm-adv * {
	font-family: "פולין", "Polin", sans-serif !important;
	box-sizing: border-box;
}

/* מניעת גלילה אופקית בדף המפרסמים (במיוחד מובייל + RTL) */
body.hm-advertisers-landing-active {
	overflow-x: hidden;
}

.hm-adv {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	direction: rtl;
	color: var(--hm-adv-text);
	background: var(--hm-adv-bg);
	overflow-x: hidden;
	position: relative;
}

.hm-adv__container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.hm-adv__section {
	padding: 4.5rem 0;
}

.hm-adv__title {
	margin: 0 0 1rem;
	font-size: clamp(1.6rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--hm-adv-heading);
	line-height: 1.25;
}

.hm-adv__title--center {
	text-align: center;
}

.hm-adv__lead {
	margin: 0 0 2rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--hm-adv-muted);
	max-width: 640px;
}

.hm-adv__lead--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* Hero */
.hm-adv__hero {
	position: relative;
	padding: 5rem 0 0;
	background: var(--hm-adv-hero-bg);
	overflow: hidden;
}

.hm-adv__hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hm-adv__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
}

.hm-adv__orb--1 {
	width: 420px;
	height: 420px;
	background: var(--hm-adv-brand);
	top: -120px;
	left: -80px;
	animation: hm-adv-float 12s ease-in-out infinite;
}

.hm-adv__orb--2 {
	width: 320px;
	height: 320px;
	background: #20215a;
	bottom: 0;
	right: -60px;
	animation: hm-adv-float 10s ease-in-out infinite reverse;
}

.hm-adv__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(203, 30, 83, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(203, 30, 83, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

@keyframes hm-adv-float {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(20px, -15px);
	}
}

.hm-adv__hero-inner {
	position: relative;
	text-align: center;
	padding-bottom: 3rem;
}

.hm-adv__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--hm-adv-brand);
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 999px;
}

.hm-adv__pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hm-adv-brand);
	animation: hm-adv-pulse 2s ease infinite;
}

@keyframes hm-adv-pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.3);
	}
}

.hm-adv__hero-title {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--hm-adv-heading);
}

.hm-adv__gradient-text {
	background: linear-gradient(135deg, var(--hm-adv-brand), #ff6b9d, var(--hm-adv-brand-2));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: hm-adv-shine 4s linear infinite;
}

@keyframes hm-adv-shine {
	to {
		background-position: 200% center;
	}
}

.hm-adv__hero-lead {
	margin: 0 auto 2rem;
	max-width: 620px;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--hm-adv-muted);
}

.hm-adv__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 3rem;
}

.hm-adv__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hm-adv__btn--primary {
	color: #fff !important;
	background: var(--hm-adv-brand) !important;
	box-shadow: 0 8px 28px var(--hm-adv-glow);
}

.hm-adv__btn--primary:hover {
	background: var(--hm-adv-brand-2) !important;
	transform: translateY(-2px);
}

.hm-adv__btn--ghost {
	color: var(--hm-adv-heading) !important;
	background: var(--hm-adv-surface) !important;
	border-color: var(--hm-adv-border) !important;
}

.hm-adv__btn--outline {
	color: var(--hm-adv-brand) !important;
	background: transparent !important;
	border-color: var(--hm-adv-brand) !important;
}

.hm-adv__btn--full {
	width: 100%;
}

.hm-adv__hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: 800px;
	margin: 0 auto;
}

.hm-adv__hero-stat {
	padding: 1.25rem 0.75rem;
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.hm-adv__hero-stat-num {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--hm-adv-brand);
	line-height: 1.2;
}

.hm-adv__hero-stat-label {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.8rem;
	color: var(--hm-adv-muted);
}

/* Marquee */
.hm-adv__marquee {
	position: relative;
	padding: 1rem 0;
	border-top: 1px solid var(--hm-adv-border);
	background: var(--hm-adv-surface);
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.hm-adv__marquee-track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	max-width: none;
	animation: hm-adv-marquee 30s linear infinite;
	will-change: transform;
}

.hm-adv__marquee-item {
	flex-shrink: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hm-adv-muted);
	white-space: nowrap;
}

.hm-adv__marquee-item::before {
	content: "◆";
	margin-left: 0.5rem;
	color: var(--hm-adv-brand);
	font-size: 0.5rem;
	vertical-align: middle;
}

@keyframes hm-adv-marquee {
	to {
		transform: translateX(50%);
	}
}

/* Split / Unique */
.hm-adv__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hm-adv__checklist {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.hm-adv__checklist li {
	position: relative;
	padding: 0.6rem 1.75rem 0.6rem 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.hm-adv__checklist li::before {
	content: "✓";
	position: absolute;
	right: 0;
	color: var(--hm-adv-brand);
	font-weight: 700;
}

.hm-adv__split-visual {
	overflow: hidden;
	min-width: 0;
}

.hm-adv__radar {
	position: relative;
	width: min(280px, 100%);
	height: auto;
	aspect-ratio: 1;
	margin: 0 auto;
	max-width: 100%;
}

.hm-adv__radar-ring {
	position: absolute;
	inset: 0;
	border: 1px solid var(--hm-adv-border);
	border-radius: 50%;
	animation: hm-adv-radar 3s ease-out infinite;
}

.hm-adv__radar-ring--2 {
	inset: 15%;
	animation-delay: 0.5s;
}

.hm-adv__radar-ring--3 {
	inset: 30%;
	animation-delay: 1s;
}

@keyframes hm-adv-radar {
	0% {
		opacity: 0.8;
		transform: scale(0.95);
	}

	100% {
		opacity: 0;
		transform: scale(1.1);
	}
}

.hm-adv__radar-core {
	position: absolute;
	inset: 38%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hm-adv-brand);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 40px var(--hm-adv-glow);
}

.hm-adv__radar-dot {
	position: absolute;
	padding: 0.3rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 999px;
	white-space: nowrap;
}

.hm-adv__radar-dot--1 {
	top: 8%;
	right: 20%;
}

.hm-adv__radar-dot--2 {
	bottom: 15%;
	left: 5%;
}

.hm-adv__radar-dot--3 {
	top: 40%;
	left: -5%;
}

.hm-adv__radar-dot--4 {
	bottom: 8%;
	right: 10%;
}

/* Audience - תצוגה מקוצרת */
.hm-adv__audience {
	background: var(--hm-adv-surface);
}

.hm-adv__audience-compact {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.hm-adv__audience-headline {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 3.5vw, 1.85rem);
	font-weight: 800;
	color: var(--hm-adv-heading);
	line-height: 1.35;
}

.hm-adv__audience-survey {
	margin: 0 0 1.25rem;
	font-size: 0.88rem;
	color: var(--hm-adv-muted);
}

.hm-adv__audience-survey strong {
	color: var(--hm-adv-brand);
	font-weight: 700;
}

.hm-adv__audience-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.hm-adv__audience-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.55rem 1rem;
	font-size: 0.92rem;
	color: var(--hm-adv-text);
	background: var(--hm-adv-bg);
	border: 1px solid var(--hm-adv-border);
	border-radius: 999px;
	white-space: nowrap;
}

.hm-adv__audience-chip strong {
	color: var(--hm-adv-brand);
	font-weight: 800;
	font-size: 1rem;
}

.hm-adv__audience-chip--more {
	color: var(--hm-adv-muted);
	font-weight: 600;
	border-style: dashed;
	background: transparent;
}

.hm-adv__audience-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.hm-adv__audience-tags span {
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--hm-adv-brand);
	background: rgba(203, 30, 83, 0.08);
	border-radius: 999px;
}

/* Benefits */
.hm-adv__benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.hm-adv__benefit-card {
	padding: 1.75rem;
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 20px;
	transition: transform 0.25s, box-shadow 0.25s;
}

.hm-adv__benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hm-adv__benefit-card[data-hm-reveal] {
	opacity: 0;
	transform: translateY(24px);
}

.hm-adv__benefit-card.is-visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.5s, transform 0.5s;
}

.hm-adv__benefit-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--hm-adv-brand), var(--hm-adv-brand-2));
	opacity: 0.9;
}

.hm-adv__benefit-icon--target {
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	border-radius: 0;
}

.hm-adv__benefit-icon--audio {
	border-radius: 50%;
}

.hm-adv__benefit-icon--chart {
	clip-path: polygon(0 100%, 0 40%, 30% 60%, 60% 20%, 100% 50%, 100% 100%);
	border-radius: 0;
}

.hm-adv__benefit-icon--home {
	clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0 100%, 0 40%);
	border-radius: 0;
}

.hm-adv__benefit-icon--mail {
	border-radius: 8px;
}

.hm-adv__benefit-icon--handshake {
	border-radius: 50% 50% 8px 8px;
}

.hm-adv__benefit-title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--hm-adv-heading);
}

.hm-adv__benefit-desc {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--hm-adv-muted);
}

/* Data */
.hm-adv__data {
	background: linear-gradient(180deg, transparent, rgba(203, 30, 83, 0.04));
}

.hm-adv__data-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.hm-adv__data-card {
	padding: 2rem 1.25rem;
	text-align: center;
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 20px;
}

.hm-adv__data-card[data-hm-reveal] {
	opacity: 0;
	transform: scale(0.95);
}

.hm-adv__data-card.is-visible {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s, transform 0.5s;
}

.hm-adv__data-num {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--hm-adv-brand);
}

.hm-adv__data-suffix {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hm-adv-brand);
}

.hm-adv__data-card p {
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
	color: var(--hm-adv-muted);
}

/* Placements */
.hm-adv__placements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.hm-adv__placement-card {
	padding: 1.25rem;
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 16px;
}

.hm-adv__placement-card[data-hm-reveal] {
	opacity: 0;
	transform: translateY(16px);
}

.hm-adv__placement-card.is-visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.45s, transform 0.45s;
}

.hm-adv__placement-mock {
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: var(--hm-adv-bg);
	border-radius: 10px;
	border: 1px dashed var(--hm-adv-border);
}

.hm-adv__mock-banner {
	height: 36px;
	background: linear-gradient(90deg, var(--hm-adv-brand), var(--hm-adv-brand-2));
	border-radius: 6px;
	opacity: 0.7;
	animation: hm-adv-banner-pulse 2s ease infinite;
}

.hm-adv__placement-mock--banner-square .hm-adv__mock-banner {
	height: 80px;
	width: 80px;
	margin: 0 auto;
}

.hm-adv__placement-mock--banner-mail .hm-adv__mock-banner {
	height: 48px;
}

.hm-adv__placement-mock--banner-tall {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 8px;
	min-height: 88px;
}

.hm-adv__placement-mock--banner-tall .hm-adv__mock-banner {
	width: 18px;
	height: 88px;
	flex: 0 0 18px;
}

.hm-adv__placement-mock--banner-tall .hm-adv__mock-banner:nth-child(2) {
	flex: 1 1 auto;
	height: 28px;
	align-self: flex-start;
}

.hm-adv__mock-player {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 3px;
	height: 48px;
}

.hm-adv__mock-player span {
	display: block;
	width: 4px;
	background: var(--hm-adv-brand);
	border-radius: 2px;
	animation: hm-adv-eq 0.8s ease infinite alternate;
}

.hm-adv__mock-player span:nth-child(1) {
	height: 12px;
	animation-delay: 0s;
}

.hm-adv__mock-player span:nth-child(2) {
	height: 24px;
	animation-delay: 0.1s;
}

.hm-adv__mock-player span:nth-child(3) {
	height: 36px;
	animation-delay: 0.2s;
}

.hm-adv__mock-player span:nth-child(4) {
	height: 20px;
	animation-delay: 0.3s;
}

.hm-adv__mock-player span:nth-child(5) {
	height: 30px;
	animation-delay: 0.15s;
}

@keyframes hm-adv-eq {
	to {
		transform: scaleY(1.4);
	}
}

@keyframes hm-adv-banner-pulse {

	0%,
	100% {
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}
}

.hm-adv__placement-label {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--hm-adv-heading);
}

.hm-adv__placement-size {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--hm-adv-brand);
}

.hm-adv__placement-desc {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--hm-adv-muted);
}

/* Compare */
.hm-adv__compare-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
	border-radius: 16px;
	border: 1px solid var(--hm-adv-border);
}

.hm-adv__compare-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--hm-adv-surface);
	font-size: 0.95rem;
}

.hm-adv__compare-table th,
.hm-adv__compare-table td {
	padding: 1rem 1.25rem;
	text-align: center;
	border-bottom: 1px solid var(--hm-adv-border);
}

.hm-adv__compare-table th:first-child,
.hm-adv__compare-table td:first-child {
	text-align: right;
}

.hm-adv__compare-table thead th {
	background: var(--hm-adv-bg);
	font-weight: 700;
	color: var(--hm-adv-heading);
}

.hm-adv__compare-us {
	background: rgba(203, 30, 83, 0.06) !important;
	font-weight: 600;
}

.hm-adv__yes {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--hm-adv-brand);
	color: #fff;
	border-radius: 50%;
	font-size: 0.85rem;
}

.hm-adv__no {
	color: var(--hm-adv-muted);
}

/* Packages */
.hm-adv__packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.hm-adv__package-card {
	position: relative;
	padding: 2rem 1.5rem;
	background: var(--hm-adv-surface);
	border: 1px solid var(--hm-adv-border);
	border-radius: 20px;
	text-align: center;
}

.hm-adv__package-card.is-featured {
	border-color: var(--hm-adv-brand);
	box-shadow: 0 0 0 1px var(--hm-adv-brand), 0 20px 50px var(--hm-adv-glow);
	transform: scale(1.03);
}

.hm-adv__package-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.3rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	background: var(--hm-adv-brand);
	border-radius: 999px;
}

.hm-adv__package-tag {
	margin: 0 0 0.25rem;
	font-size: 0.8rem;
	color: var(--hm-adv-muted);
}

.hm-adv__package-name {
	margin: 0 0 0.5rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--hm-adv-heading);
}

.hm-adv__package-scope {
	margin: 0 0 1.25rem;
	padding: 0.65rem 0.85rem;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
	color: var(--hm-adv-brand);
	background: rgba(233, 30, 99, 0.08);
	border-radius: 10px;
}

.hm-adv__package-features {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	text-align: right;
}

.hm-adv__package-features li {
	position: relative;
	padding: 0.45rem 1.5rem 0.45rem 0;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--hm-adv-border);
}

.hm-adv__package-features li::before {
	content: "✓";
	position: absolute;
	right: 0;
	color: var(--hm-adv-brand);
	font-weight: 700;
}

.hm-adv__packages-compare {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--hm-adv-border);
}

.hm-adv__packages-compare-title {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 800;
	text-align: center;
	color: var(--hm-adv-heading);
}

.hm-adv__packages-compare-note {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
	text-align: center;
	color: var(--hm-adv-muted);
}

.hm-adv__packages-compare-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.hm-adv__packages-compare-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	background: var(--hm-adv-bg);
	border: 1px solid var(--hm-adv-border);
	border-radius: 16px;
	overflow: hidden;
}

.hm-adv__packages-compare-table th,
.hm-adv__packages-compare-table td {
	padding: 0.85rem 1rem;
	text-align: center;
	border-bottom: 1px solid var(--hm-adv-border);
	font-size: 0.9rem;
}

.hm-adv__packages-compare-table thead th {
	background: var(--hm-adv-surface);
	font-weight: 700;
	color: var(--hm-adv-heading);
}

.hm-adv__packages-compare-table tbody th {
	text-align: right;
	font-weight: 600;
	color: var(--hm-adv-text);
	background: var(--hm-adv-surface);
}

.hm-adv__packages-compare-table td.is-yes {
	color: var(--hm-adv-brand);
	font-weight: 700;
}

.hm-adv__packages-compare-table td.is-opt {
	color: var(--hm-adv-heading);
	font-weight: 600;
}

.hm-adv__packages-compare-table td.is-no {
	color: var(--hm-adv-muted);
}

/* Testimonials */
.hm-adv__testimonials {
	background: var(--hm-adv-surface);
}

.hm-adv__testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 1.5rem;
}

.hm-adv__testimonial {
	margin: 0;
	padding: 2rem;
	background: var(--hm-adv-bg);
	border: 1px solid var(--hm-adv-border);
	border-radius: 20px;
	border-right: 4px solid var(--hm-adv-brand);
}

.hm-adv__testimonial-quote {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.7;
	font-style: italic;
	color: var(--hm-adv-text);
}

.hm-adv__testimonial-who {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--hm-adv-muted);
	font-style: normal;
}

/* Contact */
.hm-adv__contact {
	background: linear-gradient(180deg, var(--hm-adv-bg), rgba(203, 30, 83, 0.06));
}

.hm-adv__contact-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 3rem;
	align-items: start;
}

.hm-adv__contact-perks {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.hm-adv__contact-perks li {
	padding: 0.5rem 0;
	font-size: 0.95rem;
	color: var(--hm-adv-muted);
}

.hm-adv__contact-perks li::before {
	content: "→ ";
	color: var(--hm-adv-brand);
	font-weight: 700;
}

.hm-adv__form {
	position: relative !important;
	padding: 2rem !important;
	background: var(--hm-adv-surface) !important;
	border: 1px solid var(--hm-adv-border) !important;
	border-radius: 20px !important;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08) !important;
	overflow: hidden !important;
}

.hm-adv__form input,
.hm-adv__form select,
.hm-adv__form textarea,
.hm-adv__form button {
	font-family: "פולין", "Polin", sans-serif !important;
	box-sizing: border-box !important;
}

.hm-adv__alert {
	padding: 0.85rem 1rem !important;
	margin-bottom: 1rem !important;
	border-radius: 12px !important;
	font-size: 0.9rem !important;
}

.hm-adv__alert.is-error {
	background: rgba(203, 30, 83, 0.12) !important;
	color: var(--hm-adv-brand) !important;
}

.hm-adv__alert.is-success {
	background: rgba(52, 168, 83, 0.12) !important;
	color: #2e7d32 !important;
}

/* לא להשתמש ב-left:-9999px - ב-RTL זה מרחיב את scrollWidth של הדף */
.hm-adv__hp {
	position: absolute !important;
	inset: 0 auto auto 0 !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	white-space: nowrap !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.hm-adv__field {
	margin-bottom: 1rem !important;
}

.hm-adv__field-row {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 1rem !important;
}

label.hm-adv__label {
	display: block !important;
	margin-bottom: 0.35rem !important;
	font-size: 0.88rem !important;
	font-weight: 600 !important;
	color: var(--hm-adv-heading) !important;
	line-height: 1.4 !important;
}

.hm-adv__req {
	color: var(--hm-adv-brand) !important;
}

input.hm-adv__input,
select.hm-adv__input,
textarea.hm-adv__input {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 48px !important;
	padding: 0.75rem 1rem !important;
	margin: 0 !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	color: var(--hm-adv-text) !important;
	background: var(--hm-adv-bg) !important;
	background-image: none !important;
	border: 1px solid var(--hm-adv-border) !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	outline: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
}

select.hm-adv__input {
	padding-left: 2rem !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: left 0.9rem center !important;
	background-size: 12px 8px !important;
	cursor: pointer !important;
}

textarea.hm-adv__input {
	min-height: 100px !important;
	resize: vertical !important;
}

input.hm-adv__input:focus,
select.hm-adv__input:focus,
textarea.hm-adv__input:focus {
	outline: none !important;
	border-color: var(--hm-adv-brand) !important;
	box-shadow: 0 0 0 3px var(--hm-adv-glow) !important;
	background-color: var(--hm-adv-bg) !important;
	color: var(--hm-adv-text) !important;
}

input.hm-adv__input::placeholder,
textarea.hm-adv__input::placeholder {
	color: var(--hm-adv-muted) !important;
	opacity: 1 !important;
}

input.hm-adv__input:-webkit-autofill,
input.hm-adv__input:-webkit-autofill:hover,
input.hm-adv__input:-webkit-autofill:focus,
textarea.hm-adv__input:-webkit-autofill,
textarea.hm-adv__input:-webkit-autofill:hover,
textarea.hm-adv__input:-webkit-autofill:focus,
select.hm-adv__input:-webkit-autofill,
select.hm-adv__input:-webkit-autofill:hover,
select.hm-adv__input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--hm-adv-text) !important;
	-webkit-box-shadow: 0 0 0 1000px var(--hm-adv-bg) inset !important;
	box-shadow: 0 0 0 1000px var(--hm-adv-bg) inset !important;
	border-color: var(--hm-adv-border) !important;
	transition: background-color 9999s ease-out 0s !important;
}

label.hm-adv__consent {
	display: flex !important;
	align-items: flex-start !important;
	gap: 0.5rem !important;
	margin-bottom: 1.25rem !important;
	font-size: 0.85rem !important;
	font-weight: 400 !important;
	color: var(--hm-adv-muted) !important;
	cursor: pointer !important;
	line-height: 1.5 !important;
}

label.hm-adv__consent input[type="checkbox"] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	display: inline-block !important;
	flex-shrink: 0 !important;
	width: 18px !important;
	min-width: 18px !important;
	max-width: 18px !important;
	height: 18px !important;
	min-height: 18px !important;
	max-height: 18px !important;
	margin: 0.15rem 0 0 !important;
	padding: 0 !important;
	border: 2px solid rgba(32, 33, 90, 0.35) !important;
	border-radius: 5px !important;
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	accent-color: var(--hm-adv-brand) !important;
	position: relative !important;
	cursor: pointer !important;
	opacity: 1 !important;
}

label.hm-adv__consent input[type="checkbox"]::before,
label.hm-adv__consent input[type="checkbox"]:not(:checked)::after {
	content: none !important;
	display: none !important;
}

label.hm-adv__consent input[type="checkbox"]:checked {
	background: var(--hm-adv-brand) !important;
	background-color: var(--hm-adv-brand) !important;
	border-color: var(--hm-adv-brand) !important;
}

label.hm-adv__consent input[type="checkbox"]:checked::after {
	content: "" !important;
	display: block !important;
	position: absolute !important;
	top: 1px !important;
	left: 5px !important;
	width: 5px !important;
	height: 9px !important;
	border: solid #fff !important;
	border-width: 0 2px 2px 0 !important;
	transform: rotate(45deg) !important;
	box-sizing: border-box !important;
}

button.hm-adv__btn.hm-adv__btn--primary.hm-adv__btn--full,
#hm-adv-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 48px !important;
	padding: 0.85rem 1.75rem !important;
	margin: 0 !important;
	border: 2px solid transparent !important;
	border-radius: 999px !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	text-decoration: none !important;
	cursor: pointer !important;
	color: #fff !important;
	background: var(--hm-adv-brand) !important;
	background-image: none !important;
	box-shadow: 0 8px 28px var(--hm-adv-glow) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

button.hm-adv__btn.hm-adv__btn--primary.hm-adv__btn--full:hover:not(:disabled),
#hm-adv-submit:hover:not(:disabled) {
	background: var(--hm-adv-brand-2) !important;
	color: #fff !important;
	transform: translateY(-2px) !important;
}

button.hm-adv__btn.hm-adv__btn--primary.hm-adv__btn--full:disabled,
#hm-adv-submit:disabled {
	opacity: 0.65 !important;
	cursor: wait !important;
	transform: none !important;
}

/* Responsive */
@media (max-width: 900px) {

	.hm-adv__split,
	.hm-adv__contact-inner {
		grid-template-columns: 1fr;
	}

	.hm-adv__benefits-grid,
	.hm-adv__packages-grid {
		grid-template-columns: 1fr;
	}

	.hm-adv__package-card.is-featured {
		transform: none;
	}

	.hm-adv__data-grid {
		grid-template-columns: 1fr;
	}

	.hm-adv__hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.hm-adv__testimonials-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.hm-adv__section {
		padding: 3rem 0;
	}

	.hm-adv__field-row {
		grid-template-columns: 1fr;
	}

	.hm-adv__hero-actions {
		flex-direction: column;
	}

	.hm-adv__btn {
		width: 100%;
	}
}