:root {
	/* More sophisticated color palette for A/E professionals */
	--primary-black: #0a0a0a;
	--secondary-black: #1a1a1a;
	--text-black: #2c2c2c;
	--brand-yellow: #f4c430; /* More sophisticated gold */
	--hover-yellow: #e6b800;
	--accent-blue: #2563eb; /* Professional blue accent */
	--light-gray: #f8f9fa;
	--medium-gray: #6c757d;
	--text-gray: #495057;
	--white: #ffffff;
	--border-subtle: rgba(244, 196, 48, 0.15);
}

html {
	background-size: 50px 50px;
	background-repeat: repeat;
	background-blend-mode: overlay;
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400; /* Reduced from 700 for better readability */
	font-style: normal;
	font-variation-settings: 'wdth' 100;

	margin: 0;
	padding: 0;
	background-color: var(--primary-black);
	color: var(--white);
	transition: background-position 6s ease-in-out, color 4s ease-in-out;
	cursor: default;
}

body.move {
	background-position: 100% 100%;
	color: var(--white);
}
.wrapper {
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	display: flex;
}

.header-wrapper {
	height: 9.5vh;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	z-index: 100;
	overflow: hidden;
	transition: all 0.11s ease-in-out;
	background: linear-gradient(
		to bottom,
		var(--primary-black),
		var(--primary-black),
		var(--primary-black),
		rgba(10, 10, 10, 0.8)
	);
}

.logo-wrapper {
	min-width: 15vw;
	text-align: center;
}
.title {
	display: flex;
	justify-content: center;
	font-family: 'Noto Sans', sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
	color: var(--brand-yellow);
}
.nav-header {
	flex-basis: 100%;
	height: 9.5vh;
	align-self: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	margin-right: 5vw;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
	transform: translateX(30px);
}

.nav-header.visible {
	opacity: 1;
	transform: translateX(0);
}

#logo {
	height: 6.5vh;
	width: auto;
	box-shadow: 0 4px 12px rgba(244, 196, 48, 0.25); /* Reduced intensity */
	border-radius: 6px; /* Slightly less rounded */
	transition: all 0.3s ease;
	/* Add subtle border */
	border: 1px solid rgba(244, 196, 48, 0.2);
}

#logo:hover {
	box-shadow: 0 6px 16px rgba(244, 196, 48, 0.35);
	transform: scale(1.02); /* Subtle scale on hover */
}

#img-twist-circle {
	width: auto;
	max-height: 60vh;
}

#img-landing {
	width: auto;
	max-height: 75vh;
}

.top-menu {
	width: 25vw;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.menu-item {
	padding-bottom: 2px;
	padding-left: 3px;
	padding-right: 3px;
	border-radius: 5px;
	cursor: pointer;
	color: var(--brand-yellow);
	border-bottom: solid 2px rgba(0, 0, 0, 0);
	transition: border-bottom 0.2s ease-out, color 0.2s ease-out;
}

.menu-item:hover {
	border-bottom: solid 2px var(--brand-yellow);
	color: var(--hover-yellow);
}

.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	text-align: left;
	position: relative;
	background: linear-gradient(
		135deg,
		var(--primary-black) 0%,
		var(--secondary-black) 50%,
		var(--primary-black) 100%
	);
	opacity: 0;
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
	transform: translateY(30px);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			45deg,
			transparent 49%,
			rgba(244, 196, 48, 0.1) 50%,
			transparent 51%
		),
		radial-gradient(
			circle at 20% 80%,
			rgba(244, 196, 48, 0.03) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(244, 196, 48, 0.02) 0%,
			transparent 50%
		);
	background-size: 40px 40px, 100% 100%, 100% 100%;
	pointer-events: none;
}

