@charset "utf-8";
/* NightShift Electrician — styled after TemplateMo 606 String Master's design system */

* {
	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;
}

.wrap,
.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-primary.danger {
	background: var(--danger);
	color: #2a0a06;
}

.btn-primary.danger:hover {
	background: #fca5a5;
	box-shadow: 0 10px 30px rgba(248, 113, 113, 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-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-bottom: 1.5rem;
}

.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: 2.5rem;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

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

.hero-payment-note {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	margin-top: 1rem;
}

.hero-payment-note p {
	font-size: 0.78rem;
	font-style: italic;
	color: var(--text-muted);
	margin: 0;
}

.hero-paynow-logo {
	height: 15px;
	width: auto;
	opacity: 0.75;
}

/* Problem 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-title {
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.section-title--power-check {
	font-size: clamp(1.6rem, 5vw, 2.75rem);
}

.section-title--how-it-works {
	font-size: clamp(1.6rem, 5vw, 2.75rem);
}

.section-title--pricing {
	font-size: clamp(1.6rem, 5vw, 2.75rem);
}

.section-title--faq {
	font-size: clamp(1.6rem, 5vw, 2.75rem);
}

.nowrap {
	white-space: nowrap;
}

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

/* Power Check widget section */
.power-check {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

/* Power Check widget */
#pcw {
	width: 100%;
	max-width: 480px;
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	margin: 0 auto;
	text-align: left;
}

.pcw-head {
	padding: 1.25rem 1.5rem 1rem;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pcw-title {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.pcw-title .amber {
	color: var(--accent);
}

.pcw-restart {
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent);
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.4);
	border-radius: 999px;
	padding: 5px 12px;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.15s;
}

.pcw-restart:hover {
	color: var(--bg-dark);
	background: var(--accent);
	border-color: var(--accent);
}

.pcw-progress {
	display: flex;
	gap: 5px;
	padding: 1rem 1.5rem 0;
}

.pcw-progress .seg {
	height: 3px;
	flex: 1;
	background: var(--border);
	border-radius: 3px;
	overflow: hidden;
}

.pcw-progress .seg>i {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--accent);
	transition: width 0.3s ease;
}

.pcw-progress .seg.done>i {
	width: 100%;
}

.pcw-progress .seg.active>i {
	width: 60%;
}

.pcw-body {
	padding: 1.75rem 1.5rem 1.5rem;
	min-height: 240px;
}

.pcw-eyebrow {
	font-size: 0.75rem;
	color: var(--accent-dark);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 0.65rem;
	display: block;
	font-weight: 600;
}

.pcw-eyebrow.danger {
	color: var(--danger);
}

.pcw-eyebrow.safe {
	color: var(--safe);
}

.pcw-q {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.4rem;
	letter-spacing: -0.01em;
}

.pcw-sub {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
}

