@charset "utf-8";
/* CSS Document 

TemplateMo 603 Nexaverse

https://templatemo.com/tm-603-nexaverse

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00f0ff;
	--secondary: #123456;
	--accent: #b16b2d;
	--dark-1: #0a0a12;
	--dark-2: #12121f;
	--dark-3: #1a1a2e;
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glow-cyan: rgba(0, 240, 255, 0.4);
	--glow-magenta: rgba(255, 0, 212, 0.4);
	--glow-blue: rgba(18, 52, 86, 1)
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--dark-1);
	color: #ffffff;
	overflow-x: hidden !important;
	width: 100%;
	position: relative;
	height: 100%;
}

html {
	overflow-x: hidden !important;
	width: 100%;
}

/* Ambient Background */
.ambient-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float 20s ease-in-out infinite;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
	bottom: -150px;
	right: -150px;
	animation-delay: -7s;
}

.orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -14s;
}

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	25% {
		transform: translate(50px, -30px) scale(1.05);
	}

	50% {
		transform: translate(-30px, 50px) scale(0.95);
	}

	75% {
		transform: translate(-50px, -20px) scale(1.02);
	}
}

/* The Background Grid Pattern Overlay */
.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
	z-index: 1;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-1);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-ring {
	width: 80px;
	height: 80px;
	position: relative;
}

.loader-ring::before,
.loader-ring::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 2px solid transparent;
}

.loader-ring::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top-color: var(--primary);
	border-right-color: var(--primary);
	animation: spin 1.2s linear infinite;
}

.loader-ring::after {
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-bottom-color: var(--secondary);
	border-left-color: var(--secondary);
	animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	margin-top: 30px;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	color: white;
	text-transform: uppercase;
}

/* Main Container */
.container {
	position: relative;
	z-index: 10;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

/* Header */
.header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	animation: fadeUp 0.8s ease-out 1s forwards;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}

	from {
		transform: translateY(30px);
	}
}

.logo {
	width: 90px;
	height: 90px;
	margin: 0 auto 25px;
	position: relative;
}

.logo img {
	width: 90px;
	height: 90px;
	filter: drop-shadow(0 0 20px var(--glow-cyan));
}

.brand-name {
	font-family: 'Syne', sans-serif;
	font-size: 52px;
	font-weight: 600;
	letter-spacing: 6px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
}

.tagline {
	font-size: 13px;
	letter-spacing: 5px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	font-weight: 300;
}

/* Menu Grid */
.menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 204px);
	gap: 25px;
	margin: 0 auto 40px;
	justify-content: center;
}

.menu-item {
	height: 170px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glossy effect overlay */
.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.12) 0%,
			rgba(255, 255, 255, 0.05) 40%,
			transparent 100%);
	border-radius: 24px 24px 0 0;
	pointer-events: none;
}

/* Glow ring on hover - removed, using cleaner border style */
.menu-item::after {
	display: none;
}

.menu-item:hover {
	transform: translateY(-10px) scale(1.02);
	background: rgba(0, 240, 255, 0.08);
	border-color: var(--primary);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(0, 200, 220, 0.2);
}

.menu-item.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.menu-item.initial-load {
	animation: menuAppear 0.5s ease-out forwards;
}

.menu-item.initial-load:nth-child(1) {
	animation-delay: 1.1s;
}

.menu-item.initial-load:nth-child(2) {
	animation-delay: 1.2s;
}

.menu-item.initial-load:nth-child(3) {
	animation-delay: 1.3s;
}

.menu-item.initial-load:nth-child(4) {
	animation-delay: 1.4s;
}

.menu-item.initial-load:nth-child(5) {
	animation-delay: 1.5s;
}

.menu-item.initial-load:nth-child(6) {
	animation-delay: 1.6s;
}

@keyframes menuAppear {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Menu Badge - Replaces Icons */
.menu-badge {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	background: linear-gradient(135deg,
			var(--glow-cyan) 0%,
			var(--glow-blue) 25%,
			var(--glow-blue) 75%,
			var(--glow-cyan) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-shadow: 0 0 20px var(--glow-cyan);
	transition: all 0.4s ease;
	overflow: hidden;
}

/* Inner glossy shine */
.menu-badge::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 45%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.3) 0%,
			transparent 100%);
	border-radius: 50%;
	pointer-events: none;
}

