/* =============================================================================
   HOW IT WORKS – NORMALIZED TO PRICING SYSTEM
   File: page_how_it_works.css
============================================================================= */

.h2v-how-it-works {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px; /* Webflow controls vertical spacing */
	color: #1f2a37;
}

/* =============================================================================
   PAGE TITLE
============================================================================= */
.h2v-how-it-works h1 {
	font-size: 32px;              /* MATCHES PRICING HEADERS */
	font-weight: 700;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.25;
}

/* =============================================================================
   PAGE SUBTITLE
============================================================================= */
.h2v-how-it-works .subtitle {
	font-size: 18px;
	color: #4b5563;
	max-width: 760px;
	margin: 0 auto 20px;
	line-height: 1.6;
	text-align: center;
}

/* =============================================================================
   SECTION BLOCKS
============================================================================= */
.h2v-section {
	margin: 0; /* Webflow handles spacing */
}

/* SECTION HEADERS — ONE STEP DOWN FROM PAGE TITLE */
.h2v-section h2 {
	font-size: 26px;              /* INTENTIONALLY SMALLER */
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.3;
}

/* SECTION BODY COPY */
.h2v-section p {
	font-size: 16px;
	line-height: 1.6;
	color: #374151;
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

/* =============================================================================
   VALUE GRID (MATCHES PRICING CARDS)
============================================================================= */
.h2v-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 30px;
}

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

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

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

/* =============================================================================
   COMPARISON LIST
============================================================================= */
.h2v-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 30px;
}

.h2v-compare ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.h2v-compare li {
	font-size: 15px;
	padding: 8px 0;
	border-bottom: 1px solid #e5e7eb;
}

.h2v-compare .label {
	font-weight: 700;
	margin-bottom: 10px;
}

/* =============================================================================
   CTA SECTION (MATCHES PRICING CTA WEIGHT)
============================================================================= */
.h2v-cta {
	background: #eaf1f6;
	padding: 40px 30px;
	border-radius: 14px;
	text-align: center;
}

.h2v-cta h2 {
	font-size: 26px;              /* SAME AS SECTION HEADERS */
	font-weight: 700;
	margin-bottom: 14px;
}

.h2v-cta p {
	font-size: 18px;
	margin-bottom: 24px;
	color: #374151;
}

.h2v-btn {
	display: inline-block;
	background: #457b9d;
	color: #ffffff;
	padding: 14px 26px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	margin: 0 10px;
}

.h2v-btn.secondary {
	background: #ffffff;
	color: #457b9d;
	border: 2px solid #457b9d;
}

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width: 900px) {

	.h2v-grid {
		grid-template-columns: 1fr;
	}

	.h2v-compare {
		grid-template-columns: 1fr;
	}

	.h2v-how-it-works h1 {
		font-size: 26px;
	}

	.h2v-section h2,
	.h2v-cta h2 {
		font-size: 22px;
	}
}


/* =============================================================================
   WHY THIS MAKES A DIFFERENCE – COMPARISON BLOCK
============================================================================= */

.h2v-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	background: #ffffff;                /* remove weird tint */
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 40px;
	margin: 40px auto 0;
	max-width: 1000px;
}

/* Column headers */
.h2v-compare .label {
	font-size: 18px;
	font-weight: 700;
	color: #1f2a37;
	margin-bottom: 16px;
}

/* Lists */
.h2v-compare ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.h2v-compare li {
	font-size: 15px;
	line-height: 1.6;
	padding: 10px 0;
	border-bottom: 1px solid #e5e7eb;
	color: #374151;
}

/* Subtle visual contrast */
.h2v-compare .with-h2v {
	background: #f7f9fb;
	border-radius: 10px;
	padding: 24px;
}


/* =============================================================================
   HOW IT WORKS – SECTION SPACING FIX
============================================================================= */

/* Space ABOVE "Why This Makes a Difference" */
.h2v-section h2 {
	margin-top: 40px;   /* creates separation from cards above */
}

/* Space BELOW the comparison block */
.h2v-compare {
	margin-bottom: 60px;
}
/* =============================================================================
   WHY THIS MAKES A DIFFERENCE – WIDTH CONTROL
============================================================================= */

.h2v-compare {
	max-width: 600px;    /* ~2/3 of your 1100px content width */
	margin-left: auto;
	margin-right: auto;
}
