/* APEXBUILD CONSTRUCTION - Premium Corporate Design System */

:root {
	--bg-main: #0a0e17;
	--bg-surface: #101622;
	--bg-surface-elevated: #161f30;
	--bg-surface-card: rgba(22, 31, 48, 0.85);
	--bg-light-contrast: #f8fafc;
	
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-mid: rgba(255, 255, 255, 0.15);
	--border-accent: rgba(245, 158, 11, 0.35);
	--border-accent-solid: #f59e0b;
	
	--accent-gold: #f59e0b;
	--accent-gold-hover: #d97706;
	--accent-gold-light: #fbbf24;
	--accent-gold-glow: rgba(245, 158, 11, 0.2);
	--accent-orange: #ea580c;
	--accent-cyan: #38bdf8;
	
	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-muted: #94a3b8;
	--text-dim: #64748b;
	
	--font-heading: "Syne", "Plus Jakarta Sans", system-ui, sans-serif;
	--font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, monospace;
	
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 20px;
	
	--shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
	--shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.6);
	--shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.18);
	
	--space-unit: 1rem;
	--header-height: 80px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	color-scheme: dark;
}

body.apex-body {
	background-color: var(--bg-main);
	color: var(--text-primary);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}

/* Precision Grid Background Overlay */
.bg-grid-pattern {
	background-image: 
		linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

/* Typography Utility */
h1, h2, h3, h4, .font-heading {
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.mono-text {
	font-family: var(--font-mono);
	letter-spacing: -0.03em;
}

/* Container */
.apex-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (min-width: 1440px) {
	.apex-container {
		max-width: 1360px;
	}
}

/* Section Common Styling */
.apex-section {
	padding: 6.5rem 0;
	position: relative;
}

@media (max-width: 768px) {
	.apex-section {
		padding: 4.5rem 0;
	}
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.85rem;
	background: rgba(245, 158, 11, 0.08);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: var(--radius-sm);
	color: var(--accent-gold);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 1.25rem;
}

.section-tag::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--accent-gold);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--accent-gold);
}

.section-title {
	font-size: clamp(2rem, 3.8vw, 3.2rem);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 44rem;
	line-height: 1.7;
}

/* TOP ANNOUNCEMENT / CONTACT BAR */
.top-bar {
	background: #070a10;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.8125rem;
	color: var(--text-muted);
	padding: 0.5rem 0;
}

.top-bar .apex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.top-bar-contact {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.top-bar-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
}

.top-bar-item:hover {
	color: var(--accent-gold);
}

.top-bar-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--accent-gold);
	font-weight: 600;
	font-family: var(--font-mono);
	font-size: 0.75rem;
}

/* MAIN NAVIGATION */
.main-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 14, 23, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

.header-scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border-bottom-color: var(--border-mid);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}

.logo-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: #ffffff;
}

.logo-symbol {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #1e293b, #0f172a);
	border: 1px solid var(--accent-gold);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 0 15px var(--accent-gold-glow);
}

.logo-text-group {
	display: flex;
	flex-direction: column;
}

.logo-title {
	font-family: var(--font-heading);
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #ffffff;
	line-height: 1;
}

.logo-title span {
	color: var(--accent-gold);
}

.logo-subtitle {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--text-muted);
	margin-top: 3px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
	color: #ffffff;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--accent-gold);
	transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mobile-menu-btn {
	display: none;
	background: transparent;
	border: 1px solid var(--border-mid);
	color: #fff;
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
}

