
/* lama Consultant - cinematic 3D dark theme */
:root {
	--bg-0: #050816;
	--bg-1: #081122;
	--text: #f4f7fb;
	--muted: rgba(244, 247, 251, 0.74);
	--accent: #00e5ff;
	--accent-2: #8b5cf6;
	--shadow: 0 28px 80px rgba(1, 5, 18, 0.55);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	color: var(--text);
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: #050816;
	background:
		radial-gradient(circle at top, rgba(0, 229, 255, 0.12), transparent 30%),
		radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.14), transparent 24%),
		linear-gradient(180deg, var(--bg-0), var(--bg-1) 48%, #03050c 100%);
	line-height: 1.6;
	overflow-x: hidden;
}

img, svg, canvas {
	display: block;
	max-width: 100%;
}

.container {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}

.section {
	padding: 5rem 0;
	background: transparent;
}

.eyebrow {
	margin: 0 0 0.75rem;
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

/* Glassmorphism */
.glassmorphism {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 20px;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999 !important;
	width: 100%;
	background: rgba(5, 8, 22, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
	pointer-events: auto !important;
}

header,
.navbar,
.nav-links,
.site-header,
.main-nav {
	z-index: 9999 !important;
	pointer-events: auto !important;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 1.15rem;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding-left: calc((100% - 1180px) / 2 + 1.15rem);
	padding-right: calc((100% - 1180px) / 2 + 1.15rem);
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1.1rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 45px rgba(0, 229, 255, 0.18);
	background: rgba(0, 229, 255, 0.12);
}

.logo {
	color: var(--text);
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 1.15rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-nav a {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
	transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.main-nav a:hover {
	color: #fff;
	transform: translateY(-1px);
	text-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
}

	/* Hamburger Menu */
	#hamburger {
		display: none;
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		width: 32px;
		height: 32px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		flex-shrink: 0;
		z-index: 1001;
	}
	
	#hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--text);
		border-radius: 1px;
		transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
		transform-origin: center;
	}
	
	#hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
		background-color: #00e5ff;
	}
	
	#hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	
	#hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
		background-color: #00e5ff;
	}
	
	.nav-links {
		display: flex !important;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(10, 15, 30, 0.98) !important;
		backdrop-filter: blur(25px);
		z-index: 9999 !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
	}

	#nav-close {
		position: absolute;
		top: 1.1rem;
		right: 1.1rem;
		width: 42px;
		height: 42px;
		padding: 0;
		border: none;
		background: rgba(255, 255, 255, 0.08);
		border-radius: 999px;
		cursor: pointer;
		z-index: 10000;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#nav-close span {
		position: absolute;
		width: 18px;
		height: 2px;
		background: #ffffff;
		border-radius: 2px;
	}

	#nav-close span:nth-child(1) {
		transform: rotate(45deg);
	}

	#nav-close span:nth-child(2) {
		transform: rotate(-45deg);
	}
	
	.nav-links.active {
		right: 0 !important;
	}

	.nav-links ul {
		list-style: none;
		text-align: center;
		padding: 0;
	}

	.nav-links ul li {
		margin: 25px 0;
	}

	.nav-links ul li a {
		color: #ffffff !important;
		font-size: 2rem;
		font-weight: 700;
		text-decoration: none;
	}
	
	.nav-links .main-nav {
		display: flex !important;
		width: 100%;
		flex-direction: column;
		gap: 0;
		justify-content: flex-start;
	}
	
	.nav-links .main-nav ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
		padding: 1rem 0;
	}
	
	.nav-links .main-nav li {
		width: 100%;
	}
	
	.nav-links .main-nav a {
		display: block;
		padding: 1rem 1.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		transition: background 180ms ease, color 180ms ease;
	}
	
	.nav-links .main-nav a:hover,
	.nav-links .main-nav a:focus {
		background: rgba(0, 229, 255, 0.1);
		color: var(--accent);
	}
	
	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.btn-outline,
.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	border-radius: 999px;
	border: 1px solid transparent;
	text-decoration: none;
	font-weight: 700;
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn-outline {
	padding: 0.78rem 1.1rem;
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.12);
}

