/* ==========================================================================
   Hero CTA strip — webcirclez.com live (Lets Get Started your project)
   ========================================================================== */

.wcz-hero-cta-strip {
	position: relative;
	z-index: 2;
	background: var(--wcz-primary);
	padding: clamp(28px, 4vw, 40px) 0;
	overflow: hidden;
	opacity: 1;
	transform: none;
}

.wcz-hero-cta-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.wcz-hero-cta-deco-item {
	position: absolute;
	color: rgba(255, 255, 255, 0.22);
	line-height: 0;
}

.wcz-hero-cta-deco-item--tri-1 {
	top: 18%;
	left: 8%;
	transform: rotate(-12deg);
}

.wcz-hero-cta-deco-item--tri-2 {
	bottom: 22%;
	left: 28%;
	transform: rotate(18deg);
}

.wcz-hero-cta-deco-item--zigzag {
	top: 28%;
	right: 18%;
	opacity: 0.85;
}

.wcz-hero-cta-deco-item--dots {
	bottom: 20%;
	right: 32%;
}

.wcz-hero-cta-deco-item--square {
	top: 20%;
	left: 52%;
	transform: rotate(12deg);
	opacity: 0.7;
}

.wcz-hero-cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 48px);
	flex-wrap: nowrap;
}

.wcz-hero-cta-text {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 640px;
	text-align: left !important;
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}

.wcz-hero-cta-text h4,
.wcz-hero-cta-text h2 {
	font-family: var(--wcz-font-display);
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 400;
	color: #fff !important;
	line-height: 1.35;
	margin: 0 0 6px;
	text-align: left !important;
	letter-spacing: 0.01em;
}

.wcz-hero-cta-text h4 strong,
.wcz-hero-cta-text h2 strong {
	font-weight: 800;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	background: none;
}

.wcz-hero-cta-text p {
	margin: 0;
	margin-left: 0 !important;
	margin-right: 0 !important;
	font-family: var(--wcz-font);
	font-size: clamp(0.875rem, 1.6vw, 1rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92) !important;
	text-align: left !important;
	max-width: 520px;
}

.wcz-hero-cta-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px;
	text-align: right;
}

.wcz-btn-hero-cta,
.wcz-hero-cta-strip .wcz-btn-hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 22px;
	font-family: var(--wcz-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff !important;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 2px;
	box-shadow: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
	white-space: nowrap;
}

.wcz-btn-hero-cta:hover,
.wcz-hero-cta-strip .wcz-btn-hero-cta:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
	color: #fff !important;
	transform: none;
}

@media (max-width: 900px) {
	.wcz-hero-cta-inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.wcz-hero-cta-text,
	.wcz-hero-cta-text h4,
	.wcz-hero-cta-text h2,
	.wcz-hero-cta-text p {
		text-align: left !important;
		max-width: none;
	}

	.wcz-hero-cta-actions {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (max-width: 520px) {
	.wcz-hero-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.wcz-btn-hero-cta {
		width: 100%;
	}
}
