/* ==========================================================
   ADITI PROMOTERS
   HOME CTA
   PREMIUM CONVERSION SECTION
   ========================================================== */

.home-cta {
	position: relative;
	margin: 120px auto 0;
	max-width: 1240px;

	background: #152f63;
	color: #ffffff;

	overflow: hidden;
}

.home-cta::before {
	content: "";
	position: absolute;
	inset: 24px;

	border: 1px solid rgba(255, 255, 255, 0.14);

	pointer-events: none;
}

.home-cta__inner {
	position: relative;
	z-index: 1;

	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 80px;

	padding: 88px 80px;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.home-cta__content {
	max-width: 820px;
}

.home-cta__eyebrow {
	display: block;
	margin-bottom: 22px;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.24em;
	text-transform: uppercase;

	color: #d39a24;
}

.home-cta__title {
	max-width: 820px;
	margin: 0 0 28px;

	font-size: clamp(48px, 5.2vw, 72px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.04em;

	color: #ffffff;
}

.home-cta__description {
	max-width: 650px;
	margin: 0;

	font-size: 18px;
	font-weight: 400;
	line-height: 1.75;

	color: rgba(255, 255, 255, 0.72);
}


/* ==========================================================
   ACTIONS
   ========================================================== */

.home-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;

	width: 250px;
	min-width: 250px;
}

.home-cta__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	min-height: 58px;
	padding: 16px 20px;

	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}

.home-cta__button svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;

	transition: transform 0.3s ease;
}

.home-cta__button:hover svg {
	transform: translateX(4px);
}


/* ==========================================================
   PRIMARY
   ========================================================== */

.home-cta__button--primary {
	background: #ffffff;
	border: 1px solid #ffffff;

	color: #152f63;
}

.home-cta__button--primary:hover {
	background: #d39a24;
	border-color: #d39a24;

	color: #152f63;
}


/* ==========================================================
   SECONDARY
   ========================================================== */

.home-cta__button--secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.42);

	color: #ffffff;
}

.home-cta__button--secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.8);

	color: #ffffff;
}


/* ==========================================================
   FOCUS
   ========================================================== */

.home-cta__button:focus-visible {
	outline: 2px solid #d39a24;
	outline-offset: 4px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.home-cta {
		margin-top: 96px;
	}

	.home-cta__inner {
		grid-template-columns: minmax(0, 1fr) 220px;
		gap: 48px;

		padding: 72px 56px;
	}

	.home-cta::before {
		inset: 20px;
	}

	.home-cta__title {
		font-size: clamp(44px, 6vw, 60px);
	}

	.home-cta__description {
		font-size: 17px;
	}

	.home-cta__actions {
		width: 220px;
		min-width: 220px;
	}
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.home-cta {
		margin-top: 76px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.home-cta::before {
		inset: 14px;
	}

	.home-cta__inner {
		display: block;

		padding: 64px 36px 48px;
	}

	.home-cta__content {
		max-width: none;
	}

	.home-cta__eyebrow {
		margin-bottom: 18px;
		font-size: 11px;
		letter-spacing: 0.19em;
	}

	.home-cta__title {
		margin-bottom: 22px;

		font-size: clamp(36px, 9vw, 48px);
		line-height: 1.06;
		letter-spacing: -0.03em;
	}

	.home-cta__description {
		font-size: 15.5px;
		line-height: 1.7;
	}

	.home-cta__actions {
		width: 100%;
		min-width: 0;
		margin-top: 40px;
	}

	.home-cta__button {
		min-height: 56px;
	}
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

	.home-cta {
		margin-top: 64px;
		margin-left: 18px;
		margin-right: 18px;
	}

	.home-cta__inner {
		padding: 58px 30px 42px;
	}

	.home-cta::before {
		inset: 12px;
	}

	.home-cta__title {
		font-size: 36px;
	}

	.home-cta__description {
		font-size: 15px;
	}

	.home-cta__actions {
		margin-top: 34px;
	}

	.home-cta__button {
		padding: 15px 18px;
		font-size: 14px;
	}
}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 375px) {

	.home-cta {
		margin-left: 16px;
		margin-right: 16px;
	}

	.home-cta__inner {
		padding: 52px 26px 38px;
	}

	.home-cta__title {
		font-size: 33px;
	}

	.home-cta__description {
		font-size: 14.5px;
	}

	.home-cta__button {
		min-height: 54px;
	}
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.home-cta__button,
	.home-cta__button svg {
		transition: none;
	}
}

/* ==========================================================
   FINAL CTA PRECISION REFINEMENT
   ========================================================== */

.home-cta {
	margin-top: 72px;
}


/* ----------------------------------------------------------
   Subtle Aditi architectural detail
   ---------------------------------------------------------- */

.home-cta__eyebrow {
	position: relative;
	padding-top: 18px;
}

.home-cta__eyebrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 42px;
	height: 1px;

	background: #d39a24;
}


/* ----------------------------------------------------------
   Refined action proportions
   ---------------------------------------------------------- */

.home-cta__actions {
	width: 238px;
	min-width: 238px;
	gap: 10px;
}

.home-cta__button {
	min-height: 56px;
	padding: 15px 19px;
}


/* ----------------------------------------------------------
   Tablet refinement
   ---------------------------------------------------------- */

@media (max-width: 1024px) {

	.home-cta {
		margin-top: 64px;
	}

	.home-cta__actions {
		width: 220px;
		min-width: 220px;
	}
}


/* ----------------------------------------------------------
   Mobile refinement
   ---------------------------------------------------------- */

@media (max-width: 767px) {

	.home-cta {
		margin-top: 56px;
	}

	.home-cta__eyebrow {
		padding-top: 16px;
	}

	.home-cta__eyebrow::before {
		width: 36px;
	}

	.home-cta__actions {
		width: 100%;
		min-width: 0;
	}
}


/* ----------------------------------------------------------
   Small mobile
   ---------------------------------------------------------- */

@media (max-width: 480px) {

	.home-cta {
		margin-top: 48px;
	}

	.home-cta__eyebrow {
		padding-top: 15px;
	}

	.home-cta__eyebrow::before {
		width: 32px;
	}
}