.btn-primary {
	padding: 0.95rem 1.3rem;
	color: #06101a;
	background: linear-gradient(135deg, var(--accent), #7cf6ff);
	box-shadow: 0 14px 40px rgba(0, 229, 255, 0.28);
}

.btn-secondary {
	padding: 0.9rem 1.2rem;
	color: var(--text);
	background: rgba(139, 92, 246, 0.18);
	border-color: rgba(139, 92, 246, 0.35);
}

.btn-outline:hover,
.btn-primary:hover,
.btn-secondary:hover {
	transform: translateY(-3px);
}

.btn-primary:hover {
	box-shadow: 0 20px 50px rgba(0, 229, 255, 0.38);
}

.btn-secondary:hover {
	box-shadow: 0 18px 45px rgba(139, 92, 246, 0.3);
}

/* Hero */
.hero-section {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	background: transparent;
	padding-top: 100px;
	margin-top: 0;
}

.global-fixed-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -999;
	pointer-events: none;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.16), transparent 28%),
		radial-gradient(circle at 80% 15%, rgba(139, 92, 246, 0.16), transparent 24%),
		linear-gradient(180deg, rgba(5, 8, 22, 0.15), rgba(5, 8, 22, 0.6));
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 5rem 0;
}

.hero-copy {
	max-width: 720px;
	padding: 2rem;
	z-index: 5;
	position: relative;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-panel h2 {
	margin: 0;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.hero-copy h1 {
	font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.hero-description,
.about-copy p,
.contact-panel p,
.service-card p {
	color: var(--muted);
}

.hero-description {
	max-width: 52ch;
	margin: 1rem 0 1.6rem;
	font-size: 1.05rem;
}

/* Sections */
.section-heading {
	max-width: 720px;
	margin-bottom: 1.75rem;
}

.section-heading h2,
.about-copy h2,
.contact-panel h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.service-card {
	position: relative;
	padding: 1.4rem;
	transform: translateY(0);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 32px 90px rgba(0, 229, 255, 0.16), 0 18px 40px rgba(1, 5, 18, 0.55);
	border-color: rgba(0, 229, 255, 0.32);
}

.service-icon {
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--accent);
	font-size: 1.2rem;
}

.service-card h3 {
	margin: 0 0 0.6rem;
	font-size: 1.25rem;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
	gap: 1.2rem;
	align-items: stretch;
}

.about-copy,
.contact-panel {
	padding: 1.75rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.stat-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 150px;
	padding: 1.25rem;
	text-align: center;
}

.stat-card strong {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	color: #fff;
}

.stat-card span {
	margin-top: 0.5rem;
	color: var(--muted);
	font-weight: 600;
}

.contact-section {
	padding-bottom: 6rem;
}

/* Platforms Marquee */
.platforms-section {
	overflow: visible;
}

.platforms-marquee {
	position: relative;
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	padding-top: 20px;
	padding-bottom: 20px;
	background: transparent;
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.platforms-track {
	display: flex;
	gap: 1.5rem;
	animation: scroll-marquee 40s linear infinite;
	will-change: transform;
}

.platform-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: max-content;
	padding: 0.95rem 1.4rem;
	margin: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(0, 229, 255, 0.25);
	border-radius: 50px;
	color: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
	white-space: nowrap;
	transition: all 280ms ease;
	cursor: default;
}

.platform-badge:hover {
	background: rgba(0, 229, 255, 0.15);
	border-color: rgba(0, 229, 255, 0.5);
	box-shadow: 0 8px 28px rgba(0, 229, 255, 0.2);
	transform: translateY(-2px);
}

.platforms-marquee::-webkit-scrollbar {
	display: none; /* Chrome, Safari, and Opera */
}

@keyframes scroll-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.platforms-marquee:hover .platforms-track {
	animation-play-state: paused;
}

/* About Page - Mission Section */
.about-mission {
	position: relative;
	z-index: 10;
}

/* About Page - Leadership Section */
.about-leadership {
	position: relative;
	z-index: 10;
}

.leadership-wrapper {
	text-align: left;
	margin: 4rem 0;
}

.section-subtitle {
	display: inline-block;
	margin: 0 0 0.75rem;
	color: #00e5ff;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 0.85rem;
	font-weight: 700;
}

.leadership-heading {
	max-width: 720px;
	margin-bottom: 1.75rem;
}

.leadership-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
}

.leadership-intro {
	margin: 0.9rem 0 0;
	max-width: 52ch;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.leadership-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: stretch;
	width: 100%;
}

.leadership-section-inner {
	max-width: 820px;
	margin: 0 auto;
}

.leadership-heading {
	max-width: 100%;
	text-align: left;
}

.leadership-heading h2 {
	font-size: clamp(2rem, 3.8vw, 3rem);
}

.leadership-heading p {
	max-width: 58ch;
	color: var(--muted);
	line-height: 1.7;
	margin: 0.85rem 0 0;
}

.founder-info {
	position: relative;
	padding: 2.5rem 3rem;
	box-sizing: border-box;
	line-height: 1.8;
	font-size: 1.05rem;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
	align-items: center;
}

.founder-info h3 {
	margin: 0 0 0.5rem 0 !important;
	padding: 0;
	text-align: center !important;
}

.founder-info p {
	color: var(--muted);
	margin: 0 !important;
	padding: 0 !important;
	text-align: center !important;
	max-width: 100% !important;
}

.founder-info::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), transparent 45%);
	pointer-events: none;
}

