:root {
	--bg-main: #0a0c10;
	--bg-card: #12151c;
	--bg-card-hover: #171c26;
	--bg-elevated: #1a1f2c;
	--bg-darker: #060709;
	
	--border-subtle: #242b38;
	--border-light: #323d4f;
	--border-red: #ff383844;
	
	--red-primary: #ff2a2a;
	--red-hover: #ff4545;
	--red-glow: rgba(255, 42, 42, 0.45);
	--red-dark: #8c1010;

	--orange-accent: #ff8412;
	--amber-gold: #ffb703;
	--green-active: #00e676;

	--text-primary: #f5f7fa;
	--text-secondary: #9aa8ba;
	--text-muted: #64748b;
	--text-bright: #ffffff;

	--font-display: 'Barlow Condensed', -apple-system, sans-serif;
	--font-body: 'Barlow', -apple-system, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;

	--shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
	--shadow-glow: 0 0 30px rgba(255, 42, 42, 0.25);
	--shadow-glow-intense: 0 0 45px rgba(255, 42, 42, 0.45);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	background-color: var(--bg-main);
	background-image: 
		radial-gradient(circle at 50% 0%, rgba(255, 42, 42, 0.12) 0%, transparent 60%),
		linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
	background-size: 100% 100%, 40px 40px, 40px 40px;
	overflow-x: hidden;
	padding-bottom: 72px; /* Space for mobile sticky CTA bar */
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* Typography Utility */
.font-display {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.font-mono {
	font-family: var(--font-mono);
}

.racing-red {
	color: var(--red-primary);
}

.racing-gradient-text {
	background: linear-gradient(135deg, #ffffff 30%, #ff3b30 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gold-stars {
	color: var(--amber-gold);
}

/* Layout Shell */
.app-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Top Announcement Strip */
.top-announcement-bar {
	background: #080a0e;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.8125rem;
	padding: 0.45rem 0;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.top-announcement-bar {
		display: none;
	}
}

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

.status-badge-inline {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 0.75rem;
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
	background: rgba(0, 230, 118, 0.1);
	border: 1px solid rgba(0, 230, 118, 0.3);
	color: #00e676;
}

.status-badge-inline.closed {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--border-subtle);
	color: var(--text-secondary);
}

.status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00e676;
	box-shadow: 0 0 8px #00e676;
	animation: pulse-dot 2s infinite;
}

.status-dot.closed {
	background: var(--text-muted);
	box-shadow: none;
	animation: none;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.85); }
}

/* Sticky Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(10, 12, 16, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-subtle);
	padding: 0.85rem 0;
	transition: all 0.25s ease;
}

@media (max-width: 768px) {
	.site-header {
		padding: 0.5rem 0;
	}
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	min-width: 0;
}

.logo-badge {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #1e2533 0%, #0d1017 100%);
	border: 2px solid var(--red-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 15px rgba(255, 42, 42, 0.3);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.logo-badge {
		width: 36px;
		height: 36px;
	}
}

.logo-badge::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
	transform: rotate(35deg);
	animation: logo-sheen 6s infinite ease-in-out;
}

@keyframes logo-sheen {
	0% { transform: translateY(-100%) rotate(35deg); }
	20%, 100% { transform: translateY(100%) rotate(35deg); }
}

.brand-name-group {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.brand-title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #ffffff;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.brand-title {
		font-size: 1.2rem;
		letter-spacing: 0.03em;
	}
}

.brand-sub {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--red-primary);
	text-transform: uppercase;
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 768px) {
	.brand-sub {
		font-size: 0.575rem;
		letter-spacing: 0.04em;
	}
}

.desktop-nav {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.desktop-nav {
		display: flex;
	}
}

.nav-link {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-secondary);
	transition: color 0.15s ease;
	position: relative;
	padding: 0.25rem 0;
}

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

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--red-primary);
	transition: width 0.2s ease;
}

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

.header-cta-group {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

@media (max-width: 768px) {
	.header-cta-group .btn-primary-phone {
		display: none; /* Hide redundant phone in header on mobile so it doesn't overflow or crowd screen */
	}
	.header-cta-group .btn-secondary-quote {
		padding: 0.45rem 0.85rem;
		font-size: 0.9rem;
	}
}

