.vmch-hww,
.vmch-hww * {
	box-sizing: border-box;
}

.vmch-hww {
	--vmch-hww-navy: #021940;
	--vmch-hww-blue: #125eca;
	--vmch-hww-blue-hover: #0f4ba3;
	--vmch-hww-light: #f4f7fb;
	--vmch-hww-white: #ffffff;
	--vmch-hww-muted: #4a5a6d;
	--vmch-hww-muted-dark: #b0bec5;
	--vmch-hww-icon-bg: #eef4fa;
	--vmch-hww-stars: #f5b301;
	width: 100%;
}

.vmch-hww-section {
	width: 100%;
	padding: 100px 0;
}

.vmch-hww-container {
	width: calc(100% - 32px);
	max-width: 1300px;
	margin: 0 auto;
}

.vmch-hww-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 54px;
}

.vmch-hww-centered-head {
	max-width: 850px;
	margin: 0 auto 48px;
	text-align: center;
}

.vmch-hww-hero {
	background: var(--vmch-hww-white);
	color: var(--vmch-hww-navy);
}

.vmch-hww-process,
.vmch-hww-testimonials,
.vmch-hww-faq {
	background: var(--vmch-hww-navy);
	color: var(--vmch-hww-white);
}

.vmch-hww-services,
.vmch-hww-cta {
	background: var(--vmch-hww-light);
	color: var(--vmch-hww-navy);
}

.vmch-hww-stats {
	background: var(--vmch-hww-white);
	color: var(--vmch-hww-navy);
}