.founder-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem !important;
	color: var(--accent) !important;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.founder-kicker::before {
	content: '';
	width: 34px;
	height: 1px;
	background: currentColor;
	opacity: 0.8;
}

.founder-info p:last-of-type {
	position: relative;
	max-width: 58ch;
	color: var(--text);
	font-size: 1rem;
	line-height: 1.9;
}

.founder-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
	position: relative;
}

.founder-highlights span {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text);
	font-size: 0.85rem;
	font-weight: 600;
}

.founder-headshot {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2.5rem;
	text-align: center;
	min-height: 280px;
	position: relative;
	overflow: hidden;
}

.founder-name {
	color: #fff;
	font-weight: 800;
}

.headshot-placeholder {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	min-height: 100%;
	padding: 1rem;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	position: relative;
}

.headshot-placeholder::before {
	content: '';
	position: absolute;
	inset: 12% 18%;
	border-radius: 28px;
	border: 1px solid rgba(0, 229, 255, 0.12);
	background: radial-gradient(circle at top, rgba(0, 229, 255, 0.08), transparent 55%);
	pointer-events: none;
}

.headshot-ring {
	position: relative;
	display: grid;
	place-items: center;
	padding: 1rem;
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(0, 229, 255, 0.18), rgba(139, 92, 246, 0.16));
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 55px rgba(0, 0, 0, 0.35);
}

.headshot-initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
	max-width: 100%;
	border-radius: 50%;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
		radial-gradient(circle at top, rgba(0, 229, 255, 0.22), transparent 48%),
		radial-gradient(circle at bottom, rgba(139, 92, 246, 0.18), transparent 42%),
		rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.35);
	color: rgba(255, 255, 255, 0.12);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: 0.08em;
}

.headshot-caption {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.35rem;
	max-width: 24ch;
	margin: 0 auto;
}

.headshot-caption p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.headshot-title {
	color: var(--text) !important;
	font-weight: 700;
	font-size: 1rem !important;
	letter-spacing: 0.01em;
}

.mission-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2rem;
	align-items: start;
}

.mission-copy {
	padding: 2rem;
}

.mission-copy h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 1rem 0 1.5rem;
	line-height: 1.1;
}

.mission-copy p {
	color: var(--muted);
	margin-bottom: 1.25rem;
	line-height: 1.7;
}

.mission-values {
	padding: 2rem;
}