.hero-wrapper {
	display: flex;
	padding-left: 5vw;
	padding-right: 5vw;
	padding-top: 80px;
	padding-bottom: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #ffffff;
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-wrapper .highlight {
	font-weight: bold;
	color: #f7d358;

	text-shadow: 0 4px 10px rgba(244, 196, 48, 0.3);
}

.hero.visible {
	opacity: 1;
	transform: translateY(0);
}

.hero h1 {
	font-size: 3.2rem;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
	/* Add text shadow for better readability */
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
	font-size: 1.3rem;
	max-width: 650px;
	font-weight: 400;
	color: #e0e0e0; /* Lighter gray for better contrast */
	line-height: 1.6;
	margin-bottom: 30px;
}
.cta-button {
	cursor: pointer;
	background: linear-gradient(135deg, var(--brand-yellow) 0%, #f7d358 100%);
	color: var(--primary-black);
	padding: 16px 32px; /* Refined padding */
	text-decoration: none;
	font-size: 1.1rem;
	margin-top: 20px;
	display: inline-block;
	border-radius: 8px;
	border: 1px solid rgba(244, 196, 48, 0.3); /* Subtle border */
	font-weight: 600; /* Reduced from 700 */
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
	letter-spacing: 0.025em; /* Reduced letter spacing */
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	background: linear-gradient(135deg, var(--hover-yellow) 0%, #f0c814 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.trust-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	gap: 20px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 1.1rem;
	color: #999999;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.95),
		rgba(10, 10, 10, 0.8)
	);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--border-subtle);
}

.tagline-rotator {
	position: relative;
	height: 30px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	/* width: fit-content; */
	/* max-width: 800px; */
	min-width: 100vw;
	margin: 0 auto;
	/* border: solid 1px red; */
}

.tagline {
	position: absolute;
	opacity: 0;
	transition: all 0.8s ease-in-out;
	white-space: nowrap;
	font-size: 1.1rem;
	/* color: #cccccc; */
	color: #f7d258b9;
	font-weight: 600;
	text-align: center;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.tagline.active {
	opacity: 1;
	transform: translateX(-50%) translateY(-50%);
}

.about {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	/* margin-left: 5vw; */
	/* margin-right: 5vw; */
	background-color: var(--light-gray);
	color: var(--text-black);
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
	position: relative;
	overflow: hidden;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			45deg,
			transparent 49%,
			rgba(37, 99, 235, 0.1) 50%,
			transparent 51%
		),
		linear-gradient(
			-45deg,
			transparent 49%,
			rgba(37, 99, 235, 0.1) 50%,
			transparent 51%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(37, 99, 235, 0.05) 0%,
			transparent 40%
		);

	background-size: 40px 40px, 40px 40px, 100% 100%;
	pointer-events: none;
	z-index: 1;
}

.about .text {
	position: relative;
	z-index: 2;
}

.product {
	background-color: var(--primary-black);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	min-height: 100vh;
	padding-left: 5vw;
	padding-right: 5vw;
	color: var(--white);
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

/* New Pilot Section Styles */
.pilot-section {
	background-color: var(--primary-black);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 80px 5vw 60px 5vw;
	color: var(--white);
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
	position: relative;
	overflow: hidden;
}

.pilot-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			-135deg,
			transparent 85%,
			rgba(244, 196, 48, 0.15) 86%,
			transparent 87%
		),
		linear-gradient(
			-45deg,
			transparent 85%,
			rgba(244, 196, 48, 0.15) 86%,
			transparent 87%
		),
		radial-gradient(
			ellipse at 85% 15%,
			rgba(244, 196, 48, 0.08) 0%,
			transparent 60%
		);
	background-size: 40px 40px, 40px 40px, 100% 100%;
	pointer-events: none;
	z-index: 1;
}

.pilot-container {
	position: relative;
	z-index: 2;
}

.pilot-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.pilot-container {
	max-width: 1200px;
	width: 100%;
	text-align: center;
}

.pilot-container h1 {
	margin: 0 0 60px 0;
	font-size: 4rem;
	color: var(--brand-yellow);
	font-weight: 800;
}

.pilot-section-subtitle {
	font-size: 1.6rem;
	font-weight: 400;
	color: #cccccc;
	margin-bottom: 40px;
	max-width: 60vw;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	line-height: 1.6;
}

.pilot-content {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-bottom: 60px;
}

