body.eo-pac2-page .eo-funnel-form-title { display: none !important; }
/* Scoped to /pac2 only via body.eo-pac2-page and .eo-pac2 */


.eo-pac2 {
	--pac2-orange: #F97316;
	--pac2-orange-2: #FF7A00;
	--pac2-blue: #004081;
	--pac2-green: #4E7B1E;
	--pac2-green-soft: #EAF6EA;
	--pac2-ink: #0B1F3A;
	--pac2-muted: #667085;
	--pac2-line: #EAECF0;
	width: 100%;
}

.eo-pac2-cue {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin: 0 0 10px;
	color: var(--pac2-orange);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.eo-pac2-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 22px;
	box-shadow: 0 32px 80px rgba(11, 31, 58, 0.2), 0 12px 32px rgba(16, 24, 40, 0.12);
	overflow: hidden;
	padding: 18px 18px 14px;
}

.eo-pac2-flag {
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, #002395 0 33.33%, #fff 33.33% 66.66%, #ED2939 66.66%);
}

.eo-pac2-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 6px;
	margin-bottom: 10px;
	font-size: 13px;
}

.eo-pac2-meta-left {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pac2-blue);
	font-weight: 700;
}

.eo-pac2-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22C55E;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.eo-pac2-meta-right {
	color: var(--pac2-muted);
	font-weight: 600;
	white-space: nowrap;
}

.eo-pac2-progress {
	height: 6px;
	border-radius: 999px;
	background: #EEF2F6;
	overflow: hidden;
	margin-bottom: 18px;
}

.eo-pac2-progress-bar {
	height: 100%;
	border-radius: inherit;
	background: var(--pac2-blue);
	transition: width 0.25s ease;
}

.eo-pac2-step[hidden] { display: none !important; }

.eo-pac2-question {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--pac2-ink);
	letter-spacing: -0.02em;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.eo-pac2-help {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--pac2-muted);
}

.eo-pac2-options { display: grid; gap: 10px; }

.eo-pac2-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 14px;
	border: 1.5px solid var(--pac2-line);
	border-radius: 14px;
	background: #fff;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.eo-pac2-option:hover,
.eo-pac2-option.is-selected {
	border-color: #F97316;
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.eo-pac2-option-icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.eo-pac2-option-icon--orange { background: #FFF4E0; color: #F97316; }
.eo-pac2-option-icon--blue { background: #E8F0FA; color: #004081; }
.eo-pac2-option-icon--green { background: #EAF6EA; color: #4E7B1E; }

.eo-pac2-option-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1 1 auto;
}

.eo-pac2-option-text strong {
	font-size: 15px;
	font-weight: 800;
	color: var(--pac2-ink);
}

.eo-pac2-option-text small {
	font-size: 13px;
	color: var(--pac2-muted);
}

.eo-pac2-chevron {
	color: #98A2B3;
	font-size: 22px;
	line-height: 1;
}

.eo-pac2-label {
	display: block;
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--pac2-ink);
}

.eo-pac2-select-wrap,
.eo-pac2-field { margin-bottom: 12px; }

.eo-pac2-select-wrap { position: relative; }
.eo-pac2-select-wrap::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #98A2B3;
	border-bottom: 2px solid #98A2B3;
	transform: translateY(-60%) rotate(45deg);
	pointer-events: none;
}

.eo-pac2-select,
.eo-pac2-input {
	width: 100%;
	box-sizing: border-box;
	min-height: 48px;
	padding: 12px 14px;
	border: 1.5px solid var(--pac2-line);
	border-radius: 12px;
	background: #fff;
	font-size: 15px;
	color: var(--pac2-ink);
	outline: none;
	appearance: none;
}

.eo-pac2-select { padding-right: 36px; }

.eo-pac2-select:focus,
.eo-pac2-input:focus {
	border-color: var(--pac2-blue);
	box-shadow: 0 0 0 3px rgba(0, 64, 129, 0.12);
}

.eo-pac2-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.eo-pac2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin-top: 4px;
	padding: 12px 16px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(90deg, var(--pac2-orange), var(--pac2-orange-2));
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(247, 163, 0, 0.28);
}

.eo-pac2-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	box-shadow: none;
}

.eo-pac2-btn-note {
	margin: 10px 0 0;
	text-align: center;
	font-size: 12px;
	color: var(--pac2-muted);
}

.eo-pac2-btn-note span {
	color: var(--pac2-green);
	font-weight: 700;
}

.eo-pac2-success {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--pac2-green-soft);
	color: #1B5E20;
	font-size: 14px;
	font-weight: 700;
}

/* display:flex above would otherwise beat the browser's [hidden] rule. */
.eo-pac2-success[hidden] {
	display: none;
}

.eo-pac2-success-bar {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	width: 0;
	background: linear-gradient(90deg, #43A047 0%, var(--pac2-green) 100%);
	border-radius: 0 2px 2px 12px;
}

.eo-pac2-success-icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--pac2-green);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.eo-pac2-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	min-height: 28px;
}