.mission-values h3 {
	font-size: 1.4rem;
	margin: 0 0 1.5rem;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.values-list li {
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.values-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.values-list strong {
	display: block;
	color: var(--accent);
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

.values-list p {
	color: var(--muted);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Services Detailed Page */
.services-detailed {
	position: relative;
	z-index: 10;
}

.service-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	margin-bottom: 4rem;
	padding: 2rem;
}

.service-left {
	grid-template-columns: 1fr 1fr;
}

.service-right {
	grid-template-columns: 1fr 1fr;
	direction: rtl;
}

.service-right > * {
	direction: ltr;
}

.service-text {
	padding: 2rem;
}

.service-text h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	margin: 1rem 0 0.75rem;
	line-height: 1.1;
}

.service-subtitle {
	color: var(--accent);
	font-weight: 600;
	margin: 0 0 1.25rem;
	font-size: 1.05rem;
}

.service-text p {
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.service-text p:last-child {
	margin-bottom: 0;
}

.service-visual {
	padding: 0;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 229, 255, 0.08);
	border: 1px solid rgba(0, 229, 255, 0.2);
	border-radius: 20px;
	overflow: hidden;
}

.visual-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(139, 92, 246, 0.1));
}

.placeholder-text {
	color: var(--accent);
	font-weight: 700;
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	text-align: center;
	padding: 1rem;
}

/* FAQ Page */
.faq-section {
	position: relative;
	z-index: 10;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
	transition: all 280ms ease;
}

.faq-item:hover {
	border-color: rgba(0, 229, 255, 0.3);
	box-shadow: 0 8px 28px rgba(0, 229, 255, 0.12);
}

.faq-item[open] {
	background: rgba(0, 229, 255, 0.08);
	border-color: rgba(0, 229, 255, 0.3);
	box-shadow: 0 8px 28px rgba(0, 229, 255, 0.12);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.5rem;
	cursor: pointer;
	list-style: none;
	user-select: none;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--text);
	transition: color 180ms ease;
}

.faq-question:hover {
	color: var(--accent);
}

.faq-question > span:first-child {
	flex: 1;
	text-align: left;
}

.faq-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	background: rgba(0, 229, 255, 0.15);
	border-radius: 50%;
	font-size: 1.2rem;
	color: var(--accent);
	flex-shrink: 0;
	transition: transform 280ms ease;
}

.faq-item[open] .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem 1.5rem;
	border-top: 1px solid rgba(0, 229, 255, 0.15);
	animation: slideDown 280ms ease-out;
}

