/**
 * Hadaf Emergency Visa — designed front end.
 * Brand blues (#0374b4 / #29a6de) + urgent red gradient for emergency.
 */

.hev-wrap {
	--hev-blue: #0374b4;
	--hev-blue-dark: #025b8e;
	--hev-blue-soft: #dceefa;
	--hev-blue-tint: #f1f8fd;
	--hev-sky: #29a6de;
	--hev-sky-soft: #e3f3fc;
	--hev-blue-rgb: 3, 116, 180;
	--hev-sky-rgb: 41, 166, 222;
	--hev-red: #c62828;
	--hev-red-deep: #8e0000;
	--hev-red-soft: #fdecea;
	--hev-red-rgb: 198, 40, 40;
	--hev-coral: #e53935;
	--hev-ink: #16283a;
	--hev-muted: #5f7488;
	--hev-border: #d5e3ee;
	--hev-surface: #f4f9fc;
	--hev-danger: #c0392b;
	--hev-success: #1f8a5a;
	--hev-radius: 14px;
	--hev-radius-sm: 10px;
	--hev-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--hev-gradient: linear-gradient(135deg, var(--hev-red) 0%, var(--hev-sky) 100%);
	--hev-gradient-flat: linear-gradient(90deg, var(--hev-red) 0%, var(--hev-sky) 100%);
	--hev-gradient-soft: linear-gradient(135deg, var(--hev-red-soft) 0%, var(--hev-sky-soft) 100%);
	--hev-base-size: 17px;
	--hev-shadow: 0 18px 44px -30px rgba(var(--hev-red-rgb), 0.45);

	max-width: 1180px;
	margin: 0 auto;
	color: var(--hev-ink);
	font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
	font-size: var(--hev-base-size);
	line-height: 1.65;
}

.hev-wrap *,
.hev-wrap *::before,
.hev-wrap *::after { box-sizing: border-box; }

.hev-wrap input,
.hev-wrap select,
.hev-wrap textarea,
.hev-wrap button { font-family: inherit; }

.hev-wrap [hidden] { display: none !important; }
.hev-wrap ul { list-style: none; margin: 0; padding: 0; }
.hev-wrap a { text-decoration: none; }

@keyframes hevRiseIn {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}
@keyframes hevPop {
	0% { transform: scale(0.7); opacity: 0; }
	60% { transform: scale(1.12); opacity: 1; }
	100% { transform: scale(1); opacity: 1; }
}
@keyframes hevSheen {
	0% { transform: translateX(-120%) skewX(-18deg); }
	100% { transform: translateX(260%) skewX(-18deg); }
}
@keyframes hevPulse {
	0% { box-shadow: 0 0 0 0 rgba(var(--hev-red-rgb), 0.35); }
	70% { box-shadow: 0 0 0 12px rgba(var(--hev-red-rgb), 0); }
	100% { box-shadow: 0 0 0 0 rgba(var(--hev-red-rgb), 0); }
}

.hev-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 99px;
	background: var(--hev-gradient-soft);
	color: var(--hev-red);
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.hev-pill--urgent {
	background: var(--hev-red-soft);
	color: var(--hev-red);
	animation: hevPulse 2.4s ease infinite;
}

