/* =====================================================
   SERVICES PAGE — page-specific styles
   Global tokens & shared classes live in /style.css.
   Theme: monochrome, minimal, teal accent (--primary).
   Prefix: .sv-
   ===================================================== */

/* --- Hero --- */
.sv-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 78vh;
	padding: 220px 5% 140px;
	background: var(--bg-primary, #141414);
	overflow: hidden;
}
.sv-hero .hero-bg {
	position: absolute;
	top: -15%; bottom: -15%; left: 0; right: 0;
	background-image: url('../images/car-photo-rays-logo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	will-change: transform;
	z-index: 0;
}
.sv-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.68);
	z-index: 1;
}
.sv-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	width: 100%;
}
.sv-hero__eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--primary, #4cb2ba);
	margin-bottom: 1.2rem;
}
.sv-hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	font-weight: 900;
	line-height: 1.12;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 1.2rem;
	letter-spacing: -.02em;
	text-transform: uppercase;
}
.sv-hero__sub {
	font-size: .98rem;
	line-height: 1.75;
	color: rgba(212, 212, 212, 0.82);
	max-width: 620px;
	margin: 0 auto 2rem;
}
.sv-hero__cta .cta-button {
	display: inline-flex;
	margin: 0 auto;
}

/* --- Section frame --- */
.content-wrapper.sv-services-section,
.content-wrapper.sv-delivery-section,
.content-wrapper.sv-start-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 6rem 2rem;
}
.content-wrapper.sv-delivery-section {
	border-top: 1px solid rgba(212, 212, 212, 0.06);
	border-bottom: 1px solid rgba(212, 212, 212, 0.06);
	background: var(--bg-secondary, #0F0F0F);
}

/* --- Services grid --- */
.sv-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
.sv-card {
	display: flex;
	flex-direction: column;
	padding: 1.9rem 1.6rem;
	border: 1px solid rgba(212, 212, 212, 0.06);
	background: var(--bg-tile, #1a1a1a);
	border-radius: 3px;
	scroll-margin-top: 96px;
	transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.sv-card:hover {
	border-color: rgba(var(--primary-rgb, 76,178,186), 0.35);
	background: rgba(212, 212, 212, 0.03);
	transform: translateY(-3px);
}
.sv-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(var(--primary-rgb, 76,178,186), 0.4);
	border-radius: 3px;
	color: var(--primary, #4cb2ba);
	margin-bottom: 1.1rem;
}
.sv-card__icon svg {
	width: 22px;
	height: 22px;
}
.sv-card__title {
	font-size: 1.02rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .01em;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 .35rem;
	line-height: 1.25;
}
.sv-card__lede {
	font-size: .84rem;
	font-weight: 600;
	color: var(--primary, #4cb2ba);
	margin: 0 0 .75rem;
}
.sv-card__body {
	font-size: .86rem;
	line-height: 1.65;
	color: var(--text-secondary, #8A8A8A);
	margin: 0 0 1.2rem;
}
.sv-card__tags {
	list-style: none;
	margin: auto 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}
.sv-card__tags li {
	font-size: .66rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	border: 1px solid rgba(212, 212, 212, 0.1);
	border-radius: 2px;
	padding: 3px 8px;
}

/* --- Delivery strip --- */
.sv-delivery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	max-width: 1000px;
	margin: 0 auto;
}
.sv-delivery {
	padding: 1.9rem 1.6rem;
	border: 1px solid rgba(212, 212, 212, 0.06);
	border-radius: 3px;
	background: var(--bg-tile, #1a1a1a);
}
.sv-delivery__num {
	display: block;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--primary, #4cb2ba);
	margin-bottom: .6rem;
	font-variant-numeric: tabular-nums;
}
.sv-delivery h3 {
	font-size: 1.05rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 .5rem;
}
.sv-delivery p {
	font-size: .86rem;
	line-height: 1.65;
	color: var(--text-secondary, #8A8A8A);
	margin: 0;
}
.sv-delivery__note {
	text-align: center;
	margin-top: 2rem;
}

/* --- Start (Basecamp) card --- */
.sv-start__card {
	max-width: 820px;
	margin: 0 auto;
	border: 1px solid rgba(212, 212, 212, 0.08);
	background: var(--bg-tile, #1a1a1a);
	border-radius: 4px;
	padding: 2.8rem 2.4rem;
	text-align: center;
}
.sv-start__card .home-step-tag {
	justify-content: center;
	display: inline-flex;
}
.sv-start__body h2 {
	margin: 0 0 1rem;
	line-height: 1.1;
}
.sv-start__body p {
	font-size: .92rem;
	line-height: 1.75;
	color: var(--text-secondary, #8A8A8A);
	max-width: 620px;
	margin: 0 auto 1.8rem;
}
.sv-start__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
	.sv-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 900px) {
	.sv-delivery-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 600px) {
	.sv-hero {
		min-height: 70vh;
		padding: 170px 6% 110px;
	}
	.content-wrapper.sv-services-section,
	.content-wrapper.sv-delivery-section,
	.content-wrapper.sv-start-section {
		padding: 4rem 1.25rem;
	}
	.sv-grid {
		grid-template-columns: 1fr;
	}
	.sv-start__card {
		padding: 2.2rem 1.5rem;
	}
	.sv-start__actions .cta-button {
		width: 100%;
		justify-content: center;
	}
}