/* Animated ring */
.menu-badge::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: var(--primary);
	border-right-color: rgba(0, 200, 220, 0.5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.menu-item:hover .menu-badge {
	background: linear-gradient(135deg,
			rgba(0, 240, 255, 0.2) 0%,
			rgba(0, 200, 220, 0.15) 100%);
	transform: scale(1.1);
	box-shadow: 0 0 25px rgba(0, 200, 220, 0.25);
}

.menu-item:hover .menu-badge::after {
	opacity: 1;
	animation: badgeSpin 2s linear infinite;
}

@keyframes badgeSpin {
	to {
		transform: rotate(360deg);
	}
}

.menu-title {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.menu-item:hover .menu-title {
	color: #ffffff;
	letter-spacing: 4px;
}

/* Content Sections */
.content-section {
	display: none;
	opacity: 0;
	padding: 120px 20px 0;
	position: relative;
}

.content-section.active {
	display: block;
	animation: sectionIn 0.6s ease-out forwards;
}

@keyframes sectionIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Section Header Small */
.section-header-small {
	position: fixed;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 100;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 12px 20px;
	border-radius: 50px;
	border: 1px solid var(--glass-border);
}

.small-logo {
	width: 32px;
	height: 32px;
}

.small-logo img {
	width: 32px;
	height: 32px;
	filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.small-brand h3 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #ffffff;
}

.small-brand p {
	font-size: 9px;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 2px;
}

/* Back Button */
.back-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 12px 24px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100;
}

.back-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

/* Section Content */
.section-header {
	text-align: center;
	margin-bottom: 100px;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #ffffff;
}

.tab-hero .section-title {
	background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 2px;
}

/* Glass Cards */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.glass-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== NEW INTRODUCTION SECTION STYLES ===== */

/* Hero Banner */
.intro-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 150px;
	padding: 40px 0;
	min-height: calc(100vh - 160px);
}

.intro-hero-content {
	max-width: 550px;
}

.intro-badge {
	display: inline-block;
	padding: 3px 12px;
	background: rgba(0, 240, 255, 0.1);
	border: 1px solid rgba(0, 240, 255, 0.3);
	border-radius: 50px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 25px;
}

.intro-headline {
	font-family: 'Syne', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 25px;
	color: #ffffff;
}

.intro-headline span {
	background: var(--accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.intro-subtext {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 35px;
}

.intro-cta-group {
	display: flex;
	gap: 15px;
}

.intro-cta-primary {
	padding: 14px 32px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--primary);
	border-radius: 50px;
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.intro-cta-primary:hover {
	background: rgba(0, 240, 255, 0.15);
	box-shadow: 0 0 25px rgba(0, 200, 220, 0.3);
	transform: translateY(-2px);
}

.intro-cta-secondary {
	padding: 14px 32px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.intro-cta-secondary:hover {
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

/* Hero Visual */
.intro-hero-visual {
	position: relative;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro-orb {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.3), rgba(157, 78, 221, 0.2) 50%, transparent 70%);
	filter: blur(40px);
	animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

.intro-floating-card {
	position: absolute;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 14px;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	animation: floatCard 6s ease-in-out infinite;
}

.intro-floating-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 14px 14px 0 0;
	pointer-events: none;
}

.card-icon {
	font-size: 20px;
	filter: grayscale(100%);
}

.card-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.5px;
}

.card-1 {
	top: 30px;
	left: 10%;
	animation-delay: 0s;
}

.card-2 {
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	animation-delay: -2s;
}

.card-3 {
	bottom: 30px;
	left: 20%;
	animation-delay: -4s;
}

@keyframes floatCard {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.card-2 {
	animation-name: floatCardAlt;
}

@keyframes floatCardAlt {

	0%,
	100% {
		transform: translateY(-50%);
	}

	50% {
		transform: translateY(calc(-50% - 15px));
	}
}

/* Metrics Strip */
.intro-metrics {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 40px 50px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	margin-bottom: 120px;
	position: relative;
	overflow: hidden;
}

.intro-metrics::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.metric-item {
	text-align: center;
}

.metric-value {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 700;
	background: var(--accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
}

.metric-suffix {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: var(--accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.metric-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 8px;
	letter-spacing: 1px;
}

.metric-divider {
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Core Values */
.intro-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 120px;
}

.value-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 35px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.value-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.value-number {
	font-family: 'Syne', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: rgba(0, 240, 255, 0.15);
	margin-bottom: 15px;
	line-height: 1;
}

.value-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: white;
	margin-bottom: 12px;
}

.value-card p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

/* Section Titles */
.intro-section-title {
	text-align: center;
	margin-bottom: 80px;
	margin-top: 180px;
}

.intro-section-title h2 {
	font-family: 'Syne', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
}

.intro-section-title p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	max-width: 700px;
	margin: 0 auto;
}

/* Practice Grid */
.intro-practice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 80px;
}

.practice-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.practice-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.practice-icon {
	font-size: 32px;
	margin-bottom: 15px;
	filter: grayscale(100%);
}

.practice-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
}

.practice-conclusion {
	text-align: center;
	font-style: italic;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 180px;
}

/* Scope Grid */
.intro-scope-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 180px;
}