.hev-notice {
	padding: 14px 18px;
	border-radius: var(--hev-radius-sm);
	margin-bottom: 20px;
	animation: hevRiseIn 0.4s var(--hev-ease) both;
}
.hev-notice--error {
	background: #fdecea;
	border: 1px solid #f5c6c0;
	color: var(--hev-danger);
}
.hev-notice--error ul {
	margin: 8px 0 0;
	padding-left: 1.2em;
	list-style: disc;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ===== Tier marketing cards ===== */
.hev-tier-cards__intro {
	text-align: center;
	margin-bottom: 32px;
	animation: hevRiseIn 0.5s var(--hev-ease) both;
}
.hev-tier-cards__title {
	margin: 14px 0 10px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	background: var(--hev-gradient-flat);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hev-tier-cards__lead {
	margin: 0 auto;
	max-width: 560px;
	color: var(--hev-muted);
	font-size: 1.02em;
}
.hev-tier-cards__grid {
	display: grid;
	grid-template-columns: repeat(var(--hev-columns, 3), minmax(0, 1fr));
	gap: 22px;
}
.hev-tier-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 22px 26px;
	background: #fff;
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius);
	box-shadow: 0 18px 44px -30px rgba(var(--hev-blue-rgb), 0.45);
	overflow: hidden;
	animation: hevRiseIn 0.5s var(--hev-ease) both;
	animation-delay: var(--hev-delay, 0ms);
	transition: transform 0.28s var(--hev-ease), box-shadow 0.28s ease, border-color 0.28s ease;
}
.hev-tier-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: var(--hev-gradient-flat);
	opacity: 0;
	transition: opacity 0.25s ease;
}
.hev-tier-card:hover {
	transform: translateY(-8px);
	border-color: var(--hev-sky);
	box-shadow: 0 28px 50px -28px rgba(var(--hev-red-rgb), 0.55);
}
.hev-tier-card:hover::before { opacity: 1; }
.hev-tier-card--featured {
	border-color: rgba(229, 57, 53, 0.45);
	background: linear-gradient(180deg, #fff 0%, #fff5f5 55%, var(--hev-sky-soft) 100%);
	box-shadow: 0 22px 48px -28px rgba(var(--hev-red-rgb), 0.55);
}
.hev-tier-card--featured::before { opacity: 1; }
.hev-tier-card.is-unavailable { opacity: 0.55; pointer-events: none; }
.hev-tier-card__badge {
	position: absolute;
	top: 16px; right: 16px;
	padding: 5px 12px;
	border-radius: 99px;
	background: var(--hev-gradient);
	color: #fff;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 8px 18px -10px rgba(var(--hev-red-rgb), 0.7);
}
.hev-tier-card__time {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.hev-tier-card__clock {
	display: grid;
	place-items: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: var(--hev-gradient-soft);
	font-size: 1.5em;
	line-height: 1;
}
.hev-tier-card__label {
	margin: 0;
	font-size: 1.55em;
	font-weight: 800;
	color: var(--hev-ink);
	letter-spacing: -0.01em;
}
.hev-tier-card__tagline {
	margin: 0 0 18px;
	color: var(--hev-muted);
	font-size: 0.92em;
	max-width: 240px;
}
.hev-tier-card__price {
	margin: 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}
.hev-tier-card__amount {
	font-size: 2.75em;
	font-weight: 800;
	line-height: 1;
	background: var(--hev-gradient-flat);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hev-tier-card__currency {
	font-weight: 700;
	color: var(--hev-muted);
	font-size: 0.95em;
}
.hev-tier-card__price-note {
	margin: 6px 0 18px;
	font-size: 0.8em;
	color: var(--hev-muted);
}
.hev-tier-card__breakdown {
	width: 100%;
	margin: 0 0 16px;
	padding: 14px 16px;
	background: var(--hev-surface);
	border: 1px solid var(--hev-border);
	border-radius: var(--hev-radius-sm);
	font-size: 0.86em;
	text-align: left;
}
.hev-tier-card__breakdown li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	color: var(--hev-muted);
	border-bottom: 1px dashed var(--hev-border);
}
.hev-tier-card__breakdown li:last-child { border-bottom: 0; }
.hev-tier-card__breakdown-total {
	margin-top: 4px;
	padding-top: 10px !important;
	border-top: 1.5px solid var(--hev-border) !important;
	border-bottom: 0 !important;
	color: var(--hev-ink) !important;
	font-weight: 700;
}
.hev-tier-card__refund {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	width: 100%;
	margin: 0 0 20px;
	padding: 10px 12px;
	background: var(--hev-sky-soft);
	border-radius: var(--hev-radius-sm);
	font-size: 0.8em;
	line-height: 1.45;
	color: var(--hev-muted);
	text-align: left;
}
.hev-tier-card__refund-icon {
	flex: 0 0 auto;
	color: var(--hev-blue);
	font-weight: 700;
}
.hev-tier-card__cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: auto;
	width: 100%;
	padding: 13px 22px;
	border-radius: 99px;
	background: var(--hev-gradient);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.95em;
	box-shadow: 0 12px 26px -14px rgba(var(--hev-red-rgb), 0.75);
	transition: filter 0.2s ease, transform 0.2s ease;
}
.hev-tier-card__cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
	transform: translateX(-120%) skewX(-18deg);
}
.hev-tier-card:hover .hev-tier-card__cta::after { animation: hevSheen 0.85s ease; }
.hev-tier-card__cta:hover { filter: brightness(1.06); transform: scale(1.02); }
.hev-tier-card__cta--disabled {
	background: var(--hev-surface);
	color: var(--hev-danger) !important;
	box-shadow: none;
	cursor: not-allowed;
}