@media (max-width: 1024px) {
	.nav-links {
		display: none;
	}
	.mobile-menu-btn {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* Mobile Nav Drawer */
.mobile-nav-panel {
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 14, 23, 0.98);
	backdrop-filter: blur(20px);
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 99;
	border-top: 1px solid var(--border-mid);
	animation: fadeIn 0.25s ease;
}

.mobile-nav-panel .nav-link {
	font-size: 1.25rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

/* BUTTONS */
.btn-apex {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.85rem 1.75rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn-apex-primary {
	background: var(--accent-gold);
	color: #0b0f19;
	box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-apex-primary:hover {
	background: #fbbf24;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-apex-outline {
	background: rgba(255, 255, 255, 0.03);
	border-color: var(--border-mid);
	color: #ffffff;
	backdrop-filter: blur(8px);
}

.btn-apex-outline:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-apex-gold-outline {
	background: transparent;
	border-color: var(--accent-gold);
	color: var(--accent-gold);
}

.btn-apex-gold-outline:hover {
	background: rgba(245, 158, 11, 0.1);
	color: #fff;
	border-color: #fbbf24;
}

.btn-sm {
	padding: 0.55rem 1.1rem;
	font-size: 0.85rem;
}

.btn-lg {
	padding: 1.05rem 2.25rem;
	font-size: 1.05rem;
}

/* HERO SECTION */
.hero-section {
	position: relative;
	min-height: calc(90vh - 40px);
	display: flex;
	align-items: center;
	padding: 7rem 0 5.5rem;
	overflow: hidden;
}

.hero-bg-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: 
		radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 50%),
		linear-gradient(135deg, #070a10 0%, #0d1424 50%, #0a0d16 100%);
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: brightness(0.65) contrast(1.2);
	transform: scale(1.02);
	animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
	0% { transform: scale(1.0); }
	100% { transform: scale(1.06); }
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 14, 23, 0.82) 0%,
		rgba(10, 14, 23, 0.65) 40%,
		rgba(10, 14, 23, 0.95) 100%
	);
	z-index: 2;
}

.hero-overlay-radial {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 80% 30%,
		rgba(245, 158, 11, 0.12) 0%,
		transparent 60%
	);
	z-index: 3;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 820px;
}

.hero-badge-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.75rem;
	flex-wrap: wrap;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.95rem;
	background: rgba(16, 22, 34, 0.8);
	border: 1px solid rgba(245, 158, 11, 0.4);
	border-radius: var(--radius-sm);
	color: var(--accent-gold);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	backdrop-filter: blur(10px);
}

.hero-status-dot {
	width: 7px;
	height: 7px;
	background: #10b981;
	border-radius: 50%;
	box-shadow: 0 0 10px #10b981;
}

.hero-headline {
	font-size: clamp(2.5rem, 5.5vw, 4.4rem);
	line-height: 1.08;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	color: #ffffff;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-headline span.accent {
	color: var(--accent-gold);
	display: inline-block;
}

.hero-subheading {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	color: #e2e8f0;
	line-height: 1.65;
	margin-bottom: 2.5rem;
	max-width: 680px;
	font-weight: 400;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

/* Quick Metrics Bar at bottom of Hero */
.hero-metrics-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding: 1.75rem 2rem;
	background: rgba(16, 22, 34, 0.85);
	border: 1px solid var(--border-mid);
	border-radius: var(--radius-md);
	backdrop-filter: blur(16px);
	box-shadow: var(--shadow-elevated);
}

.metric-item {
	border-right: 1px solid var(--border-subtle);
	padding-right: 1rem;
}

.metric-item:last-child {
	border-right: none;
	padding-right: 0;
}

.metric-number {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 0.4rem;
}

.metric-number span {
	color: var(--accent-gold);
}

.metric-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

@media (max-width: 768px) {
	.hero-metrics-bar {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
		padding: 1.25rem;
	}
	.metric-item:nth-child(2) {
		border-right: none;
	}
}

/* ABOUT SECTION */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image-wrapper {
	position: relative;
}

.about-main-img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-mid);
	box-shadow: var(--shadow-elevated);
}

.about-badge-card {
	position: absolute;
	bottom: -25px;
	right: -20px;
	background: var(--bg-surface-elevated);
	border: 1px solid var(--accent-gold);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-gold);
	max-width: 260px;
	backdrop-filter: blur(12px);
}

.about-badge-stat {
	font-family: var(--font-heading);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--accent-gold);
	line-height: 1;
	margin-bottom: 0.35rem;
}

.about-badge-label {
	font-size: 0.85rem;
	color: #ffffff;
	font-weight: 600;
}

.stats-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
}

.stat-box {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-left: 3px solid var(--accent-gold);
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	transition: transform 0.2s, border-color 0.2s;
}

.stat-box:hover {
	transform: translateY(-3px);
	border-color: var(--accent-gold);
}

.stat-box-val {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-box-lbl {
	font-size: 0.85rem;
	color: var(--text-muted);
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.about-badge-card {
		bottom: 15px;
		right: 15px;
	}
}

/* SERVICES SECTION */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

@media (max-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.service-card {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2rem 1.5rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent-gold);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background 0.3s ease;
	border-top-left-radius: var(--radius-md);
	border-top-right-radius: var(--radius-md);
}

.service-card:hover::before {
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
}

.service-icon-box {
	width: 52px;
	height: 52px;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.25);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-gold);
	margin-bottom: 1.5rem;
}

.service-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.85rem;
}

.service-card-desc {
	font-size: 0.925rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.service-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-muted);
}

.service-btn-link {
	background: none;
	border: none;
	color: var(--accent-gold);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0;
	transition: gap 0.2s;
}