.eo-pac2-back {
	border: 0;
	background: transparent;
	color: var(--pac2-muted);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

.eo-pac2-back[hidden] { visibility: hidden; }

.eo-pac2-trust {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 auto;
	color: var(--pac2-muted);
	font-size: 12px;
}

.eo-pac2-trust svg { color: var(--pac2-green); }

.eo-pac2-rgpd {
	margin: 12px 0 0;
	text-align: center;
	font-size: 12px;
	color: var(--pac2-muted);
}

.eo-pac2-rgpd a {
	color: var(--pac2-orange);
	font-weight: 600;
	text-decoration: none;
}

.eo-pac2-error,
.eo-pac2-field-error {
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	background: #FEF3F2;
	border: 1px solid #FECDCA;
	color: #912018;
	font-size: 13px;
}

.eo-pac2-field-error {
	margin-top: 8px;
	padding: 8px 10px;
}

/* --- /pac2 hero: luminous photo, soft blur, Inter typography --- */
body.eo-pac2-page.eo-funnel .eo-funnel-hero {
	background: transparent;
	padding: 40px 0 52px;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero::before {
	filter: blur(3px) brightness(1.06) saturate(1.05);
	transform: scale(1.04);
	transform-origin: center right;
	background-position: center right;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero::after {
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.97) 0%,
		rgba(255, 255, 255, 0.9) 28%,
		rgba(255, 255, 255, 0.55) 52%,
		rgba(255, 255, 255, 0.18) 72%,
		rgba(255, 255, 255, 0.04) 100%
	);
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-grid {
	align-items: center;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 {
	position: relative;
	z-index: 1;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: -20px;
	bottom: -20px;
	left: -40px;
	right: -16px;
	background: radial-gradient(ellipse 88% 82% at 18% 48%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 74%);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	pointer-events: none;
}

body.eo-pac2-page.eo-funnel .eo-funnel-form-card {
	position: relative;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	overflow: visible;
}

body.eo-pac2-page.eo-funnel .eo-funnel-form-card::before {
	content: '';
	position: absolute;
	z-index: 0;
	top: -24px;
	bottom: -24px;
	left: -28px;
	right: -40px;
	background: radial-gradient(ellipse 75% 72% at 58% 42%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 48%, rgba(255, 255, 255, 0) 72%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	pointer-events: none;
}

body.eo-pac2-page.eo-funnel .eo-funnel-form-card > * {
	position: relative;
	z-index: 1;
}

body.eo-pac2-page.eo-funnel .eo-pac2-card {
	transform: translateZ(0);
}

@media (min-width: 768px) {
	body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 h1 {
		font-size: 38px;
		max-width: 460px;
	}

	body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 .eo-funnel-hero-lead {
		font-size: 15px;
	}

	body.eo-pac2-page.eo-funnel .eo-pac2-question {
		font-size: 24px;
	}
}

body.eo-pac2-page.eo-funnel,
body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2,
body.eo-pac2-page.eo-funnel .eo-pac2,
body.eo-pac2-page.eo-funnel .eo-pac2 * {
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 .eo-legal-badge {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #FFF4E0;
	color: #F97316;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 h1 {
	position: relative;
	margin: 0 0 14px;
	padding: 0 0 12px;
	max-width: 480px;
	font-size: 26px;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #0B1F3A;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 h1::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	margin-top: 12px;
	border-radius: 999px;
	background: #F97316;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 h1 .eo-pac2-amount {
	color: #F97316;
	font-weight: 700;
	letter-spacing: -0.01em;
}

body.eo-pac2-page.eo-funnel .eo-funnel-hero-copy--pac2 .eo-funnel-hero-lead {
	margin: 0 0 18px;
	max-width: 440px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: #667085;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	display: flex;
	align-items: flex-start;
	gap: 14px 18px;
	max-width: 520px;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust li {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust-icon--blue {
	background: #E8F0FA;
	color: #004081;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust-icon--orange {
	background: #FFF4E0;
	color: #F97316;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust-icon--green {
	background: #EAF6EA;
	color: #4E7B1E;
}

body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust-label {
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
	color: #344054;
}

body.eo-pac2-page.eo-funnel .eo-funnel-eligibility-note {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #98A2B3;
}

/* Form typography */
body.eo-pac2-page.eo-funnel .eo-pac2-question {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: #0B1F3A;
}

body.eo-pac2-page.eo-funnel .eo-pac2-help {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	color: #667085;
}

body.eo-pac2-page.eo-funnel .eo-pac2-option-text strong {
	font-size: 16px;
	font-weight: 600;
	color: #0B1F3A;
}

body.eo-pac2-page.eo-funnel .eo-pac2-option-text small {
	font-size: 13px;
	font-weight: 400;
	color: #667085;
}

body.eo-pac2-page.eo-funnel .eo-pac2-meta,
body.eo-pac2-page.eo-funnel .eo-pac2-meta-left,
body.eo-pac2-page.eo-funnel .eo-pac2-meta-right {
	font-size: 13px;
	font-weight: 400;
}

body.eo-pac2-page.eo-funnel .eo-pac2-btn-note,
body.eo-pac2-page.eo-funnel .eo-pac2-rgpd,
body.eo-pac2-page.eo-funnel .eo-pac2-trust,
body.eo-pac2-page.eo-funnel .eo-pac2-back {
	font-size: 13px;
	font-weight: 400;
}

@media (max-width: 960px) {
	body.eo-pac2-page.eo-funnel .eo-funnel-hero-grid {
		display: flex;
		flex-direction: column;
	}

	body.eo-pac2-page.eo-funnel .eo-funnel-form-card {
		order: -1;
	}

	body.eo-pac2-page.eo-funnel .eo-pac2-cue {
		margin-top: 0;
	}
}

@media (max-width: 640px) {
	body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust {
		flex-direction: column;
		gap: 14px;
	}

	body.eo-pac2-page.eo-funnel .eo-pac2-hero-trust li {
		flex-direction: row;
		align-items: center;
	}

	body.eo-pac2-page.eo-funnel .eo-pac2-row {
		grid-template-columns: 1fr;
	}

	body.eo-pac2-page.eo-funnel .eo-pac2-question {
		font-size: 22px;
	}
}

.eo-pac2-steps { min-height: 280px; }
.eo-pac2-step.is-active { display: block; }