.pcw-options {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.pcw-opt {
	text-align: left;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.85rem 1rem;
	border-radius: 11px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
	width: 100%;
}

.pcw-opt:hover {
	border-color: var(--accent);
	background: #2c2308;
}

.pcw-opt:active {
	transform: scale(0.98);
}

.pcw-opt .ic {
	font-size: 1.15rem;
	flex-shrink: 0;
	width: 22px;
	text-align: center;
}

.pcw-opt.danger-opt {
	border-color: rgba(248, 113, 113, 0.35);
}

.pcw-opt.danger-opt:hover {
	border-color: var(--danger);
	background: rgba(248, 113, 113, 0.08);
}

.pcw-back {
	margin-top: 1.1rem;
	background: none;
	border: none;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.8rem;
	cursor: pointer;
	padding: 4px 0;
}

.pcw-back:hover {
	color: var(--text-secondary);
}

.pcw-field {
	margin-bottom: 1rem;
}

.pcw-field label {
	display: block;
	font-size: 0.8rem;
	color: var(--text-secondary);
	margin-bottom: 0.4rem;
}

.pcw-field select,
.pcw-field input {
	width: 100%;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.95rem;
	padding: 0.7rem 0.85rem;
	border-radius: 10px;
}

.pcw-field select:focus,
.pcw-field input:focus {
	outline: none;
	border-color: var(--accent);
}

.pcw-submit {
	width: 100%;
	margin-top: 0.4rem;
	background: var(--accent);
	color: var(--bg-dark);
	font-weight: 700;
	font-size: 0.95rem;
	border: none;
	padding: 0.85rem;
	border-radius: 10px;
	cursor: pointer;
	font-family: inherit;
}

.pcw-submit:hover {
	background: var(--accent-light);
}

.pcw-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 999px;
	padding: 6px 13px;
	margin-bottom: 1rem;
	background: rgba(245, 158, 11, 0.12);
	color: var(--accent);
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.pcw-badge.danger {
	background: rgba(248, 113, 113, 0.12);
	color: var(--danger);
	border-color: rgba(248, 113, 113, 0.35);
}

.pcw-badge.safe {
	background: rgba(74, 222, 128, 0.12);
	color: var(--safe);
	border-color: rgba(74, 222, 128, 0.35);
}

.pcw-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.pcw-result-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.pcw-result-body {
	color: var(--text-secondary);
	font-size: 0.92rem;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.pcw-result-body strong {
	color: var(--text-primary);
	font-weight: 600;
}

.pcw-fee-note {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin: 0.9rem 0 0.4rem;
	padding: 0.65rem 0.85rem;
	background: var(--bg-elevated);
	border-radius: 9px;
	border: 1px solid var(--border);
}

.pcw-commercial-note {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0.6rem 0 1rem;
	padding: 0.65rem 0.85rem;
	background: rgba(245, 158, 11, 0.06);
	border: 1px dashed rgba(245, 158, 11, 0.3);
	border-radius: 9px;
	line-height: 1.5;
}

.pcw-ctas {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.5rem;
}

.pcw-cta-primary,
.pcw-cta-secondary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.9rem;
	border-radius: 11px;
	text-align: center;
	font-family: inherit;
	border: none;
	cursor: pointer;
}

.pcw-cta-primary {
	background: var(--accent);
	color: var(--bg-dark);
}

.pcw-cta-primary.danger {
	background: var(--danger);
	color: #2a0a06;
}

.pcw-cta-primary:hover {
	filter: brightness(1.08);
}

.pcw-cta-secondary {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	font-weight: 600;
}

.pcw-cta-secondary:hover {
	border-color: var(--text-secondary);
}

.pcw-foot {
	padding: 0.85rem 1.5rem;
	border-top: 1px solid var(--border);
	background: rgba(248, 113, 113, 0.08);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--danger);
	text-align: center;
}

/* How it works */
.how-it-works {
	padding: 6rem 2rem;
}

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

.step-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s;
}

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

.step-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.step-num {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--bg-elevated);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--accent);
}

.step-card h3 {
	font-size: 1.2rem;
	font-weight: 600;
}

.step-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Pricing + credentials */
.pricing {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

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

.pricing-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;
}

.pricing-card + .pricing-card {
	margin-top: 1.5rem;
}

.pricing-card--secondary .price-line {
	font-size: 1.2rem;
}

.pricing-card .price-line {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.pricing-card .price-line .amber {
	color: var(--accent);
}

.pricing-card p {
	color: var(--text-secondary);
	font-size: 1.02rem;
	margin-bottom: 1.1rem;
	line-height: 1.7;
	text-align: left;
}

.pricing-card p:last-child {
	margin-bottom: 0;
}

.pricing-card .credential-line {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
	border-top: 1px solid var(--border);
	padding-top: 1.25rem;
	margin-top: 1.5rem;
}

/* 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;
}

/* Legal pages (Terms, Privacy) */
.legal {
	padding: 8rem 2rem 5rem;
}

.legal-container {
	max-width: 720px;
	margin: 0 auto;
}

.legal-container h1 {
	font-size: clamp(1.9rem, 4vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.legal-updated {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 2.5rem;
}

.legal-container > p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.legal-container h2 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 2.5rem 0 0.75rem;
}

/* 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--power-check {
		font-size: 19px;
	}

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

	.section-title--pricing {
		font-size: 21px;
	}

	.section-title--faq {
		font-size: 17px;
	}

	#power-check .section-label {
		font-size: 15px;
	}

	#how-it-works .section-label {
		font-size: 15px;
	}

	#faq .section-label {
		font-size: 16px;
	}

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

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

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

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card {
		padding: 1.75rem;
	}

	.power-check,
	.how-it-works,
	.pricing,
	.faq,
	.cta {
		padding: 4rem 1.25rem;
	}

	.pcw-head {
		padding: 1rem 1.1rem 0.85rem;
	}

	.pcw-restart {
		font-size: 0.68rem;
		padding: 5px 9px;
	}

	.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);
}
