/* ==========================================================================
   Homepage landing sections — about, process, why choose, testimonials
   ========================================================================== */

.wcz-home-section-eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 14px;
	font-size: var(--wcz-text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.08);
	border: 1px solid rgba(0, 194, 229, 0.2);
	border-radius: 999px;
}

.wcz-home-section-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto var(--wcz-section-header-gap, clamp(24px, 3vw, 36px));
}

.wcz-home-section-header--light .wcz-home-section-title,
.wcz-home-section-header--light .wcz-home-section-desc {
	color: #fff;
}

.wcz-home-section-header--light .wcz-home-section-desc {
	color: rgba(255, 255, 255, 0.78);
}

.wcz-home-section-title {
	margin: 0 0 16px;
	font-family: var(--wcz-font-display);
	font-size: var(--wcz-section-title-size);
	font-weight: 700;
	line-height: 1.25;
	color: #111827;
}

.wcz-home-section-desc {
	margin: auto;
	font-size: var(--wcz-text-lg);
	line-height: 1.75;
	color: #6b7280;
}

/* About intro */
.wcz-home-about {
	padding: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px)) 0;
	background: #fff;
}

.wcz-home-about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	margin-bottom: clamp(48px, 6vw, 72px);
}

.wcz-home-about-title {
	margin: 0 0 20px;
	font-family: var(--wcz-font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
}

.wcz-home-about-lead {
	margin: 0 0 16px;
	font-size: var(--wcz-text-lg);
	line-height: 1.8;
	color: #374151;
}

.wcz-home-about-text {
	margin: 0 0 28px;
	font-size: var(--wcz-text-base);
	line-height: 1.75;
	color: #6b7280;
}

.wcz-home-about-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wcz-home-about-photo-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.wcz-home-about-photo-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.35) 100%);
	pointer-events: none;
	z-index: 1;
}

.wcz-home-about-photo {
	display: block;
	width: 100%;
	height: auto;
	min-height: 320px;
	object-fit: cover;
}

.wcz-home-about-photo-badge {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	border-left: 4px solid var(--wcz-primary, #00c2e5);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wcz-home-about-photo-badge strong {
	display: block;
	font-size: var(--wcz-text-md);
	font-weight: 800;
	color: #111827;
	line-height: 1.2;
}

.wcz-home-about-photo-badge span {
	font-size: var(--wcz-text-sm);
	color: #6b7280;
}

.wcz-home-about-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 28px);
}

.wcz-home-about-highlight {
	position: relative;
	padding: clamp(24px, 3vw, 32px);
	background: #f8fafc;
	border: 1px solid #e8edf2;
	border-radius: 14px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wcz-home-about-highlight::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--wcz-primary, #00c2e5);
	border-radius: 0 0 4px 0;
	transition: height 0.3s ease;
}

.wcz-home-about-highlight:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 194, 229, 0.1);
	border-color: rgba(0, 194, 229, 0.25);
}

.wcz-home-about-highlight:hover::before {
	height: 100%;
}

.wcz-home-about-highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 16px;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.1);
	border-radius: 12px;
}

.wcz-home-about-highlight h3 {
	margin: 0 0 10px;
	font-size: var(--wcz-text-md);
	font-weight: 700;
	color: #111827;
}

.wcz-home-about-highlight p {
	margin: 0;
	font-size: var(--wcz-text-base);
	line-height: 1.7;
	color: #6b7280;
}

/* Process */
.wcz-home-process {
	padding: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px)) 0;
	background: linear-gradient(180deg, #f3f4f6 0%, #f8fafc 100%);
}

.wcz-home-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 28px);
}

.wcz-home-process-step {
	position: relative;
	padding: clamp(28px, 3vw, 36px) clamp(22px, 2.5vw, 28px);
	background: #fff;
	border: 1px solid #e8edf2;
	border-radius: 16px;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcz-home-process-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 194, 229, 0.1);
}

.wcz-home-process-num {
	position: absolute;
	top: 16px;
	right: 18px;
	font-family: var(--wcz-font-display);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: rgba(0, 194, 229, 0.12);
}

.wcz-home-process-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.08);
	border: 2px solid rgba(0, 194, 229, 0.18);
	border-radius: 14px;
}

.wcz-home-process-step h3 {
	margin: 0 0 12px;
	font-size: var(--wcz-text-md);
	font-weight: 700;
	color: #111827;
	line-height: 1.35;
}

