@charset "utf-8";
/* Join NightShift Electrician — same design system as nightshiftelectrician-site (TemplateMo 606 String Master base) */

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

:root {
	--bg-dark: #0d0d0d;
	--bg-card: #1a1a1a;
	--bg-elevated: #242424;
	--accent: #f59e0b;
	--accent-light: #fbbf24;
	--accent-dark: #d97706;
	--text-primary: #fafafa;
	--text-secondary: #a3a3a3;
	--text-muted: #737373;
	--border: #2e2e2e;
	--danger: #f87171;
	--safe: #4ade80;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
}

a {
	color: inherit;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
}

.logo-icon {
	height: 35px;
	width: auto;
	display: block;
}

.logo-word {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.logo-word .n {
	color: #d9d9d9;
}

.logo-word .s {
	color: var(--text-muted);
}

.logo-word .ec {
	color: var(--accent);
}

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

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.nav-cta:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Buttons */
.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 8px 21px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 8px 21px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: inherit;
	font-size: 14px;
	cursor: pointer;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	padding: 9rem 2rem 2.5rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-inner {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.35);
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.45rem 1.1rem;
	border-radius: 100px;
	margin-bottom: 1.5rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-top: 0.5rem;
	margin-bottom: 2rem;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.hero-description {
	font-size: 17px;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Problem / trust framing section */
.problem {
	padding: 1rem 2rem 4rem;
}

.problem-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.problem-inner p {
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.6;
	color: var(--text-secondary);
}

.problem-inner strong {
	color: var(--text-primary);
	font-weight: 600;
}

/* Generic section header */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-label--lg {
	font-size: 1.275rem;
}

.section-label--md {
	font-size: 1.1rem;
}

.section-title {
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	text-wrap: balance;
	font-size: clamp(1.6rem, 5vw, 2.75rem);
}

.section-title--sm {
	font-size: clamp(1.25rem, 3.5vw, 1.9rem);
}

.nowrap {
	white-space: nowrap;
}

.section-description {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* Offer section */
.offer {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.offer-inner {
	max-width: 780px;
	margin: 0 auto;
}

.offer-card {
	background: var(--bg-dark);
	border: 1px solid var(--accent);
	border-radius: 20px;
	padding: 2.75rem;
	box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
	text-align: center;
}

.offer-rate {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -0.02em;
	margin-bottom: 0.4rem;
}

.offer-rate-sub {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-bottom: 2rem;
}

.check-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
	border-top: 1px solid var(--border);
	padding-top: 1.75rem;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}

.check-list li svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--accent);
	margin-top: 3px;
}

/* Why This Exists */
.why {
	padding: 6rem 2rem;
}

.why-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.why-inner p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

/* Requirements */
.requirements {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.requirements-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

.requirement-card {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.5rem 1.25rem 0.5rem 0.5rem;
	transition: all 0.2s;
}

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

.requirement-card--primary {
	border: 1px solid var(--accent);
	background: rgba(245, 158, 11, 0.06);
	padding: 0.7rem 1.6rem 0.7rem 0.7rem;
}

.requirement-card--primary .requirement-icon {
	width: 40px;
	height: 40px;
	background: var(--accent);
	color: var(--bg-dark);
}

.requirement-card--primary .requirement-icon svg {
	width: 20px;
	height: 20px;
}

.requirement-card--primary h3 {
	font-size: 1.05rem;
	font-weight: 700;
}

.requirement-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	background: var(--bg-elevated);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.requirement-icon svg {
	width: 16px;
	height: 16px;
}

.requirement-card h3 {
	font-size: 0.9rem;
	font-weight: 600;
	max-width: 260px;
}

/* FAQ */
.faq {
	padding: 6rem 2rem;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::marker {
	content: '';
}

.faq-item summary:hover h3 {
	color: var(--accent);
}

.faq-item h3 {
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0;
	transition: color 0.15s;
}

.faq-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	display: inline-flex;
	color: var(--accent);
}

.faq-icon svg {
	width: 100%;
	height: 100%;
}

.faq-icon .icon-minus {
	display: none;
}

.faq-item[open] .faq-icon .icon-plus {
	display: none;
}

.faq-item[open] .faq-icon .icon-minus {
	display: block;
}

.faq-item p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	padding-bottom: 1.5rem;
	margin: 0;
}

/* Final CTA */
.cta {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta .hero-buttons {
	margin-top: 0.5rem;
}

.cta-trust {
	margin-top: 1.5rem;
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* Footer */
footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

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

.footer-brand .logo {
	margin-bottom: 1rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	max-width: 320px;
}

.footer-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

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

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	text-align: center;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 0.4rem;
}

@media (max-width: 880px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		text-align: left;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

/* Responsive */
@media (max-width: 880px) {

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(13, 13, 13, 0.98);
		backdrop-filter: blur(20px);
		padding: 0.5rem 0 0 0;
		gap: 0;
	}

	.nav-links.active li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li:last-child {
		border-bottom: none;
	}

	.nav-links.active a {
		display: block;
		padding: 1.35rem 2rem;
		font-size: 1.1rem;
	}

	.nav-cta.active {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		text-align: center;
		background: var(--bg-dark);
		padding: 1.5rem 2rem;
		border-top: 1px solid var(--border);
	}

	.hero {
		padding: 7rem 1.25rem 3.5rem;
	}

	.hero h1 {
		font-size: 24px;
	}

	.section-title {
		font-size: 19px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons .btn-primary,
	.hero-buttons .btn-secondary {
		width: 100%;
	}

	.problem-inner p {
		font-size: 1.15rem;
	}

	.requirement-card h3 {
		white-space: normal;
	}

	.offer-card {
		padding: 1.75rem;
	}

	.offer-rate {
		font-size: 2.1rem;
	}

	.offer,
	.why,
	.requirements,
	.faq,
	.cta {
		padding: 4rem 1.25rem;
	}

	.whatsapp-float {
		width: 52px;
		height: 52px;
		bottom: 16px;
		right: 16px;
	}
}

/* Sticky WhatsApp button */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	z-index: 900;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
