:root {
	--text: #364151;
	--text-h: #0b1f3a;
	--bg: #ffffff;
	--border: #d1dae5;
	--cream: #f7f1e6;
	--accent: #ca7b08;
	--navy: #0b1f3a;
	--navy2: #13395e;
	--warm: #efe3ce;
	--shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px;

	/* Fonts */
	--sans: 'Roboto', sans-serif;
	--heading: 'Montserrat', sans-serif;
	--mono: ui-monospace, Consolas, monospace;

	font: 16px/1.7 var(--sans);
	font-synthesis: none;
	letter-spacing: 0.02em;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	color-scheme: light;
	color: var(--text);
	background: var(--cream);

	@media (max-width: 1024px) {
		font-size: 16px;
	}
}

@font-face {
	font-family: Cinzel;
	src: url(../assets/fonts/Cinzel-VariableFont_wght.ttf);
}

@font-face {
	font-family: Montserrat;
	src: url(/assets/Montserrat-VariableFont_wght.ttf);
}


@media (prefers-color-scheme: dark) {
	:root {
		--text: #9ca3af;
		--text-h: #f3f4f6;
		--bg: #16171d;
		--border: #2e303a;
		--code-bg: #1f2028;
		--accent: #c084fc;
		--accent-bg: rgba(192, 132, 252, 0.15);
		--accent-border: rgba(192, 132, 252, 0.5);
		--social-bg: rgba(47, 48, 58, 0.5);
		--shadow: rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
	}

	#social .button-icon {
		filter: invert(1) brightness(2);
	}
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--heading);
	background-color: var(--cream);
	overflow-x: hidden;
}

h1,
h2 {
	font-family: var(--heading);
	font-weight: 500;
	color: var(--text-h);
}

h1 {
	font-size: 56px;
	letter-spacing: -1.68px;
	margin: 32px 0;

	@media (max-width: 1024px) {
		font-size: 36px;
		margin: 20px 0;
	}
}

h2 {
	font-size: 24px;
	line-height: 118%;
	letter-spacing: -0.24px;
	margin: 0 0 8px;

	@media (max-width: 1024px) {
		font-size: 20px;
	}
}

p {
	margin: 0;
}

.hu_theme_navy {
	color: #0b1f3a !important;
}

.hu_theme_gold {
	color: #ca7b08 !important;
}

#app {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

#center {
	display: flex;
	flex-direction: column;
	gap: 25px;
	place-content: center;
	place-items: center;
	flex-grow: 1;
}
.carousel-container[data-v-66361394] {
	position: relative;
	width: 100%;
	margin: 2rem auto;
	padding: 1.5rem 0 3.5rem;
	overflow: hidden;
	outline: none;
}
.carousel-window[data-v-66361394] {
	width: 100%;
	overflow: visible;
	/* Allows adjacent slides to bleed over nicely if they are scaled/faded */
}
.carousel-track[data-v-66361394] {
	display: flex;
	align-items: center;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	width: 100%;
}
.carousel-slide[data-v-66361394] {
	flex: 0 0 50%;
	/* matches slideWidth responsive value */
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	opacity: 0.4;
	transform: scale(0.9);
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	user-select: none;
	background: #efe3ce;
	/* warm placeholder background */
}
.carousel-slide.active[data-v-66361394] {
	opacity: 1;
	transform: scale(1);
	cursor: default;
	box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
}
.carousel-image[data-v-66361394] {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	/* Prevents default image dragging behavior */
}

/* Arrows Navigation */
.arrow-btn[data-v-66361394] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(11, 31, 58, 0.1);
	color: var(--navy);
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(11, 31, 58, 0.15);
	transition: all 0.3s ease;
	z-index: 10;
}
.arrow-btn[data-v-66361394]:hover {
	background: var(--navy);
	color: white;
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 12px 28px rgba(11, 31, 58, 0.25);
}
.arrow-btn.prev[data-v-66361394] {
	left: 2rem;
}
.arrow-btn.next[data-v-66361394] {
	right: 2rem;
}
.arrow-icon[data-v-66361394] {
	width: 1.5rem;
	height: 1.5rem;
}