.pilot-snapshot h2,
.pilot-process h2,
.pilot-deliverables h2 {
	font-size: 2.5rem;
	color: var(--brand-yellow);
	margin: 0 0 10px 0;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.pilot-subtitle {
	font-size: 1.4rem;
	color: #cccccc;
	margin-bottom: 40px;
	font-weight: 400;
}

.snapshot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.snapshot-item {
	background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: 15px;
	padding: 30px 25px;
	border-left: 4px solid var(--brand-yellow);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.snapshot-item:hover {
	transform: translateY(-2px); /* Reduced from -5px for subtlety */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.snapshot-icon {
	font-size: 2.5rem;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand-yellow), #f7d358);
	border-radius: 50%;
	/* margin-bottom: 15px; */
	color: var(--primary-black);
}

.snapshot-content h3 {
	font-size: 1.3rem;
	color: var(--text-black);
	margin: 0 0 10px 0;
	font-weight: 600;
}

.snapshot-content p {
	font-size: 1.1rem;
	color: var(--text-gray);
	margin: 0;
	line-height: 1.6;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 800px;
	margin: 0 auto;
}

.process-step {
	background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: 15px;
	padding: 30px;
	border-left: 4px solid var(--brand-yellow);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	gap: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
}

.process-step:hover {
	transform: translateX(8px); /* Reduced from 10px for subtlety */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.step-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--brand-yellow);
	background: linear-gradient(135deg, var(--text-black), #404040);
	border: 3px solid var(--brand-yellow);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-content h3 {
	font-size: 1.4rem;
	color: var(--text-black);
	margin: 0 0 8px 0;
	font-weight: 600;
}

.step-content p {
	font-size: 1.1rem;
	color: var(--text-gray);
	margin: 0;
	line-height: 1.6;
}

.deliverables-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 700px;
	margin: 0 auto;
}

.deliverable-item {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 2px solid var(--brand-yellow);
	border-radius: 12px;
	padding: 25px 30px;
	border-left: 6px solid var(--brand-yellow);
	box-shadow: 0 8px 16px -4px rgba(244, 196, 48, 0.15),
		0 4px 8px -2px rgba(244, 196, 48, 0.1);
	display: flex;
	align-items: center;
	gap: 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.deliverable-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			45deg,
			transparent 48%,
			rgba(44, 44, 44, 0.08) 50%,
			transparent 52%
		),
		linear-gradient(
			-45deg,
			transparent 48%,
			rgba(44, 44, 44, 0.08) 50%,
			transparent 52%
		),
		radial-gradient(
			ellipse at 85% 15%,
			rgba(37, 99, 235, 0.06) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at 15% 85%,
			rgba(37, 99, 235, 0.04) 0%,
			transparent 40%
		);
	background-size: 16px 16px, 16px 16px, 100% 100%, 100% 100%;
	border-radius: 12px;
	pointer-events: none;
	z-index: 1;
}

.deliverable-item:hover {
	transform: translateX(8px);
	box-shadow: 0 12px 24px -4px rgba(244, 196, 48, 0.25),
		0 8px 16px -4px rgba(244, 196, 48, 0.15);
	border-color: var(--hover-yellow);
}

.deliverable-icon {
	font-size: 2rem;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--primary-black),
		var(--secondary-black)
	);
	border: 2px solid var(--brand-yellow);
	border-radius: 12px;
	color: var(--brand-yellow);
	font-weight: 600;
	box-shadow: 0 4px 8px rgba(244, 196, 48, 0.2);
	position: relative;
	z-index: 2;
}