.scope-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 40px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.scope-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary);
	background: rgba(0, 240, 255, 0.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.scope-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
}

.scope-content p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 25px;
}

.scope-link {
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 14px;
}

/* Process Flow */
.intro-process-flow {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 120px;
}

.process-step {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 30px 20px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
}

.step-number {
	font-family: 'Syne', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	opacity: 0.8;
}

.step-content h4 {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 12px;
}

.step-content p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

.process-connector {
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), transparent);
	margin-top: 60px;
	opacity: 0.3;
}

.process-guarantee {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 180px;
	padding: 25px;
	background: rgba(0, 240, 255, 0.03);
	border-radius: 12px;
	border: 1px dashed rgba(0, 240, 255, 0.2);
}

.process-guarantee p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.process-guarantee strong {
	color: var(--primary);
}

/* Outcomes Section */
.intro-outcomes-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 180px;
}

.outcomes-list {
	list-style: none;
	padding: 0;
}

.outcomes-list li {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.outcomes-list li:last-child {
	border-bottom: none;
}

.outcome-icon {
	font-size: 24px;
	margin-top: -2px;
	filter: grayscale(100%);
}

.outcome-text {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.outcome-text strong {
	display: block;
	color: #ffffff;
	margin-bottom: 4px;
	font-size: 16px;
}

.outcome-quote-block {
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
	border: 1px solid var(--primary);
	border-radius: 30px;
	padding: 60px 40px;
	position: relative;
	text-align: center;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.quote-icon {
	font-family: 'Syne', sans-serif;
	font-size: 80px;
	color: var(--primary);
	line-height: 1;
	position: absolute;
	top: 20px;
	left: 30px;
	opacity: 0.2;
}

.outcome-quote-block blockquote {
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.5;
	color: #ffffff;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.outcome-quote-block blockquote strong {
	color: var(--primary);
}

.quote-author {
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

/* Final CTA Section */
.intro-final-cta {
	text-align: center;
	padding: 100px 50px;
	background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08), transparent 70%);
	border-radius: 40px;
	margin-top: 50px;
	border: 1px solid rgba(0, 240, 255, 0.1);
}

.intro-final-cta h2 {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 25px;
}

.intro-final-cta p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Tech Stack */
.intro-tech {
	text-align: center;
	padding-bottom: 250px;
}

.tech-label {
	font-size: 12px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.tech-marquee {
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}

.tech-marquee::before,
.tech-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.tech-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--dark-1), transparent);
}

.tech-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--glow-cyan), transparent);
}

.tech-track {
	display: flex;
	gap: 40px;
	animation: marquee 20s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.tech-item {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	white-space: nowrap;
	transition: color 0.3s ease;
}

.tech-item:hover {
	color: var(--primary);
}

/* Services Row Layout */
.services-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

/* Center odd-numbered last child in C&P and Solutions section for desktop */
@media (min-width: 993px) {

	#cnp .services-list .service-row:last-child:nth-child(odd),
	#solutions .services-list .service-row:last-child:nth-child(odd) {
		grid-column: 1 / span 2;
		justify-self: center;
		max-width: calc(50% - 10px);
		/* Matches the width of its siblings */
		width: 100%;
	}
}

