.lla-cta {
	--lla-cta-align: center;
	--lla-cta-animation-delay: 0s;
	--lla-cta-animation-distance: 24px;
	--lla-cta-animation-duration: 0.75s;
	--lla-cta-bg: #0b2d5b;
	--lla-cta-button-gap: 14px;
	--lla-cta-description-color: rgba(255, 255, 255, 0.9);
	--lla-cta-description-max-width: 720px;
	--lla-cta-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--lla-cta-eyebrow-color: #f6b90f;
	--lla-cta-eyebrow-spacing: 4px;
	--lla-cta-inner-max-width: 980px;
	--lla-cta-items: center;
	--lla-cta-padding: 64px 56px;
	--lla-cta-radius: 28px;
	--lla-cta-title-color: #fff;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
	width: 100%;
}

.lla-cta *,
.lla-cta *::before,
.lla-cta *::after {
	box-sizing: border-box;
}

.lla-cta__content {
	align-items: var(--lla-cta-items);
	background: var(--lla-cta-bg);
	border-radius: var(--lla-cta-radius);
	box-shadow: none;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--lla-cta-inner-max-width);
	padding: var(--lla-cta-padding);
	text-align: var(--lla-cta-align);
	transition: box-shadow 0.35s var(--lla-cta-ease), transform 0.35s var(--lla-cta-ease);
}

.lla-cta__content:hover,
.lla-cta__content:focus-within {
	box-shadow: none;
}

.lla-cta--horizontal .lla-cta__content {
	align-items: center;
	flex-direction: row;
	gap: 40px;
	justify-content: space-between;
	text-align: left;
}

.lla-cta__copy {
	align-items: var(--lla-cta-items);
	display: flex;
	flex-direction: column;
	max-width: 100%;
}

.lla-cta--horizontal .lla-cta__copy {
	align-items: flex-start;
	flex: 1;
}

.lla-cta__eyebrow {
	color: var(--lla-cta-eyebrow-color);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: var(--lla-cta-eyebrow-spacing);
	line-height: 1.35;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.lla-cta__title {
	color: var(--lla-cta-title-color);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.1rem, 4vw, 4rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0 0 18px;
}

.lla-cta__description {
	color: var(--lla-cta-description-color);
	font-size: 1.08rem;
	line-height: 1.72;
	margin: 0 0 30px;
	max-width: var(--lla-cta-description-max-width);
}

.lla-cta--horizontal .lla-cta__description {
	margin-bottom: 0;
}

.lla-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lla-cta-button-gap);
	justify-content: center;
}

.lla-cta--horizontal .lla-cta__actions {
	flex: 0 0 auto;
}

.lla-cta__button {
	--lla-cta-button-bg: #f6b90f;
	--lla-cta-button-border: #f6b90f;
	--lla-cta-button-color: #08264a;
	--lla-cta-button-gap: 10px;
	--lla-cta-button-hover-bg: #08264a;
	--lla-cta-button-hover-border: #fff;
	--lla-cta-button-hover-color: #fff;
	--lla-cta-button-hover-y: -2px;
	--lla-cta-button-icon-color: #08264a;
	--lla-cta-button-icon-hover-color: #fff;
	--lla-cta-button-icon-size: 14px;
	--lla-cta-button-padding: 15px 24px;
	--lla-cta-button-radius: 999px;
	--lla-cta-button-transition: 0.35s;
	align-items: center;
	background: var(--lla-cta-button-bg);
	border: 1px solid var(--lla-cta-button-border);
	border-radius: var(--lla-cta-button-radius);
	color: var(--lla-cta-button-color);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 800;
	gap: var(--lla-cta-button-gap);
	justify-content: center;
	line-height: 1.2;
	padding: var(--lla-cta-button-padding);
	text-decoration: none;
	transition:
		background-color var(--lla-cta-button-transition) var(--lla-cta-ease),
		border-color var(--lla-cta-button-transition) var(--lla-cta-ease),
		color var(--lla-cta-button-transition) var(--lla-cta-ease),
		transform var(--lla-cta-button-transition) var(--lla-cta-ease);
}

