/* ==========================================================================
   CTA Banner Section (S7)
   ========================================================================== */

.section-cta-banner {
	padding-bottom: clamp(100px, 4vh, 120px);
	padding-top: clamp(100px, 4vh, 120px);
}

.cta-banner-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 60px);
	background: var(--cwv-card-dark);
	border-radius: 24px;
	position: relative;
	overflow: hidden;
}

/* Subtle gold accent strip at the top */
.cta-banner-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 4px;
	background-color: var(--cwv-gold);
	border-radius: 0 0 4px 4px;
}

.cta-banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-banner-content h2 {
	color: var(--cwv-white);
	font-family: var(--font-heading);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	margin-bottom: 24px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.cta-banner-content p {
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.6;
	margin-bottom: 48px;
	max-width: 600px;
}

.cta-banner-action .btn {
	padding: 18px 42px;
	font-size: 17px;
	font-weight: 600;
	border-radius: 50px;
}

@media screen and (max-width: 768px) {
	.section-cta-banner {
		padding: 60px 0;
	}
	
	.cta-banner-wrapper {
		border-radius: 16px;
	}
}