/**
 * pages/virtual-cfo.css — Virtual CFO Services Page Styles
 *
 * Structure:
 *   1. Hero section — Gradient background, breadcrumb, title, subtitle
 *   2. Hour-Based Plans — 3 pricing cards (Popular badge on middle card)
 *   3. What Can Be Covered — 6 activity cards grid
 *   4. Regional Coverage — 5 region cards with globe icons
 *   5. Engagement Flow — 7-step process flow
 *   6. CTA Section — Gradient background with 3 buttons
 *
 * @package MJC_Fintech_Child
 */

/* =====================================================
   GLOBAL UTILITIES
   ===================================================== */

.vcfo-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 64px;
}

.vcfo-bar {
	width: 80px;
	height: 4px;
	background-color: #2bbfce;
	border-radius: 2px;
	margin-top: 16px;
}

.vcfo-bar--center {
	margin-left: auto;
	margin-right: auto;
}

/* =====================================================
   SECTION 1 — HERO
   ===================================================== */

.vcfo-hero {
	background: linear-gradient(109deg, #0a2540 8.2%, #1e5f8c 91.8%);
	border-bottom: 1px solid #1e2939;
	padding: 64px 0 48px;
}

.vcfo-breadcrumb-current {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	color: #0a2540;
}

.vcfo-hero__title {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin: 48px 0 0 0;
	display: block;
	line-height: 1.2;
}

.vcfo-hero__subtitle {
	font-family: var(--font-body);
	font-size: 18px;
	color: #2bbfce;
	text-align: center;
	max-width: 720px;
	margin: 24px auto 0;
	line-height: 29px;
}

/* =====================================================
   SECTION 2 — HOUR-BASED PLANS
   ===================================================== */

.vcfo-plans {
	background-color: #ffffff;
	padding: 80px 0;
}

.vcfo-plans__heading {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
	line-height: 1.2;
}

.vcfo-plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-top: 64px;
	position: relative;
}

.vcfo-plan-card {
	background-color: #e8f4f8;
	border: 1px solid #1e2939;
	border-radius: 24px;
	padding: 33px;
	min-height: 575px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
	transition: all 0.25s ease;
}

.vcfo-plan-card:hover {
	box-shadow: 0 8px 24px rgba(43, 191, 206, 0.1);
}

.vcfo-plan-card--popular {
	border: 2px solid #2bbfce;
}

.vcfo-plan-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #0a2540;
	border-radius: 100px;
	padding: 8px 16px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	display: block;
}

.vcfo-plan-card__name {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
}

.vcfo-plan-card__row {
	border-bottom: 1px solid #1e2939;
	padding-bottom: 16px;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vcfo-plan-card__row--last {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.vcfo-plan-card__label {
	font-family: var(--font-body);
	font-size: 12px;
	color: #4a5565;
	text-align: center;
}

.vcfo-plan-card__value {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
}

.vcfo-plan-card__value--mono {
	font-family: var(--font-mono);
	font-weight: 500;
}

.vcfo-plan-card__button {
	background-color: #0a2540;
	border-radius: 100px;
	height: 56px;
	width: 100%;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	transition: background-color 0.25s ease;
	cursor: pointer;
}

.vcfo-plan-card__button:hover {
	background-color: #1e5f8c;
}

.vcfo-plan-card__button:focus-visible {
	outline: 2px solid #2bbfce;
	outline-offset: 2px;
}

/* =====================================================
   SECTION 3 — WHAT CAN BE COVERED
   ===================================================== */

.vcfo-activities {
	background-color: #e8f4f8;
	padding: 80px 0;
}

.vcfo-activities__heading {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
	line-height: 1.2;
}

.vcfo-activities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 64px;
}

.vcfo-activity-card {
	background-color: #ffffff;
	border: 1px solid #1e2939;
	border-radius: 24px;
	padding: 0 32px;
	height: 114px;
	display: flex;
	align-items: center;
	gap: 24px;
	transition: all 0.25s ease;
}

.vcfo-activity-card:hover {
	box-shadow: 0 4px 16px rgba(43, 191, 206, 0.1);
	border-color: #2bbfce;
}

.vcfo-activity-card__badge {
	width: 32px;
	height: 32px;
	background-color: #0a2540;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
}

.vcfo-activity-card__text {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	color: #0a2540;
	line-height: 1.4;
}

/* =====================================================
   SECTION 4 — REGIONAL COVERAGE
   ===================================================== */

.vcfo-regions {
	background-color: #ffffff;
	padding: 80px 0;
}

.vcfo-regions__heading {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
	line-height: 1.2;
}

.vcfo-regions-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	margin-top: 64px;
}

.vcfo-region-card {
	background-color: #e8f4f8;
	border: 1px solid #1e2939;
	border-radius: 24px;
	padding: 33px 16px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
	transition: all 0.25s ease;
}