/* Button Component Styles */
.btn-primary-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	background: linear-gradient(135deg, #ff2a2a 0%, #d41111 100%);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 18px rgba(255, 42, 42, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-primary-phone:hover {
	background: linear-gradient(135deg, #ff4545 0%, #e61919 100%);
	box-shadow: 0 6px 24px rgba(255, 42, 42, 0.6);
	transform: translateY(-1px);
}

.btn-secondary-quote {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.15rem;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-radius: var(--radius-md);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-secondary-quote:hover {
	border-color: var(--red-primary);
	background: var(--bg-elevated);
	box-shadow: 0 0 15px rgba(255, 42, 42, 0.2);
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 3.5rem 0 4.5rem;
	border-bottom: 1px solid var(--border-subtle);
	overflow: hidden;
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 75% 30%, rgba(255, 42, 42, 0.15) 0%, transparent 55%);
}

.hero-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.35rem 0.9rem;
	background: rgba(255, 42, 42, 0.1);
	border: 1px solid var(--red-border, rgba(255, 42, 42, 0.35));
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #ff6b6b;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero-headline {
	font-family: var(--font-display);
	font-size: clamp(2.35rem, 6vw, 4.25rem);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.hero-subhead {
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	color: var(--text-secondary);
	max-width: 680px;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.hero-call-btn-large {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.95rem 1.85rem;
	background: linear-gradient(135deg, #ff2626 0%, #c40a0a 100%);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	border-radius: var(--radius-md);
	box-shadow: 0 8px 30px rgba(255, 38, 38, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.25);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-call-btn-large:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 12px 40px rgba(255, 38, 38, 0.65);
}

.hero-quote-btn-large {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.65rem;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	border-radius: var(--radius-md);
	transition: all 0.2s ease;
}

.hero-quote-btn-large:hover {
	border-color: var(--red-primary);
	background: var(--bg-elevated);
	box-shadow: 0 0 20px rgba(255, 42, 42, 0.25);
}

/* Trust Metric Bar */
.trust-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	background: rgba(18, 21, 28, 0.85);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
	.trust-bar {
		grid-template-columns: repeat(4, 1fr);
		padding: 1.5rem;
	}
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.trust-icon-box {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: rgba(255, 42, 42, 0.12);
	border: 1px solid rgba(255, 42, 42, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red-primary);
	flex-shrink: 0;
}

.trust-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
}

.trust-sub {
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

/* Sections Global */
.section-pad {
	padding: 5rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

.section-pad-alt {
	background: #0d0f14;
	padding: 5rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

.section-header {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 3.5rem;
}

.section-tag {
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--red-primary);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	display: inline-block;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Service Cards */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

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

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-card:hover {
	border-color: var(--red-primary);
	background: var(--bg-card-hover);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 42, 0.15);
}

.service-icon-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.service-icon-wrapper {
	width: 54px;
	height: 54px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(255, 42, 42, 0.2) 0%, rgba(18, 21, 28, 0.8) 100%);
	border: 1px solid rgba(255, 42, 42, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red-primary);
}

.service-number {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.12);
}

.service-card-title {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #ffffff;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

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

.service-specs-list {
	list-style: none;
	display: grid;
	gap: 0.6rem;
	margin-bottom: 1.75rem;
}

.service-spec-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.875rem;
	color: var(--text-primary);
}

.spec-bullet {
	color: var(--red-primary);
	font-weight: 900;
	font-size: 0.9rem;
	line-height: 1.2;
}

.service-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
	gap: 0.75rem;
	flex-wrap: wrap;
}

.card-cta-link {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--red-primary);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.2s ease;
}