.vmch-hww-subtitle {
	display: inline-block;
	margin: 0 0 12px;
	color: var(--vmch-hww-blue);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.vmch-hww-hero-title,
.vmch-hww-section-title,
.vmch-hww-cta-title {
	margin: 0 0 20px;
	color: inherit;
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.vmch-hww-section-title {
	font-size: clamp(2rem, 3.1vw, 2.75rem);
}

.vmch-hww-cta-title {
	font-size: clamp(2rem, 3vw, 2.6rem);
}

.vmch-hww-lead,
.vmch-hww-cta-description {
	margin: 0;
	color: var(--vmch-hww-muted);
	font-size: 1.1rem;
	line-height: 1.65;
}

.vmch-hww-process .vmch-hww-lead,
.vmch-hww-testimonials .vmch-hww-lead,
.vmch-hww-faq .vmch-hww-lead,
.vmch-hww-process .vmch-hww-card-text,
.vmch-hww-testimonials .vmch-hww-testimonial-quote,
.vmch-hww-faq .vmch-hww-faq-answer {
	color: var(--vmch-hww-muted-dark);
}

.vmch-hww-hero-description {
	max-width: 640px;
	margin-bottom: 28px;
}

.vmch-hww-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 28px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, #3e8eb9 0%, var(--vmch-hww-blue) 100%);
	color: var(--vmch-hww-white);
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vmch-hww-button:hover,
.vmch-hww-button:focus {
	color: var(--vmch-hww-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(18, 94, 202, 0.2);
}

.vmch-hww-image {
	width: 100%;
}

.vmch-hww-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	object-fit: cover;
}

.vmch-hww-hero-image img {
	box-shadow: 0 20px 40px rgba(2, 25, 64, 0.08);
}

.vmch-hww-services-image img {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vmch-hww-card-grid,
.vmch-hww-testimonial-grid,
.vmch-hww-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vmch-hww-process-card,
.vmch-hww-testimonial-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 30px 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmch-hww-hero .vmch-hww-process-card,
.vmch-hww-services .vmch-hww-process-card,
.vmch-hww-stats .vmch-hww-process-card,
.vmch-hww-cta .vmch-hww-process-card {
	border-color: rgba(0, 0, 0, 0.03);
	background: var(--vmch-hww-white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.vmch-hww-process-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(2, 25, 64, 0.08);
}

.vmch-hww-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin-bottom: 20px;
	border-radius: 999px;
	background: var(--vmch-hww-icon-bg);
	color: var(--vmch-hww-blue);
}

.vmch-hww-icon svg,
.vmch-hww-custom-svg svg {
	display: block;
	width: 24px;
	height: 24px;
	color: currentColor;
	stroke: currentColor;
}

.vmch-hww-icon img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.vmch-hww-card-title,
.vmch-hww-service-title,
.vmch-hww-author {
	margin: 0 0 12px;
	color: inherit;
	font-size: 1.15rem;
	line-height: 1.35;
	font-weight: 700;
}

.vmch-hww-card-text,
.vmch-hww-service-text,
.vmch-hww-testimonial-quote,
.vmch-hww-stat-label,
.vmch-hww-faq-answer {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.vmch-hww-services-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vmch-hww-service-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 15px;
	align-items: start;
}

.vmch-hww-service-marker {
	color: var(--vmch-hww-blue);
	font-size: 1.15rem;
	line-height: 1;
	font-weight: 800;
	margin-top: 4px;
}

.vmch-hww-service-title {
	margin-bottom: 5px;
	color: var(--vmch-hww-navy);
	font-size: 1.1rem;
}

.vmch-hww-service-text {
	color: var(--vmch-hww-muted);
}

.vmch-hww-stars {
	margin-bottom: 15px;
	color: var(--vmch-hww-stars);
	font-size: 1rem;
	letter-spacing: 1px;
}

.vmch-hww-testimonial-quote {
	margin-bottom: 24px;
}

.vmch-hww-testimonial-author {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 14px;
}

.vmch-hww-avatar {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
}

.vmch-hww-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vmch-hww-author {
	margin: 0;
	color: var(--vmch-hww-white);
	font-size: 1rem;
}

.vmch-hww-stat {
	text-align: center;
}

.vmch-hww-stat-number {
	margin-bottom: 8px;
	color: var(--vmch-hww-blue);
	font-size: clamp(2.25rem, 4vw, 3rem);
	line-height: 1;
	font-weight: 800;
}

.vmch-hww-stat-label {
	color: var(--vmch-hww-muted);
	font-weight: 700;
}

.vmch-hww-faq-list {
	width: min(100%, 860px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vmch-hww-faq-item {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
}

.vmch-hww-faq summary {
	position: relative;
	display: block;
	cursor: pointer;
	list-style: none;
	padding: 20px 56px 20px 20px;
	color: var(--vmch-hww-white);
	font-size: 1rem;
	line-height: 1.45;
	font-weight: 600;
}

.vmch-hww-faq summary::-webkit-details-marker {
	display: none;
}

.vmch-hww-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border-radius: 999px;
	color: var(--vmch-hww-white);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1;
	background: rgba(255, 255, 255, 0.08);
}

.vmch-hww-faq-item[open] summary {
	background: rgba(255, 255, 255, 0.08);
}

.vmch-hww-faq-item[open] summary::after {
	content: "−";
}

.vmch-hww-faq-answer {
	padding: 0 20px 20px;
}

.vmch-hww-cta {
	text-align: center;
}

.vmch-hww-cta-inner {
	max-width: 820px;
	margin: 0 auto;
}

.vmch-hww-cta-description {
	max-width: 700px;
	margin: 0 auto 28px;
}

.vmch-hww-cta .vmch-hww-button {
	background: var(--vmch-hww-navy);
}

.vmch-hww-cta .vmch-hww-button:hover,
.vmch-hww-cta .vmch-hww-button:focus {
	background: #0a2d6b;
}

@media (max-width: 1024px) {
	.vmch-hww-section {
		padding: 80px 0;
	}

	.vmch-hww-two-column {
		grid-template-columns: 1fr;
	}

	.vmch-hww-card-grid,
	.vmch-hww-testimonial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vmch-hww-stats-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.vmch-hww-image {
		order: 2;
	}

	.vmch-hww-hero-copy,
	.vmch-hww-services-copy {
		order: 1;
	}
}

@media (max-width: 767px) {
	.vmch-hww-container {
		width: calc(100% - 24px);
	}

	.vmch-hww-section {
		padding: 60px 0;
	}

	.vmch-hww-card-grid,
	.vmch-hww-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.vmch-hww-process-card,
	.vmch-hww-testimonial-card {
		padding: 24px 20px;
	}

	.vmch-hww-faq summary {
		padding-right: 50px;
	}

	.vmch-hww-button {
		width: 100%;
	}
}
