.laec-section,
.laec-section * {
	box-sizing: border-box;
}

.laec-section {
	--laec-navy: #00182b;
	--laec-card: #001b31;
	--laec-gold: #fbb63f;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 470px;
	padding: 72px 40px 48px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 42%, rgba(9, 54, 83, .55), transparent 46%),
		linear-gradient(180deg, #001529 0%, #001a30 55%, #001426 100%);
	font-family: "Arial", "Helvetica Neue", sans-serif;
}

.laec-section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .34;
	background-image:
		repeating-radial-gradient(ellipse at 92% 53%, transparent 0 16px, rgba(62, 108, 137, .13) 17px 19px, transparent 20px 34px),
		linear-gradient(135deg, transparent 0 24%, rgba(40, 83, 111, .12) 25% 26%, transparent 27% 100%),
		radial-gradient(ellipse at 3% 65%, rgba(52, 91, 115, .22), transparent 36%);
	mix-blend-mode: screen;
}

.laec-card {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1400px;
	min-height: 350px;
	padding: 58px 70px 28px;
	border: 2px solid var(--laec-gold);
	border-radius: 39px;
	background:
		radial-gradient(circle at 50% 45%, rgba(6, 53, 84, .52), transparent 62%),
		linear-gradient(180deg, rgba(0, 25, 46, .98), rgba(0, 21, 39, .98));
	box-shadow: inset 0 0 70px rgba(0, 0, 0, .16);
}

.laec-card::before,
.laec-card::after {
	content: "";
	position: absolute;
	top: -3px;
	width: calc(50% - 70px);
	height: 7px;
	background: #001629;
}

.laec-card::before { left: 2px; }
.laec-card::after { right: 2px; }

.laec-shield {
	position: absolute;
	z-index: 3;
	top: -44px;
	left: 50%;
	width: 82px;
	transform: translateX(-50%);
	line-height: 0;
}

.laec-shield svg,
.laec-shield img {
	display: block;
	width: 100%;
	height: auto;
}

.laec-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
}

.laec-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0 0 17px;
	color: var(--laec-gold);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 4px;
	white-space: nowrap;
}

.laec-eyebrow::before,
.laec-eyebrow::after {
	content: "";
	display: block;
	width: 42px;
	height: 2px;
	background: var(--laec-gold);
}

.laec-title {
	max-width: 1060px;
	margin: 0 0 12px;
	color: #f8f7f4;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -.8px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, .22);
}

.laec-description {
	max-width: 760px;
	margin: 0 0 19px;
	color: #d8d6d4;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.45;
}

.laec-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 410px;
	max-width: 100%;
	min-height: 55px;
	padding: 12px 24px 12px 48px;
	border: 2px solid #ffd267;
	border-radius: 8px;
	background:
		linear-gradient(100deg, rgba(255, 237, 167, .92), rgba(255, 200, 74, .96) 47%, rgba(245, 175, 45, .94)),
		#f8bd43;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, .26), 0 5px 12px rgba(0, 0, 0, .18);
	color: #00203a;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 1.4px;
	text-decoration: none;
	transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.laec-button:hover,
.laec-button:focus {
	color: #00203a;
	filter: brightness(1.07);
	transform: translateY(-2px);
	box-shadow: inset 0 0 20px rgba(255, 255, 255, .35), 0 9px 20px rgba(0, 0, 0, .25);
}

.laec-button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.laec-arrow {
	flex: 0 0 34px;
	width: 34px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.6;
	transition: transform .2s ease;
}

.laec-button:hover .laec-arrow {
	transform: translateX(5px);
}

.laec-privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	margin-top: 14px;
	color: #d8d6d4;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.35;
}

.laec-privacy-icon {
	flex: 0 0 21px;
	width: 21px;
	line-height: 0;
}

.laec-privacy-icon svg {
	width: 100%;
	height: auto;
	fill: none;
	stroke: var(--laec-gold);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

@media (max-width: 1024px) {
	.laec-section {
		min-height: 560px;
		padding: 85px 34px 50px;
	}

	.laec-card {
		max-width: 900px;
		padding: 72px 48px 38px;
	}

	.laec-title {
		font-size: 37px;
	}
}

@media (max-width: 767px) {
	.laec-section {
		align-items: flex-start;
		min-height: 930px;
		padding: 150px 0 80px;
		background:
			radial-gradient(circle at 50% 44%, rgba(7, 47, 77, .58), transparent 48%),
			linear-gradient(180deg, #001325 0%, #00192e 48%, #001326 100%);
	}

	.laec-card {
		width: 83.2%;
		max-width: none;
		min-height: 700px;
		padding: 86px 36px 40px;
		border-width: 2px;
		border-radius: 38px;
	}

	.laec-card::before,
	.laec-card::after {
		width: calc(50% - 56px);
		height: 6px;
	}

	.laec-shield {
		top: -58px;
		width: 112px;
	}

	.laec-eyebrow {
		gap: 16px;
		margin-bottom: 28px;
		font-size: 16px;
		letter-spacing: 3px;
	}

	.laec-eyebrow::before,
	.laec-eyebrow::after {
		width: 42px;
	}

	.laec-title {
		max-width: 650px;
		margin-bottom: 20px;
		font-size: clamp(34px, 5.4vw, 45px);
		line-height: 1.2;
		letter-spacing: -.6px;
	}

	.laec-description {
		max-width: 620px;
		margin-bottom: 28px;
		font-size: clamp(20px, 2.8vw, 25px);
		line-height: 1.42;
	}

	.laec-button {
		width: 100%;
		min-height: 65px;
		padding: 16px 24px 16px 40px;
		font-size: clamp(18px, 2.7vw, 24px);
		letter-spacing: 1px;
	}

	.laec-privacy {
		max-width: 610px;
		gap: 15px;
		margin-top: 20px;
		font-size: clamp(17px, 2.4vw, 22px);
		line-height: 1.35;
	}

	.laec-privacy-icon {
		flex-basis: 27px;
		width: 27px;
	}
}

@media (max-width: 480px) {
	.laec-section {
		min-height: auto;
		padding: 85px 0 45px;
	}

	.laec-card {
		width: calc(100% - 38px);
		min-height: 0;
		padding: 62px 18px 28px;
		border-width: 2px;
		border-radius: 26px;
	}

	.laec-card::before,
	.laec-card::after {
		width: calc(50% - 40px);
		height: 6px;
	}

	.laec-shield {
		top: -42px;
		width: 80px;
	}

	.laec-eyebrow {
		gap: 12px;
		margin-bottom: 18px;
		font-size: 11px;
		letter-spacing: 1.8px;
	}

	.laec-eyebrow::before,
	.laec-eyebrow::after {
		width: 20px;
		height: 1px;
	}

	.laec-title {
		margin-bottom: 15px;
		font-size: 28px;
		line-height: 1.18;
	}

	.laec-description {
		margin-bottom: 20px;
		font-size: 16px;
		line-height: 1.4;
	}

	.laec-button {
		min-height: 52px;
		padding: 11px 15px 11px 20px;
		font-size: 15px;
		letter-spacing: .7px;
	}

	.laec-arrow {
		flex-basis: 27px;
		width: 27px;
	}

	.laec-privacy {
		gap: 10px;
		margin-top: 16px;
		font-size: 14px;
	}

	.laec-privacy-icon {
		flex-basis: 22px;
		width: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.laec-button,
	.laec-arrow {
		transition: none;
	}
}