/* Dots Indicators */
.carousel-dots[data-v-66361394] {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
	z-index: 10;
}
.dot-btn[data-v-66361394] {
	background: rgba(11, 31, 58, 0.2);
	border: none;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
.dot-btn[data-v-66361394]:hover {
	background: rgba(11, 31, 58, 0.5);
}
.dot-btn.active[data-v-66361394] {
	background: var(--accent);
	width: 2rem;
	border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 768px) {
.carousel-slide[data-v-66361394] {
		flex: 0 0 85%;
		/* mobile slide width */
}
.arrow-btn[data-v-66361394] {
		width: 2.75rem;
		height: 2.75rem;
		background: rgba(255, 255, 255, 0.95);
}
.arrow-btn.prev[data-v-66361394] {
		left: 0.75rem;
}
.arrow-btn.next[data-v-66361394] {
		right: 0.75rem;
}
.arrow-icon[data-v-66361394] {
		width: 1.25rem;
		height: 1.25rem;
}
}

.about-container[data-v-84396a88] {
	display: flex;
	align-items: center;
	gap: 5rem;
}
.about-left[data-v-84396a88] {
	flex: 1.2;
	text-align: left;
	padding: 2rem;
}
.about-tag[data-v-84396a88] {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
	font-family: var(--heading);
	font-weight: 700;
}
.about-left p[data-v-84396a88] {
	font-size: 1.1rem;
	color: #364151;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}
.about-right[data-v-84396a88] {
	flex: 0.8;
	display: flex;
	justify-content: center;
}
.about-motto[data-v-84396a88] {
	display: flex;
	justify-content: center;
	margin: 1.5rem 0;
}
.about-motto p[data-v-84396a88] {
	margin-bottom: 0.25rem;
}
.about-motto-gap[data-v-84396a88] {
	font-size: 1.1rem;
	display: flex;
	gap: 0.35rem;
}
.flex-vertical[data-v-84396a88] {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.flex-horizontal[data-v-84396a88] {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}
.portrait-card[data-v-84396a88] {
	background: white;
	padding: 0.75rem;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 380px;
	transition: transform 0.3s ease;
}
.portrait-card[data-v-84396a88]:hover {
	transform: translateY(-5px);
}
.portrait-image[data-v-84396a88] {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
.carousel-slide[data-v-84396a88] {
	aspect-ratio: 1 !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.about-container[data-v-84396a88] {
		flex-direction: column;
		gap: 3rem;
}
}

.stats-section[data-v-768b62aa] {
	padding-top: 0;
	padding-bottom: 0;
}
.stats-grid[data-v-768b62aa] {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.stat-card[data-v-768b62aa] {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}
.stat-card[data-v-768b62aa]:hover {
	transform: translateY(-5px);
}
.stat-number[data-v-768b62aa] {
	font-size: 3rem;
	color: #ca7b08;
	font-family: var(--heading);
	font-weight: 700;
	margin-bottom: 1rem;
}
.stat-text[data-v-768b62aa] {
	color: #364151;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.stats-grid[data-v-768b62aa] {
		grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.stats-grid[data-v-768b62aa] {
		grid-template-columns: 1fr;
}
}

.ambassadors-section[data-v-19294993] {
	padding-top: 0;
	padding-bottom: 0;
}
.ambassadors-grid[data-v-19294993] {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.ambassadors-card[data-v-19294993] {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}
.ambassadors-card[data-v-19294993]:hover {
	transform: translateY(-5px);
}
.ambassadors-card-title[data-v-19294993] {
	font-size: 1.2rem;
	color: #ca7b08;
	font-family: var(--heading);
	font-weight: 700;
	margin-bottom: 1rem;
}
.ambassadors-card-desc[data-v-19294993] {
	color: #364151;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.ambassadors-grid[data-v-19294993] {
		grid-template-columns: repeat(1, 1fr);
}
}

.whatsapp-btn[data-v-74582cad] {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background-color: #25d366;
	color: white;
	text-decoration: none;
	padding: 0.6rem 1.2rem;
	border-radius: 0.5rem;
	font-size: 0.85rem;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.whatsapp-btn[data-v-74582cad]:hover {
	background-color: #20ba59;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}
.whatsapp-icon[data-v-74582cad] {
	width: 1.5em;
	height: 1.5em;
}
.btn-text[data-v-74582cad] {
	line-height: 1.2;
	text-align: left;
}

.service-card[data-v-80f4dc29] {
	--primary-color: var(--navy);
	--accent-color: #C59341;
}
.service-card[data-v-80f4dc29] {
	padding: 2.5rem 2rem;
	background-color: white;
	border: 1px solid #E2E2E2;
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	min-width: 0;
	word-break: break-word;
}
.service-card[data-v-80f4dc29]:hover {
	transform: translateY(-5px);
}
.highlight-card[data-v-80f4dc29] {
	grid-column: span 2;
	border-color: var(--accent-color);
	background-color: #FCF9F5;
	box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
}

/* Playbook Header (Image Style) */
.playbook-header[data-v-80f4dc29] {
	display: flex;
	align-items: center;
	gap: 2rem;
	border-bottom: 2px solid rgba(197, 147, 65, 0.2);
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}
.header-logo-section[data-v-80f4dc29] {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex-shrink: 0;
	width: 100px;
}
.playbook-logo[data-v-80f4dc29] {
	width: 100px;
	height: auto;
	margin-bottom: 0.5rem;
}
.playbook-logo-text[data-v-80f4dc29] {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.1em;
	line-height: 1.2;
}
.header-divider-vertical[data-v-80f4dc29] {
	width: 1px;
	height: 80px;
	background-color: rgba(197, 147, 65, 0.4);
	flex-shrink: 0;
}
.header-text-section[data-v-80f4dc29] {
	flex-grow: 1;
	text-align: left;
}
.playbook-brand-title[data-v-80f4dc29] {
	font-size: clamp(1.2rem, 4vw, 2rem);
	color: var(--navy);
	font-weight: 500;
	display: flex;
	gap: 0.5rem;
	margin: 0;
	letter-spacing: 0.1em;
	flex-wrap: wrap;
}
.playbook-subtitle[data-v-80f4dc29] {
	font-size: clamp(1rem, 3vw, 1.5rem);
	color: var(--navy);
	font-weight: 400;
	margin: 0.25rem 0;
	letter-spacing: 0.02em;
}
.header-separator-line[data-v-80f4dc29] {
	position: relative;
	height: 1px;
	background-color: rgba(197, 147, 65, 0.3);
	margin: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.diamond-dot[data-v-80f4dc29] {
	width: 6px;
	height: 6px;
	background-color: var(--accent-color);
	transform: rotate(45deg);
	position: absolute;
}
.playbook-tagline[data-v-80f4dc29] {
	font-size: 1rem;
	color: #364151;
	margin: 0;
	font-weight: 500;
}

/* Simple Header Styling */
.simple-header[data-v-80f4dc29] {
	text-align: left;
	margin-bottom: 1.5rem;
}
.card-header-flex[data-v-80f4dc29] {
	display: flex;
	font-size: 1.5rem;
	font-family: var(--heading);
	font-weight: 700;
	gap: 0.5rem;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}
.hu_theme_navy[data-v-80f4dc29] {
	color: var(--navy);
	font-weight: 500;
}
.hu_theme_gold[data-v-80f4dc29] {
	color: var(--accent-color);
}
.service-description[data-v-80f4dc29] {
	font-size: 1.05rem;
	line-height: 1.5;
	color: #364151;
}

/* Playbook Features grid (Desktop) */
.playbook-features[data-v-80f4dc29] {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 2.5rem;
	margin-bottom: 2.5rem;
	text-align: left;
	min-width: 0;
}
.feature-item[data-v-80f4dc29] {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(197, 147, 65, 0.15);
	min-width: 0;
}
.feature-left-block[data-v-80f4dc29] {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}
.feature-number[data-v-80f4dc29] {
	font-size: 1.4rem;
	font-family: var(--heading);
	font-weight: 700;
	color: var(--accent-color);
	min-width: 25px;
}
.feature-icon-wrapper[data-v-80f4dc29] {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	box-shadow: 0 2px 8px rgba(197, 147, 65, 0.08);
}
.feature-icon[data-v-80f4dc29] {
	width: 1.5rem;
	height: 1.5rem;
}
.feature-right-block[data-v-80f4dc29] {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.feature-title[data-v-80f4dc29] {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0;
	letter-spacing: 0.02em;
	line-height: 1.3;
}
.feature-desc[data-v-80f4dc29] {
	font-size: 0.85rem;
	line-height: 1.4;
	color: #4b5563;
	margin: 0;
}

/* Simple Features list */
.features-list[data-v-80f4dc29] {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	text-align: left;
}
.features-list li[data-v-80f4dc29] {
	font-size: 0.95rem;
	color: #364151;
	margin-bottom: 0.75rem;
	position: relative;
	padding-left: 1.5rem;
}
.features-list li[data-v-80f4dc29]::before {
	content: "✓";
	color: var(--accent-color);
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* Explore / Action Button */
.btn-block[data-v-80f4dc29] {
	text-align: center;
}
.explore-btn[data-v-80f4dc29] {
	margin-top: 2rem;
	padding: 0.75rem;
	border-radius: 30px;
	border: 1px solid var(--accent-color);
	background: transparent;
	color: var(--accent-color);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
}
.text-center-btn[data-v-80f4dc29] {
	display: flex;
	align-items: center;
	justify-content: center;
}
.explore-btn[data-v-80f4dc29]:hover {
	background-color: var(--accent-color);
	color: white;
}

/* Programs Section (Expanded Option) */
.programs-section-wrapper[data-v-80f4dc29] {
	margin-top: 1rem;
	margin-bottom: 2.5rem;
	border: 1px solid var(--accent-color);
	border-radius: 1rem;
	padding: 5rem 1.5rem 2.5rem;
	position: relative;
	background-color: #FCF9F5;
	box-sizing: border-box;
	overflow: hidden;
}
.programs-section-title-container[data-v-80f4dc29] {
	padding: 0.25rem 0;
	width: 100%;
	white-space: nowrap;
	text-align: center;
	background-color: var(--accent-color);
	color: white;
	position: absolute;
	top: 0;
	left: 0;
}
.programs-section-title[data-v-80f4dc29] {
	font-size: 1.15rem;
	font-family: var(--heading);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0;
}
.programs-grid[data-v-80f4dc29] {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	position: relative;
}

/* Vertical divider between the two columns */
.programs-grid[data-v-80f4dc29]::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-color: rgba(197, 147, 65, 0.3);
	transform: translateX(-50%);
}
.program-card[data-v-80f4dc29] {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.program-badge[data-v-80f4dc29] {
	background-color: var(--accent-color);
	color: white;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
	margin-bottom: 1.25rem;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}
.program-title[data-v-80f4dc29] {
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.program-duration-block[data-v-80f4dc29] {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.25rem;
}
.duration-number[data-v-80f4dc29] {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	font-family: var(--heading);
}
.duration-unit[data-v-80f4dc29] {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--accent-color);
	letter-spacing: 0.05em;
}
.program-frequency[data-v-80f4dc29] {
	font-size: 0.9rem;
	color: var(--navy);
	font-weight: 600;
	margin: 0.5rem 0 1.25rem;
}
.program-divider[data-v-80f4dc29] {
	width: 60%;
	height: 1px;
	background-color: rgba(197, 147, 65, 0.2);
	margin-bottom: 1.25rem;
}
.program-features-list[data-v-80f4dc29] {
	list-style: none;
	padding: 0;
	margin: 0 0 2em;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	text-align: left;
	width: 100%;
	max-width: 250px;
}
.program-features-list li[data-v-80f4dc29] {
	font-size: 0.85rem;
	color: #364151;
	font-weight: 500;
	display: flex;
	gap: 0.4rem;
	align-items: flex-start;
	line-height: 1.3;
}
.program-features-list .checkmark[data-v-80f4dc29] {
	color: var(--accent-color);
	font-weight: 700;
}

/* Expansion transition */
.expand-enter-active[data-v-80f4dc29],
.expand-leave-active[data-v-80f4dc29] {
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	max-height: 1200px;
	overflow: hidden;
}
.expand-enter-from[data-v-80f4dc29],
.expand-leave-to[data-v-80f4dc29] {
	opacity: 0;
	max-height: 0;
	transform: translateY(-10px);
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	border-width: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
.playbook-features[data-v-80f4dc29] {
		grid-template-columns: 1fr;
		gap: 1.25rem;
}
.highlight-card[data-v-80f4dc29] {
		grid-column: span 1;
}
}
@media (max-width: 768px) {
.programs-grid[data-v-80f4dc29] {
		grid-template-columns: 1fr;
		gap: 6rem;
}
.programs-grid[data-v-80f4dc29]::after {
		left: 0;
		top: 50%;
		transform: translateY(50%);
		width: 100%;
		height: 1px;
}
.program-divider[data-v-80f4dc29] {
		width: 75%;
}
}
@media (max-width: 640px) {
.playbook-header[data-v-80f4dc29] {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
}
.playbook-brand-title[data-v-80f4dc29] {
		justify-content: center;
}
.header-divider-vertical[data-v-80f4dc29] {
		width: 60px;
		height: 1px;
}
.header-text-section[data-v-80f4dc29] {
		text-align: center;
}
.playbook-features[data-v-80f4dc29] {
		grid-template-columns: 1fr;
		gap: 1rem;
}
.programs-section-title[data-v-80f4dc29] {
		font-size: 1rem;
}
.service-card[data-v-80f4dc29] {
		padding: 1.5rem 1rem;
}
}
@media (max-width: 480px) {
.programs-grid[data-v-80f4dc29] {
		grid-template-columns: 1fr;
		gap: 4rem;
}
.programs-grid[data-v-80f4dc29]::after {
		left: 0;
		top: 50%;
		transform: translateY(50%);
		width: 100%;
		height: 1px;
}
}

/* Social Section */
.social-section[data-v-d8fda205] {
	margin-bottom: 0;
	background: linear-gradient(180deg, #ffffff00 50%, #efe3ce 100%);
	border-top: 1px solid rgba(11, 31, 58, 0.05);
}
.social-title[data-v-d8fda205] {
	font-size: 2.2rem;
	text-align: center;
	color: #0b1f3a;
	font-family: var(--heading);
	margin-bottom: 2.5rem;
	font-weight: 600;
}
.social-links-grid[data-v-d8fda205] {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.social-icon-btn[data-v-d8fda205] {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: white;
	color: #0b1f3a;
	padding: 0.3rem 1rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}
.social-icon-btn svg[data-v-d8fda205] {
	width: 22px;
	height: 22px;
}
.social-icon-btn[data-v-d8fda205]:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(11, 31, 58, 0.1);
	color: white;
}
.social-icon-btn.linkedin[data-v-d8fda205]:hover {
	background-color: #0077b5;
}
.social-icon-btn.instagram[data-v-d8fda205]:hover {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-icon-btn.facebook[data-v-d8fda205]:hover {
	background-color: #1877f2;
}
.social-icon-btn.youtube[data-v-d8fda205]:hover {
	background-color: #ff0000;
}
.social-icon-btn.tiktok[data-v-d8fda205]:hover {
	background-color: #000000;
}

.dark-section[data-v-783ae31e] {
	color: white;
	background-color: var(--navy);
}
.content[data-v-783ae31e] {
	padding: 3rem;
}
.divider-banner[data-v-783ae31e] {
	height: 2rem;
	background: linear-gradient(135deg, var(--cream) 65%, transparent 65%);
}
.divider-banner-reversed[data-v-783ae31e] {
	height: 2rem;
	background: linear-gradient(135deg, transparent 35%, var(--cream) 35%);
}

.footer-container[data-v-0db4c4a7] {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-col[data-v-0db4c4a7] {
	flex: 1;
}
.footer-links[data-v-0db4c4a7] {
	display: flex;
	gap: 1.5rem;
	justify-content: flex-start;
}
.footer-links a[data-v-0db4c4a7] {
	color: #0b1f3a;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}
.footer-links a[data-v-0db4c4a7]:hover {
	color: #ca7b08;
}
.footer-logo-col[data-v-0db4c4a7] {
	display: flex;
	justify-content: center;
}
.footer-logo[data-v-0db4c4a7] {
	height: 70px;
	width: auto;
}
.footer-copy[data-v-0db4c4a7] {
	display: flex;
	justify-content: flex-end;
}
.footer-copy p[data-v-0db4c4a7] {
	color: #364151;
	font-size: 0.95rem;
	margin: 0;
	font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.footer-container[data-v-0db4c4a7] {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
}
.footer-links[data-v-0db4c4a7] {
		justify-content: center;
		flex-wrap: wrap;
}
.footer-copy[data-v-0db4c4a7] {
		justify-content: center;
}
}

.container[data-v-4458f876] {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
	box-sizing: border-box;
}

/* Prevent any child from causing horizontal scroll */
[data-v-4458f876] #app,
div[data-v-4458f876]:first-child {
	overflow-x: clip;
}
.main-section[data-v-4458f876] {
	margin: 2rem 0;
	padding: 2rem 0;
}
.text-center[data-v-4458f876] {
	text-align: center;
}
.text-white[data-v-4458f876] {
	color: white !important;
}

/* Hero Section */
.hero-section[data-v-4458f876] {
	margin-top: 0;
}
.hero-container[data-v-4458f876] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4rem;
}
.hero-left[data-v-4458f876] {
	flex: 1.1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.brand-badge[data-v-4458f876] {
	width: 140px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}
.brand-logo[data-v-4458f876] {
	width: 140px;
	height: auto;
}
.brand-title[data-v-4458f876] {
	font-size: 3.5rem;
	font-family: Montserrat;
	margin: 0;
	letter-spacing: 0.15em;
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}
.title-human[data-v-4458f876] {
	color: var(--navy);
	font-weight: 500;
}
.title-unlock[data-v-4458f876] {
	color: var(--accent);
}
.brand-subtitle[data-v-4458f876] {
	font-size: 1.7rem;
	color: var(--navy);
	margin: 0 0 1.5rem;
	font-weight: 300;
	letter-spacing: 0.05em;
}
.header-separator-line[data-v-4458f876] {
	width: 75%;
	position: relative;
	height: 1px;
	background-color: rgba(197, 147, 65, 0.3);
	margin: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.diamond-dot[data-v-4458f876] {
	width: 0.5rem;
	height: 0.5rem;
	background-color: var(--accent);
	transform: rotate(45deg);
	position: absolute;
	color: var(--accent);
}
.brand-description[data-v-4458f876] {
	font-size: 1.25rem;
	color: #0b1f3a;
	line-height: 1.6;
	max-width: 480px;
	font-weight: 400;
}
.hero-right[data-v-4458f876] {
	flex: 0.9;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.portrait-card[data-v-4458f876] {
	background: white;
	padding: 0.75rem;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 380px;
	transition: transform 0.3s ease;
}
.portrait-card[data-v-4458f876]:hover {
	transform: translateY(-5px);
}
.portrait-image[data-v-4458f876] {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
.profile-info-row[data-v-4458f876] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 380px;
	margin-top: 1.5rem;
	padding: 0 0.5rem;
}
.profile-meta[data-v-4458f876] {
	text-align: left;
}
.profile-name[data-v-4458f876] {
	font-size: 1.3rem;
	color: #0b1f3a;
	margin: 0;
	font-weight: 700;
}
.profile-title[data-v-4458f876] {
	font-size: 1.1rem;
	color: #13395e;
	margin: 0.25rem 0 0;
	font-weight: 500;
}

/* Stats Section */
.stats-section[data-v-4458f876] {
	padding-top: 0;
	padding-bottom: 0;
}
.section-title[data-v-4458f876] {
	font-size: clamp(1.8rem, 4vw, 2.2rem);
	padding: 0 1rem;
	color: #0b1f3a;
	text-align: center;
	margin-bottom: 3rem;
	font-family: var(--heading);
	font-weight: 600;
	letter-spacing: 0.02em;
}
.section-sub[data-v-4458f876] {
	font-size: 1.3rem;
	line-height: 1.6;
	color: #0b1f3a;
	text-align: center;
	margin-bottom: 2rem;
	font-family: var(--heading);
	font-weight: 400;
	letter-spacing: 0.02em;
}
.stats-grid[data-v-4458f876] {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.stat-card[data-v-4458f876] {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}
.stat-card[data-v-4458f876]:hover {
	transform: translateY(-5px);
}
.stat-number[data-v-4458f876] {
	font-size: 3rem;
	color: #ca7b08;
	font-family: var(--heading);
	font-weight: 700;
	margin-bottom: 1rem;
}
.stat-text[data-v-4458f876] {
	color: #364151;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
}

/* Services Section */
.services-grid[data-v-4458f876] {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	align-items: start;
	min-width: 0;
}
.service-subtitle[data-v-4458f876] {
	font-size: 1.15rem;
	color: #0b1f3a;
	margin: 0.5rem 0 1rem;
	font-weight: 600;
}
.service-description[data-v-4458f876] {
	font-size: 1rem;
	color: #364151;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.features-list[data-v-4458f876] {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: left;
}
.features-list li[data-v-4458f876] {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.95rem;
	color: #364151;
	font-weight: 500;
}
.features-list li[data-v-4458f876]::before {
	content: "•";
	color: #ca7b08;
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	top: -4px;
}

/* Methodology Section */
.methodology-section[data-v-4458f876] {
	position: relative;
}
.methodology-header[data-v-4458f876] {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}
.methodology-sub[data-v-4458f876] {
	color: #e5e4e7;
}
.methodology-grid[data-v-4458f876] {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}
.methodology-card[data-v-4458f876] {
	background: white;
	border-radius: 12px;
	padding: 2rem 1rem;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}
.methodology-card[data-v-4458f876]:hover {
	transform: translateY(-5px);
}
.methodology-num[data-v-4458f876] {
	font-size: 2.5rem;
	color: #ca7b08;
	font-family: var(--heading);
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.methodology-card h4[data-v-4458f876] {
	font-size: 1.1rem;
	color: #0b1f3a;
	margin: 0;
	font-weight: 600;
	line-height: 1.3;
}

/* Social Section */
.social-section[data-v-4458f876] {
	margin-bottom: 0;
	background: linear-gradient(180deg, #ffffff00 50%, #efe3ce 100%);
	border-top: 1px solid rgba(11, 31, 58, 0.05);
}
.social-title[data-v-4458f876] {
	font-size: 2.2rem;
	text-align: center;
	color: #0b1f3a;
	font-family: var(--heading);
	margin-bottom: 2.5rem;
	font-weight: 600;
}
.social-links-grid[data-v-4458f876] {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.social-icon-btn[data-v-4458f876] {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: white;
	color: #0b1f3a;
	padding: 0.3rem 1rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}
.social-icon-btn svg[data-v-4458f876] {
	width: 22px;
	height: 22px;
}
.social-icon-btn[data-v-4458f876]:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(11, 31, 58, 0.1);
	color: white;
}
.social-icon-btn.linkedin[data-v-4458f876]:hover {
	background-color: #0077b5;
}
.social-icon-btn.instagram[data-v-4458f876]:hover {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-icon-btn.facebook[data-v-4458f876]:hover {
	background-color: #1877f2;
}
.social-icon-btn.youtube[data-v-4458f876]:hover {
	background-color: #ff0000;
}
.social-icon-btn.tiktok[data-v-4458f876]:hover {
	background-color: #000000;
}

/* Get In Touch Section */
.get-in-touch-section[data-v-4458f876] {
	background-color: #efe3ce;
	margin: 0;
}
.cta-title[data-v-4458f876] {
	font-size: 2.5rem;
	color: #0b1f3a;
	font-family: var(--heading);
	font-weight: 700;
	margin-bottom: 1rem;
}
.cta-desc[data-v-4458f876] {
	font-size: 1.25rem;
	color: #364151;
	max-width: 600px;
	margin: 0 auto 2.5rem;
	line-height: 1.6;
}
.whatsapp-cta-btn[data-v-4458f876] {
	gap: 0.85rem;
	padding: 1.1rem 2.2rem;
	border-radius: 50px;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
	transition: all 0.3s ease;
}

/* Footer styling */
.main-footer[data-v-4458f876] {
	background-color: #f7f1e6;
	border-top: 1px solid rgba(11, 31, 58, 0.08);
	padding: 4rem 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.hero-container[data-v-4458f876] {
		flex-direction: column;
		gap: 3rem;
}
.services-grid[data-v-4458f876] {
		grid-template-columns: 1fr;
		gap: 2rem;
}
.stats-grid[data-v-4458f876] {
		grid-template-columns: repeat(2, 1fr);
}
.methodology-grid[data-v-4458f876] {
		grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 640px) {
.container[data-v-4458f876] {
		padding: 0 1rem;
}
.main-section[data-v-4458f876] {
		margin: 1rem 0;
		padding: 1.5rem 0;
}
.section-title[data-v-4458f876] {
		margin-bottom: 2rem;
}
.methodology-grid[data-v-4458f876] {
		grid-template-columns: 1fr 1fr;
}
.stats-grid[data-v-4458f876] {
		grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 480px) {
.methodology-grid[data-v-4458f876] {
		grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.brand-title[data-v-4458f876] {
		font-size: 2.6rem;
}
.brand-subtitle[data-v-4458f876] {
		font-size: 1.6rem;
}
.stats-grid[data-v-4458f876] {
		grid-template-columns: 1fr;
}
.methodology-grid[data-v-4458f876] {
		grid-template-columns: 1fr;
}
}

.header[data-v-73cade33] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 3rem;
	background: transparent;
	width: 100%;
	box-sizing: border-box;
}
.logo-container[data-v-73cade33] {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.header-logo[data-v-73cade33] {
	height: 45px;
	width: auto;
}
.logo-text[data-v-73cade33] {
	font-family: var(--sans);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	display: flex;
	gap: 0.35rem;
}
.text-human[data-v-73cade33] {
	color: #0b1f3a;
}
.text-unlock[data-v-73cade33] {
	color: #c59341;
}
.menu[data-v-73cade33] {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.menu a[data-v-73cade33] {
	color: #0b1f3a;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}
.menu a.active[data-v-73cade33] {
	color: #6e8e62;
}
.menu a[data-v-73cade33]:hover {
	color: #c59341;
}
@media (max-width: 1024px) {
.header[data-v-73cade33] {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
}
.menu[data-v-73cade33] {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
}
}