.card-cta-link:hover {
	color: #ffffff;
	gap: 0.65rem;
}

/* Engine Platforms Grid */
.platform-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.platform-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.platform-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.platform-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.platform-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--border-subtle);
	transition: background 0.25s ease;
}

.platform-card:hover {
	border-color: var(--border-light);
	transform: translateY(-2px);
}

.platform-card:hover::before {
	background: var(--red-primary);
}

.platform-tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--red-primary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.35rem;
}

.platform-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.6rem;
}

.platform-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.55;
	margin-bottom: 1rem;
}

.platform-highlight-pill {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	color: var(--text-primary);
	font-family: var(--font-mono);
}

/* Machine Shop Capabilities / Specs Strip */
.capabilities-container {
	background: linear-gradient(180deg, #131722 0%, #0d1017 100%);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2.5rem 1.5rem;
	box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
	.capabilities-container {
		padding: 3rem;
	}
}

.cap-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.cap-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cap-card {
	background: rgba(10, 12, 16, 0.6);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.5rem;
}

.cap-val {
	font-family: var(--font-mono);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--red-primary);
	margin-bottom: 0.35rem;
}

.cap-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.cap-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* Interactive Quote Lead Form */
.quote-section {
	background: radial-gradient(circle at 50% 10%, rgba(255, 42, 42, 0.12) 0%, transparent 60%), #0d1017;
	border-bottom: 1px solid var(--border-subtle);
	padding: 5rem 0;
}

.quote-card-container {
	max-width: 860px;
	margin: 0 auto;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 42, 42, 0.15);
	position: relative;
}

@media (min-width: 768px) {
	.quote-card-container {
		padding: 3rem;
	}
}

.quote-header-box {
	text-align: center;
	margin-bottom: 2.25rem;
}

.quote-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.quote-form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.quote-col-span-2 {
		grid-column: span 2;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-label .req {
	color: var(--red-primary);
	font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	background: #090b10;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 0.85rem 1rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: #ffffff;
	transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--red-primary);
	box-shadow: 0 0 12px rgba(255, 42, 42, 0.35);
	background: #0c0f16;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #4b5563;
}

.quick-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.chip-btn {
	padding: 0.45rem 0.85rem;
	background: #10141c;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-secondary);
	transition: all 0.15s ease;
}

.chip-btn:hover {
	border-color: var(--text-muted);
	color: #ffffff;
}

.chip-btn.selected {
	background: rgba(255, 42, 42, 0.15);
	border-color: var(--red-primary);
	color: #ffffff;
	box-shadow: 0 0 10px rgba(255, 42, 42, 0.25);
}