.deliverable-item p {
	font-size: 1.2rem;
	color: var(--text-black);
	margin: 0;
	line-height: 1.6;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

.pilot-cta {
	text-align: center;
	margin-top: 60px;
}

.pilot-cta-button {
	background: linear-gradient(135deg, var(--brand-yellow) 0%, #f7d358 100%);
	color: var(--primary-black);
	padding: 20px 50px;
	border: 1px solid rgba(244, 196, 48, 0.3);
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: 600; /* Reduced from 700 */
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.025em; /* Reduced letter spacing */
	position: relative;
	overflow: hidden;
}

.pilot-cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.pilot-cta-button:hover::before {
	left: 100%;
}

.pilot-cta-button:hover {
	background: linear-gradient(135deg, var(--hover-yellow) 0%, #f0c814 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

/* Mobile Responsive Styles for Pilot Section */
@media (max-width: 768px) {
	.pilot-container h1 {
		font-size: 2.8rem;
		margin-bottom: 40px;
	}

	.pilot-snapshot h2,
	.pilot-process h2,
	.pilot-deliverables h2 {
		font-size: 1.8rem;
	}

	.pilot-subtitle {
		font-size: 1.1rem;
		margin-bottom: 30px;
	}

	.pilot-content {
		gap: 50px;
	}

	.snapshot-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.snapshot-item,
	.process-step,
	.deliverable-item {
		padding: 20px;
		flex-direction: column;
		text-align: center;
		gap: 15px;
		align-items: center;
	}

	.deliverable-item {
		/* Maintain professional styling on mobile */
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		border: 2px solid var(--brand-yellow);
		border-left: 6px solid var(--brand-yellow);
		padding: 25px 20px;
		border-radius: 12px;
		overflow: hidden;
	}

	.deliverable-item:hover {
		transform: translateY(-3px); /* Changed from translateX for mobile */
		border-color: var(--hover-yellow);
	}

	.step-number {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}

	.pilot-cta-button {
		padding: 16px 40px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.pilot-container h1 {
		font-size: 2.2rem;
	}

	.pilot-snapshot h2,
	.pilot-process h2,
	.pilot-deliverables h2 {
		font-size: 1.5rem;
	}

	.pilot-subtitle {
		font-size: 1rem;
	}

	.snapshot-content h3,
	.step-content h3 {
		font-size: 1.1rem;
	}

	.snapshot-content p,
	.step-content p,
	.deliverable-item p {
		font-size: 1rem;
	}

	.deliverable-item p {
		/* Maintain professional appearance on smaller screens */
		font-weight: 600;
		color: var(--text-black);
	}
}

.contact-wrapper {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.product.visible,
.about.visible,
.contact-wrapper.visible {
	opacity: 1;
	transform: translateY(0);
}

.about {
	align-content: right;
}

.product {
	gap: 2vw;
}

.product h1 {
	margin: 0;
	font-size: 5rem;
	color: var(--brand-yellow);
}

.about h2 {
	font-size: 5rem;
	color: var(--text-black);
}

.about p,
.product p,
.contact p {
	/* max-width: 50vw; */
	text-align: left;
	font-size: 2rem;
}

.about .large-p,
.product .large-p {
	font-size: 4rem;
	font-weight: bold;
	color: var(--text-black);
}

.about .text {
	max-width: 80vw;
	text-align: center;
}

.about .subtitle {
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--medium-gray);
	margin-bottom: 40px;
	max-width: 60vw;
	margin-left: auto;
	margin-right: auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 80vw;
	margin: 0 auto;
	padding: 20px 0;
}

.benefit-card {
	background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: 15px;
	padding: 30px 25px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 4px solid var(--brand-yellow);
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.benefit-card:hover {
	transform: translateY(-2px); /* Reduced from -5px for subtlety */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
	font-size: 2.5rem;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--text-black), #777777);
	border-radius: 50%;
	margin-bottom: 15px;
	color: var(--white);
}

.benefit-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-black);
	margin: 0 0 10px 0;
	text-align: left;
}

.benefit-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-gray);
	margin: 0;
	font-weight: 400;
}

.about ul {
	max-width: 30vw;
	padding-left: 30px;
	margin-top: 30px;
	list-style-position: outside;
}

.about li {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 20px;
	text-align: left;
	font-weight: 500;
	padding-left: 10px;
	color: var(--text-black);
}

.product-card-wrap {
	min-width: 100%;
	margin-bottom: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 2vw;
}

.product-card {
	color: var(--text-black);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	max-width: 27vw;
	border-radius: 0px 70px 0px 70px;
	background-color: var(--brand-yellow);
	padding: 3vw;
	font-size: 2rem;
}

.product-description {
	font-weight: 500;
	margin-bottom: 15px;
	margin-top: 0px;
	color: var(--text-black);
}
.product-name {
	color: var(--primary-black);
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	text-align: right;
	font-size: 3rem;
	font-weight: bold;
	margin: 0px;
}

.product-name-span {
	font-size: 3rem;
}

.faq-section {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	min-height: 100vh;
	padding: 80px 5vw 60px 5vw;
	background-color: var(--light-gray);
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
	position: relative;
	overflow: hidden;
}

.faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			0deg,
			transparent 48.5%,
			rgba(37, 99, 235, 0.1) 50%,
			transparent 51.5%
		),
		linear-gradient(
			-45deg,
			transparent 49.5%,
			rgba(37, 99, 235, 0.1) 50%,
			transparent 50.5%
		),
		linear-gradient(
			90deg,
			transparent 49.8%,
			rgba(44, 44, 44, 0) 50%,
			transparent 50.2%
		),
		radial-gradient(
			circle at 25% 75%,
			rgba(37, 99, 235, 0.05) 0%,
			transparent 50%
		);
	background-size: 30px 30px, 50px 50px, 35px 35px, 100% 100%;
	pointer-events: none;
	z-index: 1;
}

.faq-section h1,
.faq-container,
.faq-cta {
	position: relative;
	z-index: 2;
}

.faq-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.faq-section h1 {
	margin: 0 0 20px 0;
	font-size: 4rem;
	color: var(--text-black);
	text-align: center;
	font-weight: 800;
}

.faq-subtitle {
	font-size: 1.3rem;
	color: #666666;
	text-align: center;
	margin-bottom: 50px;
	max-width: 600px;
	line-height: 1.6;
	font-weight: 400;
}