.lla-cta__button--button-2 {
	--lla-cta-button-bg: transparent;
	--lla-cta-button-border: #fff;
	--lla-cta-button-color: #fff;
	--lla-cta-button-hover-bg: #fff;
	--lla-cta-button-hover-border: #f6b90f;
	--lla-cta-button-hover-color: #f6b90f;
	--lla-cta-button-icon-color: #fff;
	--lla-cta-button-icon-hover-color: #f6b90f;
}

.lla-cta__button:hover,
.lla-cta__button:focus {
	background: var(--lla-cta-button-hover-bg);
	border-color: var(--lla-cta-button-hover-border);
	color: var(--lla-cta-button-hover-color);
	text-decoration: none;
	transform: translateY(var(--lla-cta-button-hover-y));
}

.lla-cta__button:focus {
	outline: 3px solid rgba(246, 185, 15, 0.35);
	outline-offset: 3px;
}

.lla-cta__button-icon {
	color: var(--lla-cta-button-icon-color);
	display: inline-flex;
	transition: color var(--lla-cta-button-transition) var(--lla-cta-ease);
}

.lla-cta__button:hover .lla-cta__button-icon,
.lla-cta__button:focus .lla-cta__button-icon {
	color: var(--lla-cta-button-icon-hover-color);
}

.lla-cta__button-icon i,
.lla-cta__button-icon svg {
	display: block;
	font-size: var(--lla-cta-button-icon-size);
	height: var(--lla-cta-button-icon-size);
	width: var(--lla-cta-button-icon-size);
}

.lla-cta__button-icon svg,
.lla-cta__button-icon svg * {
	fill: currentColor;
	stroke: currentColor;
}

.lla-cta--animated .lla-cta__content {
	opacity: 0;
	transform: translateY(var(--lla-cta-animation-distance));
	transition:
		filter var(--lla-cta-animation-duration) var(--lla-cta-ease) var(--lla-cta-animation-delay),
		opacity var(--lla-cta-animation-duration) var(--lla-cta-ease) var(--lla-cta-animation-delay),
		transform var(--lla-cta-animation-duration) var(--lla-cta-ease) var(--lla-cta-animation-delay),
		box-shadow 0.35s var(--lla-cta-ease);
}

.lla-cta--premium-blur .lla-cta__content {
	filter: blur(14px);
}

.lla-cta--scale-reveal .lla-cta__content {
	transform: translateY(var(--lla-cta-animation-distance)) scale(0.96);
}

.lla-cta.is-visible .lla-cta__content {
	filter: blur(0);
	opacity: 1;
	transform: none;
}

body.elementor-editor-active .lla-cta,
body.elementor-editor-active .lla-cta * {
	filter: none;
	opacity: 1;
	transform: none;
	visibility: visible;
}

@media (max-width: 1024px) {
	.lla-cta--horizontal .lla-cta__content {
		align-items: var(--lla-cta-items);
		flex-direction: column;
		gap: 0;
		text-align: var(--lla-cta-align);
	}

	.lla-cta--horizontal .lla-cta__copy {
		align-items: var(--lla-cta-items);
		flex: 0 1 auto;
		min-width: 0;
		width: 100%;
	}

	.lla-cta--horizontal .lla-cta__description {
		margin-bottom: 30px;
	}

	.lla-cta__actions,
	.lla-cta--horizontal .lla-cta__actions {
		flex: 0 1 auto;
		flex-wrap: wrap;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.lla-cta__button {
		max-width: 100%;
		min-width: 0;
		white-space: normal;
	}
}

@media (max-width: 767px) {
	.lla-cta {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lla-cta--horizontal .lla-cta__content {
		align-items: var(--lla-cta-items);
		flex-direction: column;
		text-align: var(--lla-cta-align);
	}

	.lla-cta--horizontal .lla-cta__copy {
		align-items: var(--lla-cta-items);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lla-cta--animated .lla-cta__content,
	.lla-cta__content,
	.lla-cta__button,
	.lla-cta__button-icon {
		filter: none;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.lla-cta__button:hover,
	.lla-cta__button:focus {
		transform: none;
	}
}
