/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Brand Colors - converted from CMYK to RGB */
	--void-violet: #2E0080;      /* Adjusted to have even more blue */
	--quantum-shadow: #000014;   /* Darker blue-black for more contrast */
	--pixel-plush: #3ccffc;      /* C:0 M:75 Y:0 K:0 */
	--pixel-wave: #000205;       /* C:97 M:65 Y:0 K:97 */
}

html {
	scroll-behavior: smooth;
	background: linear-gradient(150deg,
		var(--void-violet) 0%,
		var(--void-violet) 15%,
		rgba(20, 0, 90, 0.9) 30%,
		rgba(0, 0, 25, 1) 50%,
		rgba(0, 0, 35, 0.95) 70%,
		var(--quantum-shadow) 85%,
		var(--quantum-shadow) 100%
	);
	min-height: 100vh;
}

body {
	font-family: 'IBM Plex Sans', sans-serif;
	line-height: 1.6;
	color: #fff;
	font-weight: 400;
}

/* Override body background when video is present */
body:has(.video-container) {
	background: rgb(0, 20, 50);
}

/* Content styles */
main {
	position: relative;
	min-height: calc( 100vh - 544px );
}

section {
	padding: 2rem 2rem 2.5rem 2rem;
	background: rgb(0, 20, 50);
	position: relative;
	overflow: hidden;
	margin-top: 0;
	z-index: 1;
}

.content {
	max-width: 1200px;
	margin: 0 auto;
}

/* Grid and Card Styles */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.feature-item {
	background: linear-gradient(180deg, #25004e, #000018);
	padding: 2rem;
	margin-bottom: 2rem;
	border-radius: 8px;
	border: 1px solid rgba(51, 153, 255, 0.1);
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: block;
}

.feature-item:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 234, 255, 0.4);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
				0 0 30px rgba(51, 153, 255, 0.3),
				inset 0 0 20px rgba(0, 234, 255, 0.1);
	background: linear-gradient(180deg, #2b0059, #000020);
}

.feature-item .learn-more {
	position: absolute;
	bottom: -2rem;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--pixel-plush);
	font-weight: 500;
	padding: 0.5rem;
	transition: all 0.3s ease;
	opacity: 0;
}

.feature-item:hover .learn-more {
	bottom: 0;
	opacity: 0.9;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	background: none;
}

.feature-item h3::before {
	content: attr(data-icon);
	margin-right: 0.5rem;
	font-size: 1.2em;
	color: var(--pixel-plush);
	text-shadow: 0 0 10px rgba(60, 207, 252, 0.5);
}

.feature-card {
	background: rgba(0, 2, 5, 0.7);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid rgba(51, 153, 255, 0.1);
	transition: all 0.4s ease;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 234, 255, 0.4);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
				0 0 30px rgba(51, 153, 255, 0.3),
				inset 0 0 20px rgba(0, 234, 255, 0.1);
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.impact-item {
	background: linear-gradient(180deg, #25004e, #000018);
	padding: 2rem;
	margin-bottom: 2rem;
	border-radius: 8px;
	border: 1px solid rgba(51, 153, 255, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.impact-item:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 234, 255, 0.4);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
				0 0 30px rgba(51, 153, 255, 0.3),
				inset 0 0 20px rgba(0, 234, 255, 0.1);
	background: linear-gradient(180deg, #2b0059, #000020);
}

/* Base Typography */
h1 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 3.5rem;
	margin-bottom: 2rem;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

h2 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 500;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

h3 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: var(--pixel-plush);
}

p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 1.8;
}

/* Accent Headers with gradient */
.accent-header {
	background: linear-gradient(to right, #fff, var(--pixel-plush));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 30px rgba(112, 255, 255, 0.7);
}

.intro-text {
	max-width: 800px;
	margin: 0 auto 3rem;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.8;
}

/* Lists */
ul {
	list-style: disc;
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

li {
	margin-bottom: 1rem;
	font-weight: 300;
	position: relative;
	padding-left: 0.5rem;
}

li::before {
	content: none;
}

/* Remove bullets from principles list */
.principles-list {
	list-style: none;
	padding-left: 1.5rem;
	text-align: left;
}

.principles-list li {
	margin-bottom: 1.5rem;
	position: relative;
	padding-left: 0;
}

/* Navigation Styles */
header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, #25004e, #000018);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(112, 255, 255, 0.2);
	z-index: 1000;
}

.nav-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.25rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	text-decoration: none;
	padding: 5px;
}

.logo img {
	height: 70px;
	width: auto;
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	background: rgba(112, 255, 255, 0.1);
	color: var(--pixel-plush);
}