.faq-container {
	max-width: 800px;
	width: 100%;
}

.faq-item {
	background: var(--white);
	border-radius: 12px;
	margin-bottom: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid var(--brand-yellow);
	overflow: hidden;
}

.faq-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.faq-question {
	padding: 24px 28px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--white);
	transition: background-color 0.3s ease;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-black);
}

.faq-question:hover {
	background-color: #fafafa;
}

.faq-question.active {
	background-color: #fff9e6;
	color: var(--primary-black);
}

.faq-icon {
	font-size: 1.2rem;
	color: var(--brand-yellow);
	transition: transform 0.3s ease;
	font-weight: bold;
}

.faq-icon.active {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 28px;
	background: var(--white);
}

.faq-answer.active {
	max-height: 200px;
	padding: 0 28px 24px 28px;
}

.faq-answer p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555555;
	font-weight: 400;
}

/* LinkedIn Link Styles */
.linkedin-link {
	color: #0077b5; /* LinkedIn blue */
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
}

.linkedin-link:hover {
	color: #005885;
	border-bottom: 1px solid #0077b5;
}

.linkedin-icon {
	font-size: 0.9em;
	margin-left: 2px;
}

.faq-answer a {
	color: inherit;
}

.faq-cta {
	text-align: center;
	margin-top: 60px;
}

.faq-cta h3 {
	font-size: 1.5rem;
	color: var(--text-black);
	margin-bottom: 15px;
	font-weight: 600;
}

.faq-cta p {
	font-size: 1.1rem;
	color: #666666;
	margin-bottom: 25px;
	line-height: 1.6;
}

