.ahl-hero-section {
	background-color: #f7f8fa;
	overflow: hidden;
	position: relative;
}

.ahl-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 0.95fr;
	align-items: center;
	gap: 0;
	max-width: 100%;
	margin: 0;
	position: relative;
}

/* ---------- CONTENT COLUMN ---------- */
.ahl-content-col {
	padding: 60px 40px;
	z-index: 2;
}

.ahl-badge {
	display: inline-flex;
	align-items: center;
	border: 1px solid #f5a623;
	color: #0b3d91;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.5px;
	padding: 10px 20px;
	border-radius: 30px;
	margin-bottom: 20px;
}

.ahl-heading {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 700;
	font-size: 46px;
	line-height: 1.15;
	margin: 10px 0 20px;
}

.ahl-heading-line {
	display: block;
}

.ahl-heading-highlight {
	font-style: normal;
}

.ahl-description {
	font-size: 16px;
	line-height: 1.7;
	max-width: 480px;
	margin-bottom: 28px;
}

.ahl-features {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 32px;
}

.ahl-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #0b2545;
	max-width: 150px;
}

.ahl-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 50%;
	background: #eef2f9;
	color: #0b3d91;
	font-size: 18px;
}

.ahl-cta-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.ahl-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 26px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
}

.ahl-btn-primary {
	background-color: #0b3d91;
	color: #ffffff;
}

.ahl-btn-primary:hover {
	background-color: #082a66;
	transform: translateY(-2px);
	color: #ffffff;
}

.ahl-btn-secondary {
	background-color: transparent;
	color: #0b3d91;
	border: 1px solid #0b3d91;
}

.ahl-btn-secondary:hover {
	background-color: #0b3d91;
	color: #ffffff;
	transform: translateY(-2px);
}

.ahl-btn-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	flex: none;
}

.ahl-btn-icon-wrap svg {
	width: 1em;
	height: 1em;
}

.ahl-btn-icon-wrap i {
	line-height: 1;
}

/* ---------- IMAGE COLUMN ---------- */
.ahl-image-col {
	position: relative;
	height: 100%;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	z-index: 1;
}

.ahl-image-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ahl-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

/* ---------- FORM COLUMN ---------- */
.ahl-form-col {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 30px;
	background-color: #0b2545;
	min-height: 100%;
	z-index: 3;
}

.ahl-form-col::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--ahl-form-overlay, transparent);
	pointer-events: none;
	z-index: 0;
}

.ahl-form-card {
	position: relative;
	z-index: 1;
	background-color: #ffffff;
	border-radius: 16px;
	padding: 34px 30px;
	width: 100%;
	max-width: 420px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.ahl-form-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.5px;
	color: #0b3d91;
	margin-bottom: 22px;
	text-align: center;
}

.ahl-form-badge-line {
	width: 24px;
	height: 2px;
	background-color: #f5a623;
	display: inline-block;
}

.ahl-lead-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ahl-field {
	position: relative;
}

.ahl-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ahl-field input,
.ahl-field select {
	width: 100%;
	padding: 13px 14px 13px 46px;
	border: 1px solid #d9dee5;
	border-radius: 8px;
	font-size: 14px;
	background-color: #ffffff;
	color: #2d3748;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

.ahl-field-row select {
	padding-left: 14px;
}

.ahl-select-wrap {
	position: relative;
}

.ahl-select-wrap select {
	padding-left: 14px;
	padding-right: 34px;
	cursor: pointer;
	background-image: none !important;
}

/* Custom CSS-drawn arrow: replaces the browser-native select arrow (which
   showed a mismatched/duplicate arrow on some browsers) with one crisp,
   color- and size-controllable triangle. */
.ahl-select-wrap select::-ms-expand {
	display: none;
}

.ahl-dropdown-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #667085;
	pointer-events: none;
}

.ahl-field input:focus,
.ahl-field select:focus {
	border-color: #f5a623;
	box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.ahl-field-icon-svg {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 1;
	color: #8a95a5;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ahl-field-icon-svg i {
	display: block;
	line-height: 1;
}

.ahl-field-icon-svg svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ahl-disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	line-height: 1.5;
	color: #6b7280;
	cursor: pointer;
}

.ahl-disclaimer input {
	margin-top: 3px;
	accent-color: #0b3d91;
	width: 16px;
	height: 16px;
	flex: none;
}

.ahl-terms-link {
	color: #0b3d91;
	font-weight: 600;
	text-decoration: underline;
	white-space: nowrap;
	margin-left: 3px;
}

.ahl-terms-link:hover {
	color: #f5a623;
}

/* ===== Terms & Conditions Popup ===== */
.ahl-terms-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(11, 37, 69, 0.6);
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.ahl-terms-popup-overlay.ahl-terms-open {
	display: flex;
}

.ahl-terms-popup-box {
	position: relative;
	background: #ffffff;
	width: 100%;
	max-width: 640px;
	max-height: 85vh;
	max-height: 85dvh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	border-radius: 12px;
	padding: 40px 32px 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: ahlPopupIn 0.25s ease;
}