/* Responsive services-list */
@media (max-width: 992px) {
	.services-list {
		grid-template-columns: 1fr !important;
	}

	#cnp .services-list .service-row:last-child:nth-child(odd) {
		max-width: 100% !important;
	}
}

.service-row {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.service-row::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.service-row::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary), var(--accent));
	border-radius: 20px 0 0 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-row:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-row:hover::after {
	opacity: 1;
}

.service-row-icon {
	width: 240px;
	height: 180px;
	min-width: 140px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.service-row-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	border-radius: 12px 12px 50% 50%;
}

.service-row-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.service-row-content {
	flex: 1;
}

.service-row-content h4 {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	color: #ffffff;
}

.service-row-content p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.service-row-arrow {
	display: none;
}

/* Tabs */
.tabs-container {
	margin-bottom: 60px;
}

.tab-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.tab-btn {
	padding: 12px 28px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.tab-btn:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.tab-btn.active {
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 212, 0.2));
	border-color: var(--primary);
	color: #ffffff;
	box-shadow: 0 0 20px var(--glow-cyan);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: tabFade 0.4s ease-out;
}

@keyframes tabFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* products */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.products-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	cursor: pointer;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.4s ease;
}

.products-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.products-item:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border-color: var(--primary);
}

.products-item:hover img {
	transform: scale(1.1);
}

.products-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(10, 10, 18, 0.9) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.products-item:hover .products-overlay {
	opacity: 1;
}

.products-overlay h4 {
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 5px;
}

.products-overlay p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* Filter Buttons */
.filter-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
}

/* Legal Document Styles */
.legal-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.legal-document {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 60px;
	margin-bottom: 80px;
}

.legal-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--glass-border);
}

.legal-header h2 {
	font-family: 'Syne', sans-serif;
	font-size: 32px;
	color: #ffffff;
	margin-bottom: 10px;
}

.legal-effective-date {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	font-style: italic;
}

.legal-section {
	margin-bottom: 60px;
}

.legal-section:last-child {
	margin-bottom: 0;
}

.legal-section h3 {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.legal-section h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	margin: 20px 0 10px 0;
}

.legal-section p {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 15px;
}

.legal-section ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.legal-section ul li {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	padding-left: 25px;
	margin-bottom: 10px;
	position: relative;
}

.legal-section ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-size: 16px;
}

.legal-section ul li strong {
	color: #ffffff;
}

.legal-section a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.legal-section a:hover {
	color: var(--secondary);
	text-decoration: underline;
}

.legal-contact-block {
	background: rgba(0, 240, 255, 0.05);
	border: 1px solid rgba(0, 240, 255, 0.2);
	border-radius: 12px;
	padding: 20px 25px;
	margin: 15px 0;
}

.legal-contact-block p {
	font-size: 14px;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.9);
}

.legal-contact-block p:last-child {
	margin-bottom: 0;
}

/* Legal page responsive */
@media (max-width: 768px) {
	.legal-document {
		padding: 25px;
	}

	.legal-header h2 {
		font-size: 24px;
	}

	.legal-section h3 {
		font-size: 18px;
	}

	.legal-section p,
	.legal-section ul li {
		font-size: 14px;
	}
}