.service-btn-link:hover {
	gap: 0.6rem;
	color: #fff;
}

/* EXPERTISE SECTION */
.expertise-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.expertise-item-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.expertise-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	transition: all 0.25s ease;
	cursor: pointer;
}

.expertise-card:hover, .expertise-card.active {
	border-color: var(--accent-gold);
	background: var(--bg-surface-elevated);
	transform: translateX(6px);
}

.expertise-icon-wrapper {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-gold);
	flex-shrink: 0;
}

.expertise-content h4 {
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
	color: #ffffff;
}

.expertise-content p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.expertise-visual-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-mid);
	box-shadow: var(--shadow-elevated);
}

.expertise-visual-img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	display: block;
}

.expertise-overlay-hud {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.7) 60%, transparent 100%);
	padding: 2rem;
	backdrop-filter: blur(8px);
}

@media (max-width: 992px) {
	.expertise-layout {
		grid-template-columns: 1fr;
	}
}

/* PROJECTS SECTION */
.portfolio-filter-row {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.filter-tab {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--text-secondary);
	padding: 0.6rem 1.25rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-tab:hover {
	color: #fff;
	border-color: var(--border-mid);
}

.filter-tab.active {
	background: var(--accent-gold);
	color: #0b0f19;
	border-color: var(--accent-gold);
	font-weight: 700;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 1024px) {
	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.projects-grid {
		grid-template-columns: 1fr;
	}
}

.project-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.project-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-gold);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.project-thumb-box {
	position: relative;
	height: 250px;
	overflow: hidden;
	background: #111;
}

.project-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-thumb-img {
	transform: scale(1.08);
}

.project-badge-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(10, 14, 23, 0.85);
	border: 1px solid rgba(245, 158, 11, 0.4);
	color: var(--accent-gold);
	padding: 0.3rem 0.75rem;
	font-size: 0.75rem;
	font-family: var(--font-mono);
	font-weight: 600;
	border-radius: var(--radius-sm);
	backdrop-filter: blur(8px);
}

.project-location-tag {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background: rgba(0, 0, 0, 0.7);
	color: #e2e8f0;
	padding: 0.25rem 0.65rem;
	font-size: 0.75rem;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.project-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.project-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.6rem;
}

.project-desc {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.55;
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

.project-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.2rem;
	margin-top: auto;
}

.project-spec-item {
	display: flex;
	flex-direction: column;
}

.project-spec-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-muted);
	text-transform: uppercase;
}

.project-spec-value {
	font-size: 0.85rem;
	font-weight: 600;
	color: #fff;
}

/* WHY CHOOSE US */
.why-us-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 900px) {
	.why-us-grid {
		grid-template-columns: 1fr;
	}
}

.why-card {
	background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2.25rem 1.75rem;
	position: relative;
	transition: all 0.3s ease;
}

.why-card:hover {
	border-color: rgba(245, 158, 11, 0.4);
	box-shadow: var(--shadow-gold);
	transform: translateY(-5px);
}

.why-number {
	font-family: var(--font-mono);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-gold);
	opacity: 0.8;
	margin-bottom: 1rem;
}

.why-title {
	font-size: 1.35rem;
	margin-bottom: 0.85rem;
	color: #ffffff;
}

.why-text {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* PROCESS TIMELINE */
.process-steps-container {
	position: relative;
	margin-top: 3.5rem;
}

.process-steps-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	position: relative;
}

.process-line-track {
	position: absolute;
	top: 32px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-gold), rgba(245, 158, 11, 0.2));
	z-index: 1;
}

@media (max-width: 1024px) {
	.process-steps-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.process-line-track {
		display: none;
	}
}

.process-step-item {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

.process-step-node {
	width: 64px;
	height: 64px;
	background: var(--bg-surface-elevated);
	border: 2px solid var(--accent-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--accent-gold);
	margin-bottom: 1.5rem;
	box-shadow: 0 0 20px var(--accent-gold-glow);
	transition: transform 0.25s ease, background 0.25s;
}

.process-step-item:hover .process-step-node {
	transform: scale(1.1);
	background: var(--accent-gold);
	color: #0b0f19;
}

.process-step-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.6rem;
}

.process-step-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* SAFETY & QUALITY SECTION */
.safety-section {
	background: linear-gradient(180deg, #0d131f 0%, #0a0e17 100%);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.safety-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.safety-cert-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.safety-pill-card {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.safety-pill-card .pill-icon {
	color: var(--accent-gold);
}

.safety-pill-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
}

.safety-pill-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.5;
}