.quote-submit-btn {
	width: 100%;
	padding: 1.1rem 1.5rem;
	background: linear-gradient(135deg, #ff2a2a 0%, #c40a0a 100%);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 8px 30px rgba(255, 42, 42, 0.45);
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.quote-submit-btn:hover:not(:disabled) {
	background: linear-gradient(135deg, #ff4545 0%, #e61919 100%);
	box-shadow: 0 12px 40px rgba(255, 42, 42, 0.65);
	transform: translateY(-1px);
}

.quote-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.quote-direct-call-hint {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.9375rem;
	color: var(--text-secondary);
}

.quote-direct-call-hint a {
	color: #ffffff;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--red-primary);
}

.quote-direct-call-hint a:hover {
	color: var(--red-primary);
}

/* Success Modal / State */
.quote-success-box {
	text-align: center;
	padding: 2.5rem 1rem;
}

.quote-success-icon {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(0, 230, 118, 0.15);
	border: 2px solid #00e676;
	color: #00e676;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 0 25px rgba(0, 230, 118, 0.35);
}

/* Meet Greg Landis / About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

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

.about-badge-card {
	background: linear-gradient(135deg, #161b24 0%, #0c0e14 100%);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 2rem;
	position: relative;
	box-shadow: var(--shadow-card);
}

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

.about-stat-box {
	background: #090b10;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1rem;
}

.about-stat-num {
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-weight: 900;
	color: var(--red-primary);
	line-height: 1;
}

.about-stat-label {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	margin-top: 0.25rem;
}

.greg-guarantee-card {
	margin-top: 1.5rem;
	padding: 1.25rem;
	border-radius: var(--radius-md);
	background: rgba(255, 42, 42, 0.08);
	border-left: 4px solid var(--red-primary);
}

.greg-guarantee-card p {
	font-size: 0.9375rem;
	font-style: italic;
	color: #ffffff;
}

/* Testimonials / Social Proof */
.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.review-card:hover {
	border-color: var(--border-light);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.review-stars {
	display: flex;
	gap: 0.25rem;
	color: var(--amber-gold);
	margin-bottom: 1rem;
}

.review-quote {
	font-size: 0.9375rem;
	color: var(--text-primary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

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

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2a3344 0%, #151a24 100%);
	border: 1px solid var(--red-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	color: #ffffff;
	font-size: 1.1rem;
}

.author-name {
	font-weight: 700;
	color: #ffffff;
	font-size: 0.9375rem;
}

.author-car {
	font-size: 0.75rem;
	color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-grid {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.faq-item.open {
	border-color: var(--border-light);
}

.faq-btn {
	width: 100%;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 800;
	color: #ffffff;
	gap: 1rem;
}

.faq-btn:hover {
	color: var(--red-primary);
}

.faq-chevron {
	color: var(--text-secondary);
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.faq-item.open .faq-chevron {
	transform: rotate(180deg);
	color: var(--red-primary);
}

.faq-content {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.6;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 0.5rem;
	padding-top: 1rem;
}

/* Location / Map Section */
.location-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 850px) {
	.location-card-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.location-info-panel {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.info-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.info-icon-box {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: rgba(255, 42, 42, 0.12);
	border: 1px solid rgba(255, 42, 42, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red-primary);
	flex-shrink: 0;
}

.info-title {
	font-weight: 700;
	color: #ffffff;
	font-size: 1.05rem;
	margin-bottom: 0.2rem;
}

.info-detail {
	color: var(--text-secondary);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.map-wrapper {
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	height: 380px;
	position: relative;
	background: #11141c;
}

.map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%);
}

/* Footer */
.site-footer {
	background: #060709;
	border-top: 1px solid var(--border-subtle);
	padding: 4rem 0 2rem;
	color: var(--text-secondary);
	font-size: 0.875rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.footer-col-title {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 0.6rem;
}

.footer-links a {
	color: var(--text-secondary);
	transition: color 0.15s ease;
}

.footer-links a:hover {
	color: var(--red-primary);
}

.footer-bottom-bar {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8125rem;
}

/* Mobile Sticky Call / Lead Action Bar (Slim & Sleek) */
.mobile-sticky-action-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(10, 12, 16, 0.96);
	backdrop-filter: blur(14px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.4rem 0.75rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
	.mobile-sticky-action-bar {
		display: none;
	}
}

.mobile-call-btn {
	flex: 1.15;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.55rem 0.6rem;
	background: linear-gradient(135deg, #ff2a2a 0%, #c40a0a 100%);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	border-radius: var(--radius-sm);
	box-shadow: 0 2px 10px rgba(255, 42, 42, 0.4);
	text-decoration: none;
	white-space: nowrap;
}

.mobile-quote-btn {
	flex: 0.85;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.55rem 0.6rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	border-radius: var(--radius-sm);
	text-decoration: none;
	white-space: nowrap;
}

@media (max-width: 768px) {
	body {
		padding-bottom: 54px;
	}
}

/* Modals & Dialogs */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-content {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	position: relative;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 42, 42, 0.2);
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: background 0.15s ease;
}

.modal-close-btn:hover {
	background: var(--red-primary);
}