/* Section Footer Navigation */
.section-footer {
	padding: 80px 20px 40px;
	border-top: 1px solid var(--glass-border);
	width: 100%;
	background: linear-gradient(to top, #123456, transparent);
	position: relative;
	z-index: 100;
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.footer-nav-item {
	position: relative;
	padding: 10px 0;
}

.footer-nav-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
}

.footer-nav-link:hover {
	color: var(--primary);
}

.footer-nav-link .dropdown-arrow {
	font-size: 10px;
	transition: transform 0.3s ease;
}

.footer-nav-item:hover .dropdown-arrow,
.footer-nav-item.active .dropdown-arrow {
	transform: rotate(180deg);
}

/* Dropdown Menu */
.footer-dropdown {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: rgba(10, 15, 30, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 15px 0;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 100;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-nav-item:hover .footer-dropdown,
.footer-nav-item.active .footer-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-20px);
}

.dropdown-link {
	display: block;
	padding: 10px 25px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.dropdown-link:hover {
	background: rgba(0, 240, 255, 0.1);
	color: var(--primary);
	padding-left: 30px;
}

.section-copyright {
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	letter-spacing: 1px;
}

/* Footer Responsive */
@media (max-width: 768px) {
	.footer-nav {
		gap: 15px 25px;
	}

	.footer-dropdown {
		left: 0;
		transform: translateY(-10px);
		bottom: 110%;
	}

	.footer-nav-item:hover .footer-dropdown {
		transform: translateY(-20px);
	}
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.about-text h3 {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #ffffff;
}

.about-text p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 15px;
}

.about-text a {
	color: var(--primary);
	text-decoration: none;
	position: relative;
	padding-bottom: 2px;
	transition: all 0.3s ease;
}

.about-text a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transition: width 0.3s ease;
}

.about-text a:hover {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.about-text a:hover::after {
	width: 100%;
}

.about-image {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	border-radius: 20px;
	overflow: hidden;
	align-self: start;
	height: fit-content;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
}

/* Contact Form */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	/* Prevents auto-zoom on iOS */
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 15px var(--glow-cyan);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 16px 40px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.submit-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 200, 220, 0.25);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
}

.contact-item:hover {
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.2));
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: var(--primary);
	position: relative;
	overflow: hidden;
}

.contact-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.contact-details h4 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 5px;
}

.contact-details p {
	color: #ffffff;
	font-size: 15px;
}

/* Exit animations */
.menu-item.exit-up {
	animation: exitDown 0.5s ease-out forwards !important;
	pointer-events: none;
}

@keyframes exitDown {
	to {
		transform: translateY(50px);
		opacity: 0;
	}
}

.menu-item.return {
	animation: menuReturn 0.4s ease-out forwards !important;
}

@keyframes menuReturn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Footer */
.footer {
	margin-top: auto;
	padding: 30px 0;
	text-align: center;
	opacity: 0;
	animation: fadeUp 0.5s ease-out 1.7s forwards;
}