.faq-answer p {
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
	font-size: 0.95rem;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

main {
	position: relative;
	z-index: 10;
}

main.page-content {
	margin-top: 100px;
	z-index: 10;
}

.site-footer {
	position: relative;
	z-index: 10;
}

.lead-form {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.form-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.form-field {
	display: grid;
	gap: 0.45rem;
}

.form-field label {
	font-weight: 600;
	color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(5, 8, 22, 0.45);
	color: var(--text);
	padding: 0.95rem 1rem;
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: rgba(0, 229, 255, 0.5);
	box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
}

.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.form-status {
	min-height: 1.25rem;
	margin: 0;
	color: var(--muted);
}

.contact-form {
	position: relative;
	margin-top: 1.5rem;
}

.contact-form-fields {
	display: grid;
	gap: 1rem;
	transition: opacity 320ms ease, transform 320ms ease, max-height 320ms ease;
	max-height: 1400px;
	opacity: 1;
}

.contact-form-fields.is-hidden {
	max-height: 0;
	opacity: 0;
	transform: translateY(12px);
	overflow: hidden;
	pointer-events: none;
}

.form-response {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 0;
	max-height: 0;
	padding: 0 1rem;
	margin: 0;
	border-radius: 18px;
	border: 1px solid transparent;
	background: rgba(0, 229, 255, 0.08);
	color: var(--accent);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.5;
	opacity: 0;
	overflow: hidden;
	transition: opacity 320ms ease, max-height 320ms ease, padding 320ms ease, border-color 320ms ease, background 320ms ease, color 320ms ease;
}

.form-response.is-visible {
	max-height: 260px;
	padding: 2rem 1.5rem;
	opacity: 1;
	border-color: rgba(0, 229, 255, 0.3);
	box-shadow: 0 12px 40px rgba(0, 229, 255, 0.12);
}

.form-response.is-error {
	background: rgba(255, 59, 59, 0.08);
	color: #ffb3b3;
	border-color: rgba(255, 59, 59, 0.28);
	box-shadow: 0 12px 40px rgba(255, 59, 59, 0.12);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.2fr 0.8fr;
	gap: 1.2rem;
	padding: 1.5rem;
}

.footer-grid h3,
.footer-grid h4 {
	margin: 0 0 0.65rem;
}

.site-footer a {
	color: #fff;
}

	/* Responsive */
	@media (max-width: 768px) {
		/* Header Mobile */
		.header-inner {
			padding: 0.8rem 1rem;
		}
	
		.logo {
			font-size: 0.95rem;
		}
	
		#hamburger {
			display: flex;
		}
	
		.main-nav {
			display: none;
		}
	
		.btn-outline {
			display: none;
		}
	
		/* Hero Section Mobile */
		.hero-section {
			padding-top: 120px;
			min-height: 70vh;
		}
	
		.hero-copy h1 {
			font-size: clamp(2rem, 5vw, 3.5rem);
		}
	
		.hero-copy {
			padding: 1rem;
		}
	
		/* Services Grid */
		.services-grid {
			grid-template-columns: 1fr;
		}
	
		/* Stats Grid */
		.stats-grid {
			grid-template-columns: 1fr;
		}
	
		/* About Section */
		.mission-grid {
			grid-template-columns: 1fr;
		}

		.leadership-grid {
			grid-template-columns: 1fr;
		}
	
		.leadership-intro {
			max-width: none;
		}

		.leadership-section-inner,
		.leadership-heading,
		.founder-info {
			max-width: 100%;
			padding: 2rem;
		}

		.mission-copy,
		.mission-values,
		.founder-info,
		.founder-headshot {
			padding: 1.5rem;
		}
	
		/* Services Page */
		.service-block {
			grid-template-columns: 1fr;
			margin-bottom: 2rem;
		}
	
		.service-text {
			padding: 1.5rem;
		}
	
		.service-visual {
			min-height: 180px;
		}
	
		/* FAQ */
		.faq-container {
			max-width: 100%;
		}
	
		.faq-question {
			padding: 1.25rem;
			font-size: 1rem;
		}
	
		.faq-answer {
			padding: 0 1.25rem 1.25rem;
		}
	
		.faq-answer p {
			font-size: 0.9rem;
		}
	
		/* Contact Form */
		.form-grid-2 {
			grid-template-columns: 1fr;
		}
	
		.form-field input,
		.form-field select,
		.form-field textarea {
			padding: 0.85rem 0.9rem;
			font-size: 1rem;
		}
	
		.form-actions {
			flex-direction: column;
			align-items: stretch;
		}
	
		.form-actions .btn-primary,
		.form-actions .btn-secondary {
			width: 100%;
		}
	
		/* Reduce blur intensity for mobile performance */
		.site-header {
			backdrop-filter: blur(8px);
			-webkit-backdrop-filter: blur(8px);
		}
	
		.glassmorphism {
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px);
		}
	
		/* Platforms Marquee */
		.platforms-track {
			gap: 1rem;
		}
	
		.platform-badge {
			padding: 0.75rem 1.1rem;
			font-size: 0.85rem;
		}
	
		/* Section padding */
		.section {
			padding: 3rem 0;
		}
	}
	
	/* Responsive */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mission-grid {
		grid-template-columns: 1fr;
	}

	.leadership-grid {
		grid-template-columns: 1fr;
	}

	.leadership-heading {
		margin-bottom: 1.25rem;
	}

	.service-block {
		grid-template-columns: 1fr;
		margin-bottom: 3rem;
	}

	.service-right {
		direction: ltr;
	}

	.service-right > * {
		direction: ltr;
	}
}

@media (max-width: 780px) {
	.header-inner {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}

	.main-nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.btn-outline {
		width: 100%;
	}

	.hero-grid {
		padding: 3.5rem 0;
	}

	.hero-copy {
		padding: 1.4rem;
	}

	.services-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.form-grid-2 {
		grid-template-columns: 1fr;
	}

	.form-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.form-actions .btn-primary,
	.form-actions .btn-secondary {
		width: 100%;
	}

	.faq-question {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.faq-question > span:last-child {
		align-self: flex-end;
		margin-top: -1.8rem;
	}

	.service-text {
		padding: 1.5rem;
	}

	.service-visual {
		min-height: 200px;
	}

	.mission-copy,
	.mission-values {
		padding: 1.5rem;
	}
}