.faq-cta-button {
	background: linear-gradient(135deg, var(--brand-yellow) 0%, #f7d358 100%);
	color: var(--primary-black);
	padding: 16px 32px;
	border: 1px solid rgba(244, 196, 48, 0.3);
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
	text-decoration: none;
	display: inline-block;
}

.faq-cta-button:hover {
	background: linear-gradient(135deg, var(--hover-yellow) 0%, #f0c814 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.footer {
	text-align: center;
	padding: 20px;
	background-color: var(--primary-black);
	color: var(--medium-gray);
}

/* @media (max-width: 920px) {
} */

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
	.header-wrapper {
		padding: 0 4vw;
	}

	.nav-header {
		margin-right: 0;
	}

	.top-menu {
		width: 30vw;
		font-size: 0.9rem;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.hero p {
		font-size: 1.2rem;
		max-width: 80vw;
	}

	.about .text {
		max-width: 90vw;
	}

	.about .large-p {
		font-size: 3.5rem;
	}

	.benefits-grid {
		max-width: 90vw;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.pilot-container {
		padding: 0 2vw;
	}

	.faq-section {
		padding: 80px 4vw 60px 4vw;
	}
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.header-wrapper {
		height: 8vh;
		padding: 0;
	}

	.logo-wrapper {
		min-width: auto;
		padding-left: 8px;
	}

	.title {
		font-size: 1.5rem;
		padding-left: 8px;
	}

	.nav-header {
		margin-right: 0;
	}

	.top-menu {
		display: none;
	}

	.hamburger-menu {
		display: flex;
		align-items: center;
		z-index: 1001;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		cursor: pointer;
		width: 30px;
		height: 24px;
		justify-content: space-between;
		transition: all 0.3s ease;
		padding: 8px;
		border-radius: 4px;
		min-height: 44px; /* iOS touch target minimum */
		min-width: 44px;
		align-items: center;
	}

	.hamburger span {
		display: block;
		height: 3px;
		width: 100%;
		background-color: var(--brand-yellow);
		border-radius: 2px;
		transition: all 0.3s ease;
		transform-origin: center;
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(10px, 19px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(10px, -19px);
	}

	.mobile-menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.mobile-menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.mobile-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		height: 100vh;
		background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
		z-index: 1000;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 30px;
		transition: left 0.3s ease;
		backdrop-filter: blur(10px);
		border-right: 1px solid rgba(255, 211, 0, 0.2);
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
	}

	.mobile-menu.active {
		left: 0;
	}

	.mobile-menu-item {
		color: var(--brand-yellow);
		font-size: 1.8rem;
		font-weight: 600;
		cursor: pointer;
		padding: 15px 30px;
		border-radius: 8px;
		transition: all 0.3s ease;
		text-align: center;
		border: 2px solid transparent;
		min-height: 44px; /* iOS touch target minimum */
		display: flex;
		align-items: center;
		justify-content: center;
		width: 80%;
	}

	.mobile-menu-item:hover,
	.mobile-menu-item:focus {
		color: var(--hover-yellow);
		border: 2px solid var(--brand-yellow);
		background: rgba(255, 211, 0, 0.1);
		outline: none;
	}

	.hero h1 {
		font-size: 2.2rem;
		line-height: 1.3;
	}

	.hero p {
		font-size: 1.1rem;
		max-width: 90vw;
	}

	.hero-wrapper {
		padding-left: 4vw;
		padding-right: 4vw;
		padding-top: 60px;
	}

	.cta-button {
		padding: 16px 32px;
		font-size: 1rem;
		min-height: 44px; /* iOS touch target minimum */
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.faq-cta-button,
	.pilot-cta-button {
		min-height: 44px; /* iOS touch target minimum */
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.trust-bar {
		padding-top: 15px;
		padding-bottom: 15px;
		font-size: 1rem;
	}

	.tagline {
		font-size: 0.9rem;
	}

	.about {
		padding: 80px 4vw 60px 4vw;
	}

	.about .text {
		max-width: 95vw;
	}

	.about .large-p {
		font-size: 2.8rem;
	}

	.about .subtitle {
		font-size: 1.3rem;
		max-width: 90vw;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		max-width: 95vw;
		gap: 20px;
	}

	.benefit-card {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		padding: 25px 20px;
	}

	.pilot-section {
		padding: 80px 4vw 60px 4vw;
	}

	.pilot-cta {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 40px;
	}

	.faq-section {
		padding: 60px 4vw 40px 4vw;
	}

	.faq-cta {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 40px;
	}

	.faq-section h1 {
		font-size: 2.8rem;
	}

	.faq-subtitle {
		font-size: 1.1rem;
		margin-bottom: 40px;
	}

	.faq-question {
		padding: 20px 20px;
		font-size: 1.1rem;
	}

	.faq-answer {
		padding: 0 20px;
	}

	.faq-answer.active {
		padding: 0 20px 20px 20px;
	}

	.faq-answer p {
		font-size: 1rem;
	}
}

/* Hide hamburger menu on desktop */
.hamburger-menu,
.mobile-menu,
.mobile-menu-overlay {
	display: none;
}

@media (max-width: 768px) {
	.mobile-menu-overlay,
	.mobile-menu {
		display: block;
	}

	.hamburger-menu {
		display: flex;
	}
}

@media (max-width: 480px) {
	.header-wrapper {
		height: 6.5vh;
		padding: 0;
	}

	.title {
		font-size: 1.2rem;
		padding-left: 8px;
	}

	#logo {
		height: 5vh;
	}

	.mobile-menu-item {
		font-size: 1.5rem;
		padding: 12px 25px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.hero-wrapper {
		padding-left: 3vw;
		padding-right: 3vw;
		padding-bottom: 80px;
	}

	.about .large-p {
		font-size: 2.2rem;
	}

	.about .subtitle {
		font-size: 1.1rem;
	}

	.pilot-cta {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 30px;
	}

	.pilot-cta-button {
		width: 90%;
		max-width: 280px;
		text-align: center;
	}

	.faq-cta {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 30px;
	}

	.faq-cta-button {
		width: 90%;
		max-width: 280px;
		text-align: center;
	}

	.faq-section h1 {
		font-size: 2.2rem;
	}

	.faq-question {
		padding: 18px 16px;
		font-size: 1rem;
	}

	.faq-answer {
		padding: 0 16px;
	}

	.faq-answer.active {
		padding: 0 16px 18px 16px;
	}

	.tagline {
		font-size: 0.8rem;
	}
}

/* Demo Form Popup Styles */
.demo-form-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	padding: 20px;
	box-sizing: border-box;
}

.demo-form-container {
	background-color: var(--secondary-black);
	border-radius: 12px;
	padding: 0;
	max-width: 480px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--border-subtle);
}

.demo-form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 28px;
	border-bottom: 1px solid var(--border-subtle);
}

.demo-form-header h2 {
	margin: 0;
	color: var(--brand-yellow);
	font-size: 1.4rem;
	font-weight: 600;
}

.demo-form-close {
	background: none;
	border: none;
	color: var(--medium-gray);
	font-size: 1.8rem;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.demo-form-close:hover {
	color: var(--white);
	background-color: rgba(255, 255, 255, 0.1);
}

.demo-form {
	padding: 28px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	color: var(--white);
	font-weight: 500;
	font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--white);
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--brand-yellow);
	background-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--medium-gray);
}