.nav-links a.active {
	background: rgba(112, 255, 255, 0.1);
	color: var(--pixel-plush);
	border: 1px solid rgba(112, 255, 255, 0.3);
}

/* Navigation icon enhancements */
.nav-links a[data-icon]::before {
	content: attr(data-icon);
	margin-right: 0.5rem;
	font-size: 1.1em;
	color: var(--pixel-plush);
}

/* Submenu styles */
.nav-item {
	position: relative;
	padding-bottom: 0.5rem;
	margin-bottom: -0.5rem;
}

.nav-item > a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-item > a::after {
	content: '\25BC'; /* Unicode for downward-pointing triangle */
	font-size: 0.7em;
	color: var(--pixel-plush);
	opacity: 0.8;
	transition: transform 0.3s ease;
}

.nav-item:hover > a::after {
	transform: translateY(2px);
}

.nav-item > a.active {
	background: rgba(112, 255, 255, 0.1);
	color: var(--pixel-plush);
	border: 1px solid rgba(112, 255, 255, 0.3);
}

.nav-item:hover .submenu {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.submenu {
	display: none;
	position: absolute;
	top: calc(100% + 0.25rem);
	left: 0;
	background: rgba(0, 2, 5, 0.95);
	border: 1px solid rgba(112, 255, 255, 0.2);
	border-radius: 4px;
	padding: 0.5rem;
	min-width: 200px;
	backdrop-filter: blur(10px);
	z-index: 1001;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.submenu::before {
	content: '';
	position: absolute;
	top: -0.5rem;
	left: 0;
	right: 0;
	height: 0.5rem;
	background: transparent;
}

.submenu a {
	display: block;
	padding: 0.75rem 1rem;
	white-space: nowrap;
	border-radius: 2px;
}

.submenu a:hover {
	background: rgba(112, 255, 255, 0.1);
}

/* Buttons */
.cta-button {
	background: rgba(112, 255, 255, 0.1);
	border: 1px solid var(--pixel-plush);
	padding: 1.2rem 2.5rem;
	font-size: 0.9rem;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.4s ease;
	box-shadow: 0 0 20px rgba(112, 255, 255, 0.2);
	text-shadow: 0 0 10px rgba(112, 255, 255, 0.5);
	backdrop-filter: blur(5px);
	display: inline-block;

	&.w-100{
		display: block;
		width: 100%;
	}

	&:disabled{
		opacity:.5;
	}
}

.cta-button:not(:disabled):hover {
	background: rgba(112, 255, 255, 0.2);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 0 30px rgba(112, 255, 255, 0.3);
}

/* Button icon enhancements */
.cta-button[data-icon]::before {
	content: attr(data-icon);
	margin-right: 0.75rem;
	font-size: 1.1em;
}

.demo-button {
	margin: 2rem auto;
	font-size: 1.1rem;
	padding: 1.5rem 3rem;
	background: rgba(112, 255, 255, 0.2);
	border: 2px solid var(--pixel-plush);
	box-shadow: 0 0 30px rgba(112, 255, 255, 0.3);
}

.demo-button:hover {
	background: rgba(112, 255, 255, 0.3);
	box-shadow: 0 0 40px rgba(112, 255, 255, 0.4);
	transform: translateY(-3px) scale(1.03);
}

/* Additional Components */
.charity-section {
	text-align: left;
	padding: 3rem;
	background: linear-gradient(180deg, #25004e, #000018);
	border-radius: 8px;
	margin: 3rem 0;
	border: 1px solid rgba(51, 153, 255, 0.1);
}

.charity-logos {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.location-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(112, 255, 255, 0.1);
	border: 1px solid var(--pixel-plush);
	border-radius: 20px;
	margin: 1rem 0;
	font-weight: 500;
}

.stats-highlight {
	font-size: 1.2rem;
	color: var(--pixel-plush);
	font-weight: 500;
	margin: 1rem 0;
	text-align: center;
	padding: 2rem;
	background: rgba(0, 2, 5, 0.5);
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(112, 255, 255, 0.1);
}

.cta-container {
	text-align: center;
	margin: 4rem 0 2rem;
	padding: 2rem;
	background: rgba(0, 2, 5, 0.5);
	border-radius: 8px;
}

/* Video background */
.video-container {
	position: relative;
	width: 100%;
	height: 50vh;
	z-index: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	background: rgb(0, 20, 50);
}

.video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 1920px;
}

#bgVideo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	max-width: 1920px;
}

.video-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

.centered-logo {
	max-width: 400px;
	width: 50%;
	height: auto;
	opacity: 0.9;
}

/* Hero Section */
.hero {
	height: 15vh;
	margin-top: -45vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 2;
	padding-bottom: 0;
}

.hero-content {
	position: relative;
	text-align: center;
	width: 100%;
	max-width: 1200px;
	padding: 0 2rem 2rem 2rem;
	z-index: 2;
}

/* Ensure button is more visible */
.hero .cta-button {
	animation: fadeInUp 1s ease-out;
	box-shadow: 0 0 30px rgba(112, 255, 255, 0.3);
	background: rgba(112, 255, 255, 0.15);
	border-width: 2px;
	font-size: 1.1rem;
	padding: 1.5rem 3rem;
}

/* Footer */
.footer {
	background: linear-gradient(rgba(0, 2, 5, 0.4), rgba(0, 2, 5, 0.4)), url('/assets/images/leasegenius-circuits.jpg');
	background-size: 400px;
	background-repeat: repeat;
	background-position: center;
	border-top: 1px solid rgba(112, 255, 255, 0.2);
	padding: 2rem 2rem;
	margin-top: 0;
	position: relative;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.footer h2 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer p {
	max-width: 800px;
	margin: 0 auto 1rem;
	font-size: 0.95rem;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer .demo-button {
	margin: 1rem auto;
	font-size: 0.9rem;
	padding: 1rem 2rem;
	backdrop-filter: blur(5px);
}

.footer .emphasis {
	margin-top: 1rem;
	display: block;
	font-size: 0.9rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Utility Classes */
.emphasis {
	font-style: normal;
	color: var(--pixel-plush);
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* Expo Flyer Styles */
.expo-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
	background: linear-gradient(180deg, #25004e, #000018);
	border-radius: 12px;
	border: 1px solid rgba(51, 153, 255, 0.1);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.expo-header {
	text-align: center;
	margin-bottom: 3rem;
}

.expo-logo {
	max-width: 300px;
	margin-bottom: 2rem;
}

.expo-subtitle {
	font-size: 2rem;
	color: var(--pixel-plush);
	font-weight: 500;
	margin-top: 1rem;
	text-shadow: 0 0 15px rgba(60, 207, 252, 0.5);
}

.expo-grid {
	grid-template-columns: repeat(2, 1fr);
}

.expo-grid .feature-item {
	backdrop-filter: blur(10px);
	border: 1px solid rgba(60, 207, 252, 0.2);
}

.expo-grid .feature-item:hover {
	transform: translateY(-5px);
	border-color: var(--pixel-plush);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
				0 0 30px rgba(60, 207, 252, 0.3);
}

.highlight-item {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, #25004e, #000018);
	border-color: var(--pixel-plush) !important;
}

.expo-cta {
	text-align: center;
	margin-top: 3rem;
}

.expo-cta .stats-highlight {
	background: rgba(0, 2, 5, 0.3);
	border: 1px solid rgba(60, 207, 252, 0.2);
	margin-bottom: 2rem;
}

/* Typewriter Effect Styles */
.typewriter-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 0 2rem;
}

.typewriter-wrapper {
	display: inline-block;
	position: relative;
	max-width: 90%;
	margin: 0 auto;
}

.logo-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	opacity: 0;
	transition: opacity 1s ease, transform 1.2s cubic-bezier(0.17, 0.67, 0.3, 1);
	pointer-events: none;
	width: 100%;
	padding: 0 2rem;
}

.logo-overlay.visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.logo-overlay .centered-logo {
	max-width: 600px;
	width: 80%;
	height: auto;
	filter: drop-shadow(0 0 20px rgba(60, 207, 252, 0.3));
}

.typewriter-text {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: clamp(1.5rem, 5vw, 3.5rem);
	font-weight: 600;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	line-height: 1.4;
	white-space: pre-wrap;
	word-wrap: break-word;
	opacity: 1;
	transition: opacity 0.5s ease;
}

.typewriter-text.fade-out {
	opacity: 0;
}

.typewriter-cursor {
	display: inline-block;
	width: 0.5em;
	height: 1em;
	background-color: #fff;
	margin-left: 2px;
	animation: blink 0.7s infinite;
	vertical-align: baseline;
	position: relative;
	top: 0.1em;
}

.circuit-bg {
	background: linear-gradient(rgba(0, 2, 5, 0.6), rgba(0, 2, 5, 0.6)), url('/assets/images/leasegenius-circuits.jpg');
	background-size: 400px;
	background-repeat: repeat;
	background-position: center;
	border: 1px solid rgba(112, 255, 255, 0.2);
	padding: 2rem;
	border-radius: 8px;
	position: relative;
	z-index: 1;
}

.logo-container {
	text-align: center;
	margin-bottom: 2rem;
}

.about-logo {
	max-width: 300px;
	height: auto;
	margin: 0 auto;
}

.blue-line {
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, transparent, #00ccff 20%, #0066cc 80%, transparent) 1;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.pink-line {
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, transparent, #ff00ee 20%, #880088 80%, transparent) 1;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* Contact Form Styles */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) auto;
	gap: 2rem;
	margin-top: 2rem;
	align-items: start;
}

.contact-info {
	width: max-content;
	padding: 2rem;
	white-space: nowrap;
	background: rgba(0, 2, 5, 0.7);
	border-radius: 8px;
	border: 1px solid var(--pixel-plush);
	height: fit-content;
	background: linear-gradient(rgba(0, 2, 5, 0.6), rgba(0, 2, 5, 0.6)), url('/assets/images/leasegenius-circuits.jpg');
	background-size: 400px;
	background-repeat: repeat;
	background-position: center;
}

.form-container {
	background: rgba(0, 2, 5, 0.7);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid var(--pixel-plush);
	align-self: stretch;
}
.form-container:has(.success-message){
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	.success-message {
		text-align: center;
		font-size: 1.2rem;
		color: #fff;
		margin-bottom: 1rem;
	}
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-check {
	display: flex;
	gap:.5rem;
	align-items: center;
	min-height: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;

	&.of-3 {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #fff;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid rgba(51, 153, 255, 0.2);
	border-radius: 4px;
	background: rgba(0, 2, 5, 0.5);
	color: #fff;
	font-family: 'IBM Plex Sans', sans-serif;
}

.form-group textarea {
	resize: vertical;
}

.d-none {
	display: none;
}

.radio-group {
	display: flex;
	align-items: center;
}

.radio-group input[type="radio"] {
	width: auto;
	margin-right: .5rem;
}

.radio-group label {
	display: inline;
	margin: 0 1.5rem 0 0 !important;
}

.contact-details {
	margin-top: 1.5rem;
}

.contact-details p {
	margin-bottom: 1rem;
}

.contact-details a {
	color: var(--pixel-plush);
	text-decoration: none;
}

.contact-details a:hover {
	text-decoration: underline;
}

.subtitle {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: -0.5rem;
}

.address {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(51, 153, 255, 0.2);
}

.legal-links {
	text-align: center;
	padding: 1rem 0;
	margin-top: -1rem;
	font-size: 0.9rem;
}

.legal-links a {
	color: var(--pixel-plush);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.legal-links a:hover {
	opacity: 0.8;
}

.legal-links .separator {
	color: rgba(255, 255, 255, 0.4);
	margin: 0 1rem;
}

/* AI Platform Grid */
.ai-platform-grid,
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.agent-icon {
	font-size: 2.5rem;
	color: var(--pixel-plush);
	margin-bottom: 1.5rem;
	text-shadow: 0 0 15px rgba(60, 207, 252, 0.5);
}

.ability-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.ability-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}

.ability-list li::before {
	content: '\2192'; /* Unicode for right arrow */
	position: absolute;
	left: 0;
	color: var(--pixel-plush);
}

.platform-intro {
	background: linear-gradient(rgba(0, 2, 5, 0.6), rgba(0, 2, 5, 0.6)), url('/assets/images/leasegenius-circuits.jpg');
	background-size: 400px;
	background-repeat: repeat;
	padding: 3rem;
	border-radius: 12px;
	margin-bottom: 3rem;
	border: 1px solid rgba(112, 255, 255, 0.2);
}

/* Add these styles to adjust the spacing */
.platform-intro .intro-text {
	margin-bottom: 1.5rem;  /* Reduce from 3rem to 1.5rem */
}

.platform-intro .intro-text:last-child {
	margin-bottom: 0;  /* Remove bottom margin from last paragraph */
}

.feature-item .agent-description {
	margin-top: 1.5rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* AI Preview Section Styles */
.magical-highlight {
	position: relative;
	overflow: hidden;
	margin: 2rem 0;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(112, 255, 255, 0.2);
	transition: all 0.4s ease;
}

.magical-highlight .magical-content {
	position: relative;
	z-index: 2;
	display: block;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.magical-highlight:hover {
	border-color: var(--pixel-plush);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
				0 0 30px rgba(51, 153, 255, 0.3);
}

.magical-highlight h2 {
	margin-bottom: 1rem;
}

.agent-icons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin: 2rem 0;
}

.agent-icons span {
	font-size: 2rem;
	text-shadow: 0 0 15px rgba(60, 207, 252, 0.5);
}

.explore-button {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.75rem 2rem;
	border: 1px solid var(--pixel-plush);
	border-radius: 4px;
	background: rgba(112, 255, 255, 0.1);
	color: #fff;
	transition: all 0.3s ease;
}

.magical-highlight:hover .explore-button {
	background: rgba(112, 255, 255, 0.2);
	transform: translateY(-2px);
}

.ai-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ai-preview-card {
	background: linear-gradient(180deg, #25004e, #000018);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid rgba(51, 153, 255, 0.1);
	transition: all 0.4s ease;
}

.ai-preview-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 234, 255, 0.4);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
				0 0 30px rgba(51, 153, 255, 0.3);
}

.ai-preview-card .ai-icon {
	font-size: 2.5rem;
	color: var(--pixel-plush);
	margin-bottom: 1.5rem;
	text-shadow: 0 0 15px rgba(60, 207, 252, 0.5);
}

.ai-preview-card h3 {
	margin-bottom: 1rem;
}

.ai-preview-card p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0;
}

#contact-us {
	.form-group input:not([type="radio"]):not([type="checkbox"]),
	.form-group select,
	.form-group textarea {
		border: 2px solid var(--pixel-plush);
		border-radius: 4px;
		padding: 8px 12px;
		width: 100%;
		font-size: 1em;
		transition: all 0.3s ease;
		background: rgba(255, 255, 255, 0.95);  /* Slightly transparent white */
		color: var(--quantum-shadow);
		box-shadow: 0 0 0 2px rgba(255, 82, 161, 0.1);
	}

	.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
	.form-group select:focus,
	.form-group textarea:focus {
		outline: none;
		box-shadow: 0 0 0 4px rgba(255, 82, 161, 0.3);
		border-color: var(--pixel-plush);
		background: white;  /* Full white on focus */
	}


	form.was-validated {
		.form-group input:not([type="radio"]):not([type="checkbox"]):invalid,
		.form-group select:invalid,
		.form-group textarea:invalid {
			border-color: #ff3333;
			box-shadow: 0 0 0 2px rgba(255, 51, 51, 0.2);
		}
	}

	.form-group input::placeholder,
	.form-group textarea::placeholder {
		color: #888;
	}

	.form-group select {
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FF52A1' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 12px center;
		padding-right: 32px;
	}

	.form-group label {
		color: white;
		margin-bottom: 5px;
		display: block;
	}
}

#terms-and-conditions,
#privacy-policy {
	main {
		background: var(--deep-blue-dark);

		.content {
			line-height: 1.6;
			color: white;
		}

		h1, h2 {
			color: var(--pixel-plush);
			text-align: left;
		}

		h2 {
			margin-top: 30px;
			font-size: 1.2em;
		}

		p {
			margin: 15px 0;
			text-align: justify;
		}

		ul {
			margin: 15px 0;
			padding-left: 20px;
		}

		.legal-notice {
			font-weight: bold;
			margin: 20px 0;
			color: var(--pixel-plush);
		}

		.legal-links {
			text-align: center;
			padding: 20px 0;
		}

		.legal-links a {
			color: white;
			text-decoration: none;
		}

		.legal-links .separator {
			color: white;
			margin: 0 10px;
		}
	}
}



@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

@media (min-aspect-ratio: 16/9) {
	#bgVideo {
		height: 100%;
		width: auto;
	}
}

@media (max-aspect-ratio: 16/9) {
	#bgVideo {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 1200px) {
	.logo-overlay .centered-logo {
		max-width: 500px;
		width: 70%;
	}
}

@media (max-width: 990px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		width: 100%;
		white-space: normal;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	section {
		padding: 2rem 1rem;
	}

	.nav-content {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}

	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.expo-grid {
		grid-template-columns: 1fr;
	}

	.expo-subtitle {
		font-size: 1.5rem;
	}

	.expo-logo {
		max-width: 200px;
	}


	.logo-overlay .centered-logo {
		max-width: 400px;
		width: 80%;
	}

	.typewriter-container {
		padding: 0 1rem;
	}

	.form-row,
	.form-row.of-3 {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 480px) {
	#bgVideo {
		width: auto;
		height: 100%;
		min-width: 100%;
		object-position: 50% 50%;
	}

	.centered-logo {
		max-width: 200px;
		width: 70%;
	}

	.logo-overlay .centered-logo {
		max-width: 300px;
		width: 90%;
	}

	.hero-content .cta-button {
		padding: 0.7rem 1.2rem;
		font-size: 0.8rem;
		letter-spacing: 0.5px;
	}
}
