/* =============================================================================
   HOME PAGE – INTRO SECTION UNDER HERO
============================================================================= */
.h2v-home-intro {
	padding: 0 20px 80px; /* removed top padding entirely */
	background: transparent;
}

.h2v-home-intro-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.h2v-home-intro-inner h2 {
	font-size: 34px;
	font-weight: 700;
	color: #1f2a37;
	margin-bottom: 16px;
}

.h2v-home-intro-subtitle {
	font-size: 18px;
	color: #4b5563;
	max-width: 760px;
	margin: 0 auto 50px;
	line-height: 1.6;
}

/* =============================================================================
   CARD GRID
============================================================================= */
.h2v-home-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.h2v-home-card {
	background: #ffffff;
	border-radius: 14px;
	padding: 30px 26px;
	text-align: left;
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.h2v-home-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1f2a37;
}

.h2v-home-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #4b5563;
}

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width: 1000px) {
	.h2v-home-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.h2v-home-cards {
		grid-template-columns: 1fr;
	}

	.h2v-home-intro-inner h2 {
		font-size: 28px;
	}
}

/* =============================================================================
   HERO SECTION
============================================================================= */
.h2v-hero-section {
	padding: 25px 20px 10px;
	background: transparent;
	text-align: center;
}

.h2v-hero-containerC {
	max-width: 1150px;
	margin: 0 auto;
}

/* HEADLINE */
.h2v-hero-titleC {
	font-size: 46px;
	color: #1d3557;
	font-weight: 700;
	line-height: 1.18;
	margin-bottom: 20px;
}

/* SUBTITLE — remove bottom spacing control */
.h2v-hero-subtitleC {
	font-size: 20px;
	color: #1d3557;
	max-width: 750px;
	margin: 0 auto; /* spacing handled by button row */
	line-height: 1.45;
}

/* =============================================================================
   BUTTON GROUP — SINGLE SOURCE OF VERTICAL SPACING
============================================================================= */
.h2v-hero-buttonsC {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin: 28px 0; /* EQUAL spacing above and below buttons */
}

/* PRIMARY BUTTON */
.h2v-hero-btn {
	background: #457b9d !important;
	color: white !important;
	padding: 14px 28px !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	border: none !important;
	transition: background 0.25s ease !important;
	cursor: pointer !important;
	margin: 0;
}

.h2v-hero-btn:hover {
	background: #1d3557 !important;
	color: #ffffff !important;
}

/* SECONDARY BUTTON */
.h2v-hero-btn-secondary {
	background: #457b9d !important;
	color: white !important;
	padding: 14px 28px !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	border: none !important;
	transition: background 0.25s ease !important;
	cursor: pointer !important;
	margin: 0;
}

.h2v-hero-btn-secondary:hover {
	background: #1d3557 !important;
	color: #ffffff !important;
}

/* SUPPORT LIST */
.h2v-hero-listC {
	list-style: none;
	padding: 0;
	margin: 0 auto 40px;
	font-size: 17px;
	color: #1d3557;
	max-width: 420px;
	line-height: 1.45;
}

.h2v-hero-listC li {
	margin-bottom: 10px;
}

/* IMAGE / VIDEO (NOT USED HERE) */
.h2v-hero-image-wrapperC {
	margin-top: 25px;
}

.h2v-hero-imageC {
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {

	.h2v-hero-titleC {
		font-size: 34px;
	}

	.h2v-hero-subtitleC {
		font-size: 18px;
	}
}