/* Responsive Design */
@media (max-width: 992px) {
	.menu-grid {
		grid-template-columns: repeat(3, 170px);
	}

	.menu-item {
		height: 145px;
	}

	.intro-hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.intro-hero-content {
		text-align: center;
		max-width: 100%;
	}

	.intro-cta-group {
		justify-content: center;
	}

	.intro-hero-visual {
		height: 300px;
	}

	.intro-metrics {
		flex-wrap: wrap;
		gap: 30px;
	}

	.metric-divider {
		display: none;
	}

	.intro-values {
		grid-template-columns: 1fr;
	}

	.services-list {
		grid-template-columns: 1fr;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.brand-name {
		font-size: 36px;
		letter-spacing: 4px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 155px);
		gap: 15px;
	}

	.menu-item {
		height: 135px;
	}

	.menu-badge {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	.section-title {
		font-size: 28px;
	}

	.intro-headline {
		font-size: 36px;
	}

	.intro-hero-visual {
		display: none;
	}

	.intro-metrics {
		padding: 30px 25px;
	}

	.metric-value {
		font-size: 32px;
	}

	.service-row {
		flex-direction: column;
		text-align: center;
	}

	.service-row-icon {
		width: 200px;
		height: 150px;
		min-width: 120px;
	}

	.section-header-small {
		position: relative;
		top: auto;
		left: auto;
		margin-bottom: 20px;
		justify-content: center;
	}

	.back-btn {
		position: relative;
		top: auto;
		right: auto;
		display: block;
		width: fit-content;
		margin: 0 auto 30px;
	}

	.content-section {
		padding-top: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-footer {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 20px 15px;
	}

	.brand-name {
		font-size: 28px;
		letter-spacing: 3px;
	}

	.tagline {
		font-size: 10px;
		letter-spacing: 3px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 130px);
		gap: 12px;
	}

	.menu-item {
		height: 120px;
	}

	.menu-badge {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}

	.menu-title {
		font-size: 10px;
		letter-spacing: 2px;
	}

	.intro-headline {
		font-size: 28px;
	}

	.intro-subtext {
		font-size: 15px;
	}

	.intro-cta-group {
		flex-direction: column;
		align-items: center;
	}

	.intro-cta-primary,
	.intro-cta-secondary {
		width: 100%;
		max-width: 250px;
		text-align: center;
	}

	.intro-metrics {
		flex-direction: column;
		gap: 25px;
	}

	.metric-value {
		font-size: 36px;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.tab-buttons {
		flex-direction: column;
		align-items: center;
	}

	.tab-btn {
		width: 100%;
		max-width: 250px;
	}
}

/* ===== COMPREHENSIVE RESPONSIVE OVERRIDES ===== */
/* These use !important to override inline styles in HTML */

/* Tablet breakpoint (1024px) */
@media (max-width: 1024px) {

	/* Services & Products 3-col grids -> 2-col */
	.services-intro-grid,
	.features-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 15px !important;
		padding: 0 15px;
	}

	/* About section adjustments */
	.about-content {
		gap: 40px;
	}

	.about-image {
		position: relative !important;
		top: auto !important;
	}

	/* Tab hero adjustments */
	.tab-hero {
		min-height: 40vh;
		padding: 30px 20px;
	}

	/* Section titles */
	.section-title {
		font-size: 32px;
	}

	.section-header h3 {
		font-size: 24px !important;
	}

	/* Intro expansion overrides */
	.intro-outcomes-wrapper {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}
}

/* Mobile breakpoint (768px) */
@media (max-width: 768px) {

	/* All grids -> single column */
	.services-intro-grid,
	.features-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

	/* Custom service cards - full width */
	.custom-service-card {
		padding: 30px !important;
		border-radius: 20px !important;
	}

	/* Tab content padding */
	.tab-pane {
		padding: 0 10px;
	}

	/* Tab hero compact */
	.tab-hero {
		min-height: 35vh;
		padding: 20px 15px 30px;
		margin-bottom: 30px;
	}

	.tab-hero h2 {
		font-size: 28px !important;
	}

	.tab-hero p {
		font-size: 14px !important;
	}

	/* Section headers */
	.section-header {
		padding: 0 15px;
		margin-bottom: 30px !important;
	}

	.section-header h3 {
		font-size: 22px !important;
	}

	/* About section - stack columns */
	.about-content {
		grid-template-columns: 1fr !important;
		gap: 30px;
	}

	.about-text,
	.about-image {
		text-align: center;
	}

	.about-image img {
		max-width: 100%;
		height: auto;
	}

	/* Final CTA sections */
	.final-cta-section {
		padding: 50px 20px !important;
	}

	.final-cta-section h2 {
		font-size: 24px !important;
	}

	/* Flex containers - wrap */
	.intro-cta-group,
	[style*="display: flex"][style*="gap"] {
		flex-wrap: wrap;
		justify-content: center;
	}

	/* Feature cards in 4-col grid -> 2-col */
	.features-grid[style*="repeat(4"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* Reduce card icon size */
	.card-icon {
		width: 50px !important;
		height: 50px !important;
		filter: grayscale(100%);
	}

	.card-icon span {
		font-size: 20px !important;
		filter: grayscale(100%);
	}

	/* Intro expansion mobile overrides */
	.intro-practice-grid {
		grid-template-columns: 1fr !important;
		gap: 15px !important;
	}

	.intro-scope-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	.intro-process-flow {
		flex-direction: column !important;
		align-items: center !important;
		gap: 30px !important;
	}

	.process-connector {
		width: 2px !important;
		height: 30px !important;
		margin-top: 0 !important;
		background: linear-gradient(180deg, var(--primary), transparent) !important;
	}

	.intro-final-cta {
		padding: 60px 20px !important;
		border-radius: 24px !important;
	}

	.intro-final-cta h2 {
		font-size: 28px !important;
	}

	.outcome-quote-block {
		padding: 40px 20px !important;
	}

	.outcome-quote-block blockquote {
		font-size: 18px !important;
	}
}

/* Small mobile breakpoint (480px) */
@media (max-width: 480px) {

	/* Even smaller grid gaps */
	.services-intro-grid,
	.features-grid {
		gap: 15px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

	/* Cards - reduced padding */
	.custom-service-card,
	.feature-card {
		padding: 25px !important;
	}

	/* Tab hero minimal */
	.tab-hero {
		min-height: 30vh;
		padding: 15px 10px 25px;
	}

	.tab-hero h2 {
		font-size: 24px !important;
	}

	/* Section headers */
	.section-header h3 {
		font-size: 20px !important;
	}

	.section-subtitle {
		font-size: 13px !important;
	}

	/* Final CTA ultra compact */
	.final-cta-section {
		padding: 40px 15px !important;
	}

	.final-cta-section h2 {
		font-size: 22px !important;
	}

	/* Buttons full width */
	.intro-cta-primary,
	.intro-cta-secondary {
		width: 100%;
		text-align: center;
		padding: 12px 20px !important;
	}

	/* 4-col feature grid -> 1-col on very small screens */
	.features-grid[style*="repeat(4"] {
		grid-template-columns: 1fr !important;
	}

	/* Card text adjustments */
	.custom-service-card h3,
	.feature-card h4 {
		font-size: 18px !important;
	}

	.custom-service-card p,
	.feature-card p {
		font-size: 13px !important;
	}

	/* List items in cards */
	.custom-service-card ul li {
		font-size: 12px !important;
	}
}

/* Extra small screens (375px) */
@media (max-width: 375px) {
	.tab-hero h2 {
		font-size: 22px !important;
	}

	.section-header h3 {
		font-size: 18px !important;
	}

	.custom-service-card,
	.feature-card {
		padding: 20px !important;
	}
}

.tab-hero {
	min-height: calc(100vh - 240px);
	/* Occupy significant vertical space above the fold */
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Center content vertically */
	align-items: center;
	/* Center content horizontally */
	text-align: center;
	padding-bottom: 40px;
	/* Minimal padding from the bottom */
	margin-bottom: 120px;
}

/* Success Modal */
.success-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.success-modal.visible {
	display: flex;
	opacity: 1;
}

.modal-content {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.success-modal.visible .modal-content {
	transform: scale(1);
}

.modal-content h3 {
	font-family: 'Syne', sans-serif;
	color: #ffffff;
	font-size: 24px;
	margin: 20px 0 10px;
}

.modal-content p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.5;
}

/* Checkmark Animation */
.checkmark-circle {
	width: 80px;
	height: 80px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
}

.checkmark-circle .background {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(0, 240, 255, 0.1);
	border: 1px solid var(--primary);
	position: absolute;
}

.checkmark-circle .checkmark {
	border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
	animation-delay: 100ms;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-name: checkmark;
	transform: scaleX(-1) rotate(135deg);
	animation-fill-mode: forwards;
}

.checkmark-circle .checkmark:after {
	opacity: 1;
	height: 40px;
	width: 20px;
	transform-origin: left top;
	border-right: 2px solid var(--primary);
	border-top: 2px solid var(--primary);
	content: '';
	position: absolute;
	top: 40px;
	left: 20px;
}

@keyframes checkmark {
	0% {
		height: 0;
		width: 0;
		opacity: 1;
	}

	20% {
		height: 0;
		width: 20px;
		opacity: 1;
	}

	40% {
		height: 40px;
		width: 20px;
		opacity: 1;
	}

	100% {
		height: 40px;
		width: 20px;
		opacity: 1;
	}
}

/* ===== ABOUT SECTION SPACING ===== */
.about-text h2 {
	margin-top: 100px;
	margin-bottom: 30px;
	font-family: 'Syne', sans-serif;
	color: #ffffff;
}

.about-text h3 {
	margin-bottom: 50px;
	line-height: 1.5;
	color: #fff;
}

.about-text p {
	margin-bottom: 35px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
}

/* ===== CONTACT SECTION SPACING ===== */
.contact-grid {
	margin-top: 60px;
	margin-bottom: 150px;
	gap: 60px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contact-item {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.about-text h2 {
		margin-top: 60px;
	}

	.contact-grid {
		margin-bottom: 80px;
	}
}