@keyframes ahlPopupIn {
	from { opacity: 0; transform: translateY(20px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.ahl-terms-popup-close {
	all: unset;
	box-sizing: border-box !important;
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	max-width: 34px !important;
	max-height: 34px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: #f1f5f9 !important;
	color: #0b2545 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	font-size: 0 !important;
	cursor: pointer !important;
	transition: background 0.2s ease, color 0.2s ease !important;
	z-index: 2 !important;
	flex-shrink: 0 !important;
	-webkit-tap-highlight-color: transparent !important;
	touch-action: manipulation !important;
}

.ahl-terms-popup-close svg {
	display: block !important;
	width: 16px !important;
	height: 16px !important;
	fill: currentColor !important;
	pointer-events: none !important;
}

.ahl-terms-popup-close:hover,
.ahl-terms-popup-close:focus {
	background: #0b3d91 !important;
	color: #ffffff !important;
	outline: none !important;
}

.ahl-terms-popup-title {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 700;
	color: #0b2545;
	padding-right: 34px;
	word-break: break-word;
}

.ahl-terms-popup-content {
	font-size: 14px;
	line-height: 1.7;
	color: #4a5568;
}

.ahl-terms-popup-content p {
	margin: 0 0 12px;
}

/* ===== Terms & Conditions - PDF Preview ===== */
.ahl-terms-popup-box--pdf {
	max-width: 780px;
}

.ahl-terms-popup-content.ahl-terms-popup-pdf {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ahl-pdf-frame-wrap {
	position: relative;
	width: 100%;
	height: 65vh;
	height: 65dvh;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
}

.ahl-pdf-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	font-size: 13px;
	color: #64748b;
	background: #f1f5f9;
	transition: opacity 0.2s ease;
	z-index: 1;
}

.ahl-pdf-loading--error {
	color: #b45309;
	font-weight: 600;
}

.ahl-pdf-loading--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.ahl-pdf-frame {
	position: relative;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.ahl-pdf-download-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	align-self: flex-start;
	padding: 10px 18px;
	background: #0b3d91;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.ahl-pdf-download-link:hover,
.ahl-pdf-download-link:focus {
	background: #0a2f70;
	color: #ffffff;
}

.ahl-pdf-download-link svg {
	flex: none;
}

body.ahl-terms-popup-locked {
	overflow: hidden;
}

.ahl-form-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #f5a623;
	color: #0b2545;
	font-weight: 800;
	font-size: 15px;
	padding: 15px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.25s ease;
	margin-top: 4px;
}

.ahl-form-submit:hover {
	background-color: #e0951a;
	transform: translateY(-2px);
}

.ahl-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.ahl-submit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	flex: none;
}

.ahl-submit-icon svg {
	width: 1em;
	height: 1em;
}

.ahl-submit-icon i {
	line-height: 1;
}

.ahl-form-message {
	font-size: 13px;
	text-align: center;
	min-height: 18px;
	font-weight: 600;
}

.ahl-form-message.ahl-success {
	color: #1e8e3e;
}

.ahl-form-message.ahl-error {
	color: #d93025;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
	.ahl-hero-grid {
		grid-template-columns: 1fr;
	}
	.ahl-image-col {
		min-height: 340px;
		order: 1;
	}
	.ahl-content-col {
		order: 2;
		padding: 40px 24px 20px;
	}
	.ahl-form-col {
		order: 3;
		padding: 30px 20px 50px;
	}
	.ahl-heading {
		font-size: 34px;
	}
}

@media (max-width: 480px) {
	.ahl-field-row {
		grid-template-columns: 1fr;
	}
	.ahl-cta-row {
		flex-direction: column;
		align-items: stretch;
	}
	.ahl-btn {
		justify-content: center;
	}

	.ahl-terms-popup-overlay {
		align-items: flex-end;
		padding: 0;
	}

	.ahl-terms-popup-box {
		max-width: 100%;
		width: 100%;
		max-height: 88vh;
		max-height: 88dvh;
		border-radius: 16px 16px 0 0;
		padding: 30px 20px 24px;
		animation: ahlPopupInMobile 0.25s ease;
	}

	.ahl-terms-popup-close {
		top: 10px !important;
		right: 10px !important;
	}

	.ahl-terms-popup-title {
		font-size: 18px;
		padding-right: 32px;
	}

	.ahl-terms-popup-content {
		font-size: 13px;
	}

	.ahl-terms-popup-box--pdf {
		max-width: 100%;
	}

	.ahl-pdf-frame-wrap {
		height: 50vh;
		height: 50dvh;
		border-radius: 8px;
	}

	.ahl-pdf-download-link {
		align-self: stretch;
		justify-content: center;
	}
}

@keyframes ahlPopupInMobile {
	from { opacity: 0; transform: translateY(100%); }
	to { opacity: 1; transform: translateY(0); }
}

/* ===== Image Animation Effects ===== */
[data-ahl-animate] {
	opacity: 0;
	will-change: transform, opacity;
}

[data-ahl-animate].ahl-animated {
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-reduced-motion: reduce) {
	[data-ahl-animate] {
		opacity: 1;
		animation: none !important;
	}
}

@keyframes ahlFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes ahlFadeInUp {
	from { opacity: 0; transform: translateY(50px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes ahlFadeInDown {
	from { opacity: 0; transform: translateY(-50px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes ahlFadeInLeft {
	from { opacity: 0; transform: translateX(-60px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes ahlFadeInRight {
	from { opacity: 0; transform: translateX(60px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes ahlZoomIn {
	from { opacity: 0; transform: scale(0.7); }
	to { opacity: 1; transform: scale(1); }
}
@keyframes ahlZoomInUp {
	from { opacity: 0; transform: scale(0.7) translateY(40px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ahlSlideInUp {
	from { opacity: 0; transform: translateY(100px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes ahlSlideInDown {
	from { opacity: 0; transform: translateY(-100px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes ahlSlideInLeft {
	from { opacity: 0; transform: translateX(-100px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes ahlSlideInRight {
	from { opacity: 0; transform: translateX(100px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes ahlBounceIn {
	0% { opacity: 0; transform: scale(0.3); }
	50% { opacity: 1; transform: scale(1.08); }
	70% { transform: scale(0.94); }
	100% { transform: scale(1); }
}
@keyframes ahlRotateIn {
	from { opacity: 0; transform: rotate(-15deg) scale(0.8); }
	to { opacity: 1; transform: rotate(0) scale(1); }
}