/* ===== Combo visa cards ===== */
.hev-visa-cards__grid {
	display: grid;
	grid-template-columns: repeat(var(--hev-columns, 3), minmax(0, 1fr));
	gap: 20px;
}
.hev-combo-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 28px 20px 24px;
	background: #fff;
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius);
	box-shadow: 0 16px 40px -28px rgba(var(--hev-blue-rgb), 0.5);
	overflow: hidden;
	animation: hevRiseIn 0.45s var(--hev-ease) both;
	animation-delay: var(--hev-delay, 0ms);
	transition: transform 0.24s var(--hev-ease), border-color 0.24s ease, box-shadow 0.24s ease;
}
.hev-combo-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--hev-gradient-flat);
	opacity: 0;
	transition: opacity 0.2s ease;
}
.hev-combo-card:hover {
	transform: translateY(-5px);
	border-color: var(--hev-sky);
	box-shadow: 0 22px 44px -26px rgba(var(--hev-red-rgb), 0.5);
}
.hev-combo-card:hover::before { opacity: 1; }
.hev-combo-card.is-unavailable { opacity: 0.55; }
.hev-combo-card__badge {
	display: inline-block;
	padding: 5px 12px;
	margin-bottom: 12px;
	border-radius: 99px;
	background: var(--hev-red-soft);
	color: var(--hev-red);
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.hev-combo-card__title {
	margin: 0 0 10px;
	font-size: 1.3em;
	font-weight: 800;
	color: var(--hev-ink);
}
.hev-combo-card__title sup {
	font-size: 0.55em;
	color: var(--hev-muted);
	margin-left: 3px;
	font-weight: 600;
}
.hev-combo-card__price { margin: 0 0 14px; }
.hev-combo-card__amount {
	font-size: 2.2em;
	font-weight: 800;
	background: var(--hev-gradient-flat);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hev-combo-card__currency {
	margin-left: 4px;
	color: var(--hev-muted);
	font-weight: 600;
	font-size: 0.9em;
}
.hev-combo-card__list {
	width: 100%;
	margin: 0 0 14px;
	padding: 12px 14px;
	background: var(--hev-surface);
	border-radius: var(--hev-radius-sm);
	text-align: left;
	font-size: 0.88em;
	color: var(--hev-muted);
}
.hev-combo-card__list li { padding: 4px 0; }
.hev-combo-card__note {
	color: var(--hev-red) !important;
	font-weight: 600;
	font-size: 0.9em;
}
.hev-combo-card__refund {
	display: flex;
	gap: 6px;
	width: 100%;
	margin: 0 0 16px;
	padding: 8px 10px;
	background: var(--hev-sky-soft);
	border-radius: var(--hev-radius-sm);
	font-size: 0.78em;
	text-align: left;
	color: var(--hev-muted);
}
.hev-combo-card__cta {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: auto;
	width: 100%;
	padding: 12px 20px;
	border-radius: 99px;
	background: var(--hev-gradient);
	color: #fff !important;
	font-weight: 700;
	box-shadow: 0 10px 22px -12px rgba(var(--hev-red-rgb), 0.7);
	transition: filter 0.2s ease, transform 0.2s ease;
}
.hev-combo-card__cta:hover { filter: brightness(1.06); transform: scale(1.02); }
.hev-combo-card__cta--disabled {
	background: var(--hev-surface);
	color: var(--hev-danger) !important;
	box-shadow: none;
}

/* ===== Form ===== */
.hev-form-header {
	text-align: center;
	margin-bottom: 28px;
	animation: hevRiseIn 0.5s var(--hev-ease) both;
}
.hev-form-header__title {
	margin: 12px 0 10px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.015em;
	background: var(--hev-gradient-flat);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hev-form-header__intro {
	margin: 0 auto 8px;
	max-width: 580px;
	color: var(--hev-muted);
	font-size: 1.02em;
}
.hev-form-header__note {
	margin: 0;
	font-size: 0.92em;
	font-weight: 600;
	color: var(--hev-red);
}
.hev-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}
.hev-form {
	position: relative;
	padding: 34px 32px;
	background: #fff;
	border: 1px solid var(--hev-border);
	border-radius: var(--hev-radius);
	box-shadow: 0 18px 44px -30px rgba(var(--hev-red-rgb), 0.4);
	animation: hevRiseIn 0.55s var(--hev-ease) 0.05s both;
}
.hev-form::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	border-radius: var(--hev-radius) var(--hev-radius) 0 0;
	background: var(--hev-gradient-flat);
}
.hev-steps {
	display: flex;
	gap: 10px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.hev-steps__item {
	flex: 1;
	min-width: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1.5px solid var(--hev-border);
	border-radius: 99px;
	background: #fff;
	color: var(--hev-muted);
	font-weight: 600;
	font-size: 0.88em;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hev-steps__item span {
	display: grid;
	place-items: center;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: var(--hev-surface);
	font-size: 0.85em;
	font-weight: 700;
	transition: background 0.2s, color 0.2s;
}
.hev-steps__item.is-active {
	border-color: var(--hev-red);
	background: var(--hev-red-soft);
	color: var(--hev-red-deep);
	box-shadow: 0 8px 20px -14px rgba(var(--hev-red-rgb), 0.55);
}
.hev-steps__item.is-active span {
	background: var(--hev-gradient);
	color: #fff;
}
.hev-steps__item.is-done {
	border-color: var(--hev-success);
	color: var(--hev-success);
}
.hev-steps__item.is-done span {
	background: var(--hev-success);
	color: #fff;
}
.hev-step__title {
	margin: 0 0 8px;
	font-size: 1.22em;
	font-weight: 700;
	color: var(--hev-ink);
}
.hev-step__title--mt { margin-top: 30px; }
.hev-step__hint {
	margin: 0 0 18px;
	color: var(--hev-muted);
	font-size: 0.92em;
}
.hev-visa-picker {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	margin-bottom: 8px;
}
.hev-visa-option {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 16px;
	background: #fff;
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius-sm);
	cursor: pointer;
	transition: border-color 0.22s, box-shadow 0.22s, background 0.22s, transform 0.22s;
}
.hev-visa-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.hev-visa-option:hover {
	border-color: var(--hev-sky);
	transform: translateY(-2px);
}
.hev-visa-option.is-selected {
	border-color: var(--hev-red);
	background: linear-gradient(180deg, #fff 0%, var(--hev-red-soft) 100%);
	box-shadow: 0 10px 24px -18px rgba(var(--hev-red-rgb), 0.85);
}
.hev-visa-option__days {
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--hev-red);
}
.hev-visa-option__name {
	font-weight: 700;
	font-size: 0.95em;
	color: var(--hev-ink);
}
.hev-visa-option__price {
	color: var(--hev-muted);
	font-size: 0.85em;
}
.hev-emergency-picker {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}
.hev-tier-option {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 16px 18px;
	background: #fff;
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius);
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s, background 0.22s;
}
.hev-tier-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.hev-tier-option::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--hev-gradient-flat);
	opacity: 0;
	transition: opacity 0.2s ease;
}
.hev-tier-option:hover {
	border-color: var(--hev-sky);
	transform: translateY(-4px);
	box-shadow: 0 16px 32px -22px rgba(var(--hev-red-rgb), 0.55);
}
.hev-tier-option.is-selected {
	border-color: var(--hev-red);
	background: linear-gradient(180deg, #fff 0%, #fff5f5 50%, var(--hev-sky-soft) 100%);
	box-shadow: 0 16px 32px -20px rgba(var(--hev-red-rgb), 0.75);
}
.hev-tier-option.is-selected::before { opacity: 1; }
.hev-tier-option--featured { border-color: rgba(229, 57, 53, 0.35); }
.hev-tier-option.is-unavailable { opacity: 0.5; cursor: not-allowed; }
.hev-tier-option__badge {
	position: absolute;
	top: 12px; right: 12px;
	padding: 4px 10px;
	border-radius: 99px;
	background: var(--hev-gradient);
	color: #fff;
	font-size: 0.68em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.hev-tier-option__label {
	font-size: 1.3em;
	font-weight: 800;
	margin: 4px 0 6px;
	color: var(--hev-ink);
}
.hev-tier-option__price { margin-bottom: 6px; }
.hev-tier-option__amount {
	font-size: 2em;
	font-weight: 800;
	background: var(--hev-gradient-flat);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hev-tier-option__tagline {
	font-size: 0.85em;
	color: var(--hev-muted);
	margin-bottom: 12px;
}
.hev-tier-option__breakdown {
	width: 100%;
	margin: 0 0 14px;
	padding: 10px 12px;
	background: var(--hev-surface);
	border-radius: var(--hev-radius-sm);
	font-size: 0.78em;
	text-align: left;
}
.hev-tier-option__breakdown li {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 3px 0;
	color: var(--hev-muted);
}
.hev-tier-option__select {
	margin-top: auto;
	padding: 9px 20px;
	border-radius: 99px;
	background: var(--hev-gradient);
	color: #fff;
	font-size: 0.88em;
	font-weight: 700;
	transition: transform 0.2s ease;
}
.hev-tier-option.is-selected .hev-tier-option__select { transform: scale(1.04); }
.hev-refund-note {
	display: flex;
	gap: 10px;
	margin: 18px 0 0;
	padding: 14px 16px;
	border-left: 4px solid var(--hev-red);
	background: var(--hev-surface);
	border-radius: 0 var(--hev-radius-sm) var(--hev-radius-sm) 0;
	font-size: 0.9em;
	color: var(--hev-muted);
}
.hev-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
}
.hev-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.hev-field label {
	font-weight: 600;
	font-size: 0.9em;
	color: var(--hev-ink);
}
.hev-field input,
.hev-field select {
	padding: 12px 14px;
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius-sm);
	background: #fff;
	font-size: 0.95em;
	color: var(--hev-ink);
	transition: border-color 0.2s, box-shadow 0.2s;
}
.hev-field input:focus,
.hev-field select:focus {
	outline: none;
	border-color: var(--hev-sky);
	box-shadow: 0 0 0 3px rgba(var(--hev-sky-rgb), 0.18);
}
.hev-field.is-invalid input,
.hev-field.is-invalid select { border-color: var(--hev-danger); }
.hev-hint {
	margin: 0;
	font-size: 0.8em;
	color: var(--hev-muted);
}
.hev-docs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}
.hev-field--file input[type="file"] {
	padding: 14px;
	border: 1.5px dashed var(--hev-border);
	background: var(--hev-surface);
	border-radius: var(--hev-radius-sm);
	cursor: pointer;
}
.hev-field--file input[type="file"]:hover {
	border-color: var(--hev-sky);
	background: var(--hev-sky-soft);
}
.hev-summary {
	padding: 20px 22px;
	background: linear-gradient(180deg, #fff 0%, var(--hev-surface) 100%);
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius);
	margin-bottom: 20px;
	box-shadow: 0 12px 28px -24px rgba(var(--hev-blue-rgb), 0.45);
}
.hev-summary h4 {
	margin: 0 0 14px;
	font-size: 1.05em;
	font-weight: 700;
	color: var(--hev-ink);
}
.hev-summary p {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 8px;
	font-size: 0.92em;
	color: var(--hev-muted);
}
.hev-summary__hint {
	display: block !important;
	font-size: 0.82em !important;
	font-style: italic;
	color: var(--hev-muted) !important;
	margin: 4px 0 10px !important;
}
.hev-summary__total {
	margin-top: 12px !important;
	padding-top: 12px;
	border-top: 1.5px solid var(--hev-border);
	color: var(--hev-ink) !important;
	font-size: 1.08em !important;
	font-weight: 600;
}
.hev-summary__total strong {
	background: var(--hev-gradient-flat);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
}
.hev-deposit-note {
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: var(--hev-radius-sm);
	background: var(--hev-red-soft);
	color: var(--hev-red-deep);
	font-size: 0.9em;
	font-weight: 500;
	border-left: 4px solid var(--hev-red);
}
.hev-step__actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 28px;
	flex-wrap: wrap;
}
.hev-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 13px 26px;
	border-radius: 99px;
	border: none;
	font-weight: 700;
	font-size: 0.95em;
	cursor: pointer;
	transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hev-btn--primary {
	background: var(--hev-gradient);
	color: #fff;
	box-shadow: 0 12px 26px -14px rgba(var(--hev-red-rgb), 0.75);
}
.hev-btn--primary:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}
.hev-btn--ghost {
	background: #fff;
	border: 1.5px solid var(--hev-border);
	color: var(--hev-muted);
}
.hev-btn--ghost:hover {
	border-color: var(--hev-sky);
	color: var(--hev-blue);
}
.hev-btn--submit { min-width: 170px; }

@media (max-width: 900px) {
	.hev-tier-cards__grid,
	.hev-visa-cards__grid { grid-template-columns: 1fr; }
	.hev-grid,
	.hev-docs { grid-template-columns: 1fr; }
	.hev-form { padding: 26px 18px; }
}
@media (max-width: 640px) {
	.hev-emergency-picker { grid-template-columns: 1fr; }
	.hev-steps__item { font-size: 0.8em; padding: 10px 8px; }
	.hev-tier-card__amount { font-size: 2.3em; }
}
@media (prefers-reduced-motion: reduce) {
	.hev-tier-card,
	.hev-combo-card,
	.hev-tier-option,
	.hev-visa-option,
	.hev-form,
	.hev-form-header,
	.hev-tier-cards__intro,
	.hev-pill--urgent {
		animation: none !important;
		transition: none !important;
	}
}

.hev-terms {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 8px 0 0;
	padding: 14px 16px;
	background: var(--hev-surface);
	border: 1.5px solid var(--hev-border);
	border-radius: var(--hev-radius-sm);
	font-size: 0.9em;
	color: var(--hev-ink);
	cursor: pointer;
}
.hev-terms input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: var(--hev-red);
	flex: 0 0 auto;
}
.hev-docs {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