@media (max-width: 900px) {
	.safety-grid {
		grid-template-columns: 1fr;
	}
}

/* VALUE PROPOSITION SECTION */
.value-prop-banner {
	background: linear-gradient(135deg, #131b2c 0%, #1c273e 50%, #0e1422 100%);
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: var(--radius-xl);
	padding: 4.5rem 3.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-elevated);
}

.value-prop-banner::after {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.value-prop-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3.5rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.value-pillars {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.value-pillar-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: rgba(10, 14, 23, 0.5);
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
}

.pillar-check {
	color: var(--accent-gold);
	flex-shrink: 0;
	margin-top: 3px;
}

@media (max-width: 860px) {
	.value-prop-banner {
		padding: 2.5rem 1.5rem;
	}
	.value-prop-grid {
		grid-template-columns: 1fr;
	}
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 992px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

.testimonial-card {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2.25rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.testimonial-quote-mark {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	color: var(--accent-gold);
	opacity: 0.35;
	line-height: 1;
	margin-bottom: -1.5rem;
}

.testimonial-quote-text {
	font-size: 1rem;
	color: #e2e8f0;
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.testimonial-author-box {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.25rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--accent-gold);
}

.author-name {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.author-role {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.demo-disclaimer-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	padding: 0.2rem 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	color: var(--text-dim);
	margin-top: 0.5rem;
}

/* FINAL CTA SECTION */
.final-cta-section {
	background: linear-gradient(180deg, var(--bg-main) 0%, #060910 100%);
	position: relative;
	overflow: hidden;
}

.cta-box-card {
	background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 100%);
	border: 1px solid var(--border-mid);
	border-radius: var(--radius-xl);
	padding: 5rem 3rem;
	text-align: center;
	position: relative;
	box-shadow: var(--shadow-elevated);
}

.cta-headline {
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	line-height: 1.15;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.cta-subheading {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 620px;
	margin: 0 auto 2.5rem;
}

/* FEASIBILITY / ESTIMATOR TOOL BOX */
.estimator-panel {
	background: var(--bg-surface);
	border: 1px solid var(--border-mid);
	border-radius: var(--radius-lg);
	padding: 2rem;
	margin-top: 3rem;
	text-align: left;
}

/* FOOTER */
.apex-footer {
	background: #05080e;
	border-top: 1px solid var(--border-subtle);
	padding: 5rem 0 2rem;
	color: var(--text-secondary);
}

.footer-top-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3.5rem;
	margin-bottom: 4rem;
}

@media (max-width: 992px) {
	.footer-top-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 640px) {
	.footer-top-grid {
		grid-template-columns: 1fr;
	}
}

.footer-col-title {
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #ffffff;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.footer-col-title::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--accent-gold);
}

.footer-links-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.footer-link {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s, transform 0.2s;
	display: inline-block;
}

.footer-link:hover {
	color: var(--accent-gold);
	transform: translateX(4px);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.footer-bottom-bar {
	border-top: 1px solid var(--border-subtle);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem;
	font-size: 0.85rem;
	color: var(--text-dim);
}

/* MODAL SYSTEM */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(5, 8, 14, 0.85);
	backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fadeIn 0.2s ease;
}

.modal-card-dialog {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-mid);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 760px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
	position: relative;
	animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
	padding: 1.75rem 2rem;
	border-bottom: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	background: var(--bg-surface-elevated);
	z-index: 10;
}

.modal-body {
	padding: 2rem;
}

.modal-close-btn {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

/* FORM ELEMENTS */
.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

@media (max-width: 640px) {
	.form-grid-2 {
		grid-template-columns: 1fr;
	}
}

.apex-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.apex-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.apex-input, .apex-select, .apex-textarea {
	width: 100%;
	background: #0b0f19;
	border: 1px solid var(--border-mid);
	border-radius: var(--radius-sm);
	padding: 0.8rem 1rem;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.apex-input:focus, .apex-select:focus, .apex-textarea:focus {
	outline: none;
	border-color: var(--accent-gold);
	box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.apex-textarea {
	resize: vertical;
	min-height: 110px;
}

/* ANIMATIONS */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Interactive Calculator Tabs */
.calc-option-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--text-secondary);
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	text-align: center;
	cursor: pointer;
	font-size: 0.875rem;
	transition: all 0.2s;
}

.calc-option-btn:hover {
	border-color: var(--border-mid);
	color: #fff;
}

.calc-option-btn.selected {
	background: rgba(245, 158, 11, 0.12);
	border-color: var(--accent-gold);
	color: var(--accent-gold);
	font-weight: 600;
}