.form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4c430' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
}

.form-group select option {
	background-color: var(--secondary-black);
	color: var(--white);
}

.form-group textarea {
	resize: vertical;
	min-height: 68px;
	max-height: 100px;
}

.demo-form-submit {
	width: 100%;
	background: linear-gradient(135deg, var(--brand-yellow) 0%, #f7d358 100%);
	color: var(--primary-black);
	padding: 14px 28px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
	position: relative;
	overflow: hidden;
}

.demo-form-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.demo-form-submit:hover::before {
	left: 100%;
}

.demo-form-submit:hover {
	background: linear-gradient(135deg, var(--hover-yellow) 0%, #f0c814 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.demo-form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.demo-form-submit:disabled:hover {
	background: linear-gradient(135deg, var(--brand-yellow) 0%, #f7d358 100%);
	transform: none;
	box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

/* Success button state */
.demo-form-submit.success {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
	color: white !important;
	animation: successPulse 2s ease-in-out infinite;
}

.demo-form-submit.success:hover {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
	transform: none !important;
	box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4) !important;
}

@keyframes successPulse {
	0%,
	100% {
		box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
	}
	50% {
		box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
	}
}

/* Form status messages */
.form-status {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
	animation: slideIn 0.3s ease-in-out;
}

.form-status.success {
	background-color: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #4ade80;
}

.form-status.error {
	background-color: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #f87171;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsiveness for demo form */
@media (max-width: 768px) {
	.demo-form-overlay {
		padding: 8px;
	}

	.demo-form-container {
		max-height: 90vh;
	}

	.demo-form-header {
		padding: 16px 20px;
	}

	.demo-form {
		padding: 20px;
	}

	.form-group {
		margin-bottom: 16px;
	}

	.form-group label {
		font-size: 0.85rem;
		margin-bottom: 5px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 9px 12px;
		font-size: 0.85rem;
	}

	.demo-form-submit {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}

/* ===== ADMIN DASHBOARD STYLES ===== */

/* Admin Login */
.admin-login-wrapper {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-black);
	padding: 20px;
}

.admin-login-container {
	background: var(--secondary-black);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 40px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-login-header {
	text-align: center;
	margin-bottom: 30px;
}

.admin-login-header h1 {
	color: var(--brand-yellow);
	font-size: 2rem;
	margin: 0 0 10px 0;
	font-weight: 900;
}

.admin-login-header p {
	color: var(--medium-gray);
	margin: 0;
	font-size: 0.9rem;
}

.admin-login-form .form-group {
	margin-bottom: 20px;
}

.admin-login-form .form-group label {
	display: block;
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.admin-login-form .form-group input {
	width: 100%;
	padding: 12px 16px;
	background: var(--primary-black);
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	color: var(--white);
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
}

.admin-login-form .form-group input:focus {
	outline: none;
	border-color: var(--brand-yellow);
	box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.admin-login-submit {
	width: 100%;
	padding: 14px 20px;
	background: var(--brand-yellow);
	color: var(--primary-black);
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.admin-login-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.admin-login-submit:hover::before {
	left: 100%;
}

.admin-login-submit:hover {
	background: var(--hover-yellow);
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
}

.admin-login-submit:disabled {
	background: var(--medium-gray);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.admin-error-message {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #ef4444;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	text-align: center;
}

/* Admin Dashboard */
.admin-dashboard {
	min-height: 100vh;
	background: var(--primary-black);
	color: var(--white);
}

.admin-header {
	background: var(--secondary-black);
	border-bottom: 1px solid var(--border-subtle);
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 100;
}

.admin-title h1 {
	color: var(--brand-yellow);
	font-size: 1.8rem;
	margin: 0 0 5px 0;
	font-weight: 900;
}

.admin-title p {
	color: var(--medium-gray);
	margin: 0;
	font-size: 0.9rem;
}

.logout-btn {
	background: transparent;
	border: 1px solid var(--medium-gray);
	color: var(--medium-gray);
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.logout-btn:hover {
	border-color: var(--brand-yellow);
	color: var(--brand-yellow);
}

.admin-content {
	padding: 40px;
}

/* Inquiry List */
.inquiry-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.inquiry-list-header h2 {
	color: var(--white);
	font-size: 1.5rem;
	margin: 0;
	font-weight: 700;
}

.refresh-btn {
	background: var(--brand-yellow);
	border: none;
	color: var(--primary-black);
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.refresh-btn:hover {
	background: var(--hover-yellow);
	transform: scale(1.05);
}

.inquiry-controls {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
	padding: 20px;
	background: var(--secondary-black);
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
}

.filter-controls,
.sort-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.filter-controls label,
.sort-controls label {
	color: var(--white);
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
}

.filter-controls select,
.sort-controls select {
	background: var(--primary-black);
	border: 1px solid var(--border-subtle);
	color: var(--white);
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.9rem;
	cursor: pointer;
}

.filter-controls select:focus,
.sort-controls select:focus {
	outline: none;
	border-color: var(--brand-yellow);
}

/* Inquiry Grid */
.inquiries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 20px;
}

.inquiry-card {
	background: var(--secondary-black);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
}

.inquiry-card:hover {
	border-color: var(--brand-yellow);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(244, 196, 48, 0.1);
}

.inquiry-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-subtle);
}

.inquiry-meta h3 {
	color: var(--white);
	margin: 0 0 5px 0;
	font-size: 1.1rem;
	font-weight: 700;
}

.inquiry-date {
	color: var(--medium-gray);
	font-size: 0.8rem;
}

.inquiry-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inquiry-status {
	background: var(--medium-gray);
	color: var(--white);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.inquiry-status:hover {
	transform: scale(1.05);
}

.delete-btn {
	background: transparent;
	border: none;
	color: var(--medium-gray);
	cursor: pointer;
	font-size: 1.2rem;
	padding: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.delete-btn:hover {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.1);
}

/* Status Edit Controls */
.status-edit-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.status-select {
	background: var(--primary-black);
	border: 1px solid var(--border-subtle);
	color: var(--white);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
}

.save-btn,
.cancel-btn {
	background: transparent;
	border: 1px solid;
	color: var(--brand-yellow);
	border-color: var(--brand-yellow);
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.save-btn:hover {
	background: var(--brand-yellow);
	color: var(--primary-black);
}

.cancel-btn {
	color: var(--medium-gray);
	border-color: var(--medium-gray);
}

.cancel-btn:hover {
	background: var(--medium-gray);
	color: var(--primary-black);
}

/* Inquiry Details */
.inquiry-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.inquiry-field {
	display: flex;
	gap: 10px;
}

.inquiry-field label {
	color: var(--medium-gray);
	font-size: 0.85rem;
	font-weight: 600;
	min-width: 80px;
}

.inquiry-field span,
.inquiry-field p {
	color: var(--white);
	font-size: 0.9rem;
	margin: 0;
	flex: 1;
	word-wrap: break-word;
	word-break: break-word;
	overflow-wrap: break-word;
}

.message-field {
	flex-direction: column;
	align-items: flex-start;
}

.message-field label {
	margin-bottom: 5px;
}

.message-field p {
	background: var(--primary-black);
	padding: 10px;
	border-radius: 6px;
	border: 1px solid var(--border-subtle);
	line-height: 1.4;
	width: 100%;
	box-sizing: border-box;
	word-wrap: break-word;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.contact-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
}

.contact-type-badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(244, 196, 48, 0.2);
}

/* Loading and Error States */
.inquiry-list-loading,
.inquiry-list-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	text-align: center;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid var(--medium-gray);
	border-top: 3px solid var(--brand-yellow);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.inquiry-list-loading p,
.inquiry-list-error p {
	color: var(--medium-gray);
	font-size: 1.1rem;
	margin: 0;
}

.retry-btn {
	background: var(--brand-yellow);
	color: var(--primary-black);
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	margin-top: 15px;
	transition: all 0.3s ease;
}

.retry-btn:hover {
	background: var(--hover-yellow);
	transform: translateY(-1px);
}

.no-inquiries {
	text-align: center;
	padding: 60px 20px;
}

.no-inquiries p {
	color: var(--medium-gray);
	font-size: 1.1rem;
	margin: 0;
}

/* Mobile Responsiveness for Admin */
@media (max-width: 768px) {
	.admin-header {
		padding: 15px 20px;
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.admin-content {
		padding: 20px;
	}

	.inquiry-controls {
		flex-direction: column;
		gap: 15px;
	}

	.inquiries-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.inquiry-card {
		padding: 15px;
	}

	.inquiry-header {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}

	.inquiry-actions {
		align-self: flex-end;
	}

	.admin-login-container {
		padding: 30px 20px;
	}

	.admin-login-header h1 {
		font-size: 1.6rem;
	}
}