.wcz-home-process-step p {
	margin: 0;
	font-size: var(--wcz-text-sm);
	line-height: 1.7;
	color: #6b7280;
}

/* Why choose — light cards */
.wcz-home-why,
.wcz-home-why--light {
	position: relative;
	padding: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px)) 0;
	background: #f5f7fa;
	overflow: hidden;
}

.wcz-home-why-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 8% 12%, rgba(0, 194, 229, 0.08), transparent 60%),
		radial-gradient(ellipse 50% 40% at 92% 88%, rgba(0, 194, 229, 0.07), transparent 55%);
}

.wcz-home-why-wave {
	position: absolute;
	border-radius: 50%;
	border: 28px solid rgba(0, 194, 229, 0.08);
	opacity: 0.9;
}

.wcz-home-why-wave--tl {
	width: 220px;
	height: 220px;
	top: -90px;
	left: -70px;
	box-shadow: 0 0 0 56px rgba(0, 194, 229, 0.04);
}

.wcz-home-why-wave--br {
	width: 240px;
	height: 240px;
	right: -80px;
	bottom: -100px;
	box-shadow: 0 0 0 56px rgba(0, 194, 229, 0.035);
}

.wcz-home-why-dots {
	position: absolute;
	width: 72px;
	height: 72px;
	background-image: radial-gradient(circle, rgba(148, 163, 184, 0.55) 1.5px, transparent 1.6px);
	background-size: 12px 12px;
	opacity: 0.55;
}

.wcz-home-why-dots--tr {
	top: 36px;
	right: 48px;
}

.wcz-home-why-dots--ml {
	top: 46%;
	left: 28px;
	width: 56px;
	height: 56px;
}

.wcz-home-why .wcz-container {
	position: relative;
	z-index: 1;
}

.wcz-home-why .wcz-home-section-header {
	max-width: min(100%, 1100px);
}

.wcz-home-why .wcz-home-section-title {
	white-space: nowrap;
	font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.wcz-home-why .wcz-home-section-title .wcz-gradient-text {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: var(--wcz-primary, #00c2e5);
	color: var(--wcz-primary, #00c2e5);
	white-space: nowrap;
}

.wcz-home-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2.2vw, 24px);
}

.wcz-home-why-card {
	position: relative;
	padding: clamp(22px, 2.5vw, 28px);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.05);
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wcz-home-why-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 194, 229, 0.25);
	box-shadow: 0 16px 36px rgba(0, 194, 229, 0.12);
}

.wcz-home-why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.1);
	border: 1px solid rgba(0, 194, 229, 0.16);
	border-radius: 12px;
}

.wcz-home-why-card h3 {
	margin: 0 0 8px;
	font-size: var(--wcz-text-md);
	font-weight: 700;
	color: #111827;
}

.wcz-home-why-card p {
	margin: 0;
	font-size: var(--wcz-text-sm);
	line-height: 1.7;
	color: #6b7280;
}

.wcz-home-why-card-dots {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 28px;
	height: 28px;
	background-image: radial-gradient(circle, rgba(0, 194, 229, 0.35) 1.4px, transparent 1.5px);
	background-size: 8px 8px;
	pointer-events: none;
}

/* Testimonials */
.wcz-home-testimonials {
	padding: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px)) 0;
	background: #fff;
}

.wcz-home-testimonials .wcz-testimonials-slider {
	margin-top: 8px;
}

.wcz-home-testimonials-footer {
	margin-top: 32px;
	text-align: center;
}

/* FAQ on homepage */
.wcz-home-faq.wcz-faq-section {
	background: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
	.wcz-home-about-grid {
		grid-template-columns: 1fr;
	}

	.wcz-home-about-visual {
		order: -1;
		max-width: 560px;
		margin: 0 auto;
		width: 100%;
	}

	.wcz-home-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wcz-home-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wcz-home-about-highlights {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.wcz-home-why .wcz-home-section-title {
		white-space: normal;
		font-size: clamp(1.25rem, 5.5vw, 1.5rem);
	}

	.wcz-home-process-grid,
	.wcz-home-why-grid {
		grid-template-columns: 1fr;
	}

	.wcz-home-about-actions {
		flex-direction: column;
	}

	.wcz-home-about-actions .wcz-btn {
		width: 100%;
		justify-content: center;
	}
}