.vcfo-region-card:hover {
	box-shadow: 0 4px 16px rgba(43, 191, 206, 0.1);
	border-color: #2bbfce;
}

.vcfo-region-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(43, 191, 206, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vcfo-region-card__icon svg {
	width: 32px;
	height: 32px;
}

.vcfo-region-card__label {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: #0a2540;
	line-height: 1.4;
}

/* =====================================================
   SECTION 5 — ENGAGEMENT FLOW
   ===================================================== */

.vcfo-flow {
	background-color: #e8f4f8;
	padding: 80px 0;
}

.vcfo-flow__heading {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
	line-height: 1.2;
}

.vcfo-flow__subtext {
	font-family: var(--font-body);
	font-size: 16px;
	color: #364153;
	text-align: center;
	max-width: 657px;
	margin: 24px auto 0;
	line-height: 1.6;
}

.vcfo-flow-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 16px;
	margin-top: 48px;
	text-align: center;
}

.vcfo-flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.vcfo-flow-step__circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(43, 191, 206, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: #2bbfce;
	flex-shrink: 0;
}

.vcfo-flow-step__label {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	line-height: 18px;
	max-width: 110px;
}

/* =====================================================
   SECTION 6 — CTA
   ===================================================== */

.vcfo-cta {
	background: linear-gradient(173deg, #0a2540 7.5%, #1e5f8c 92.5%);
	padding: 64px 0;
	text-align: center;
}

.vcfo-cta__heading {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	display: block;
	text-align: center;
	line-height: 1.3;
}

.vcfo-cta__subtext {
	font-family: var(--font-body);
	font-size: 18px;
	color: #e8f4f8;
	margin: 24px 0 0 0;
	line-height: 1.6;
}

.vcfo-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.vcfo-cta__button {
	border: 1px solid #ffffff;
	border-radius: 100px;
	height: 56px;
	padding: 0 40px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	background-color: transparent;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.25s, color 0.25s;
	cursor: pointer;
}

.vcfo-cta__button:hover {
	background-color: #ffffff;
	color: #0a2540;
	border-color: #ffffff;
}

.vcfo-cta__button:focus-visible {
	outline: 2px solid #67E8F9;
	outline-offset: 2px;
}

/* =====================================================
   RESPONSIVE — TABLET (1024px and below)
   ===================================================== */

@media (max-width: 1024px) {
	.vcfo-container {
		padding: 0 40px;
	}

	.vcfo-plans-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	.vcfo-regions-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.vcfo-flow-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
}

/* =====================================================
   RESPONSIVE — MOBILE (768px and below)
   ===================================================== */

@media (max-width: 768px) {
	.vcfo-container {
		padding: 0 24px;
	}

	.vcfo-hero {
		padding: 48px 0 32px;
	}

	.vcfo-hero__title {
		font-size: 32px;
		margin-top: 32px;
	}

	.vcfo-hero__subtitle {
		font-size: 16px;
		margin-top: 16px;
	}

	.vcfo-plans {
		padding: 64px 0;
	}

	.vcfo-plans__heading {
		font-size: 32px;
	}

	.vcfo-plans-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		max-width: 100%;
	}

	.vcfo-plan-card {
		min-height: auto;
		padding: 24px;
	}

	.vcfo-plan-card__badge {
		top: -8px;
		padding: 6px 12px;
		font-size: 11px;
	}

	.vcfo-activities {
		padding: 64px 0;
	}

	.vcfo-activities__heading {
		font-size: 32px;
	}

	.vcfo-activities-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 48px;
	}

	.vcfo-activity-card {
		height: auto;
		padding: 24px;
	}

	.vcfo-regions {
		padding: 64px 0;
	}

	.vcfo-regions__heading {
		font-size: 32px;
	}

	.vcfo-regions-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-top: 48px;
	}

	.vcfo-flow {
		padding: 64px 0;
	}

	.vcfo-flow__heading {
		font-size: 32px;
	}

	.vcfo-flow__subtext {
		font-size: 14px;
		margin-top: 16px;
	}

	.vcfo-flow-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-top: 32px;
	}

	.vcfo-flow-step__circle {
		width: 48px;
		height: 48px;
		font-size: 12px;
	}

	.vcfo-flow-step__label {
		font-size: 11px;
		max-width: 100%;
	}

	.vcfo-cta {
		padding: 48px 0;
	}

	.vcfo-cta__heading {
		font-size: 24px;
	}

	.vcfo-cta__subtext {
		font-size: 16px;
		margin-top: 16px;
	}

	.vcfo-cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-top: 32px;
	}

	.vcfo-cta__button {
		width: 100%;
		height: 48px;
		font-size: 14px;
		padding: 0 24px;
	}
}
