/* ============================================================
   Services Page — all rules scoped to .services-page
   ============================================================ */

/* ── Page wrapper ── */
.services-page {
	background: #030303;
}

/* ── Container ── */
.services-page .sv-container {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 72px;
	padding-right: 72px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.services-page .sv-hero {
	padding-top: 72px;
	padding-bottom: 0;
	background: #030303;
}

.services-page .sv-hero-inner {
	display: grid;
	grid-template-columns: 52% 48%;
	grid-template-rows: auto 1fr;
	align-items: end;
	min-height: 600px;
}

/* ── Left column ── */
.services-page .sv-hero-left {
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	padding-right: 40px;
	padding-bottom: 0;
}

/* ── Pill ── */
.services-page .sv-pill {
	display: inline-flex;
	align-items: center;
	color: #C4EE18;
	border: 1px solid rgba(196, 238, 24, 0.6);
	background: transparent;
	padding: 7px 13px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-family: 'Inter', sans-serif;
	margin-bottom: 22px;
	line-height: 1;
}

/* ── H1 ── */
.services-page .sv-h1 {
	font-size: 78px;
	font-weight: 900;
	line-height: 0.94;
	letter-spacing: -3px;
	color: #ffffff;
	margin: 0 0 22px;
	font-family: 'Darker Grotesque', sans-serif;
}

.services-page .sv-h1-line {
	display: block;
}

/* Lime-colored "Output." */
.services-page .sv-h1-lime {
	color: #C4EE18;
}

/* Subtle lime underline accent under "Real" and "Output." */
.services-page .sv-underline-accent {
	text-decoration: underline;
	text-decoration-color: rgba(196, 238, 24, 0.75);
	text-decoration-thickness: 3px;
	text-underline-offset: 8px;
}

/* ── Hero paragraph ── */
.services-page .sv-hero-sub {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.68);
	max-width: 560px;
	margin: 0;
}

/* ── Hero buttons ── */
.services-page .sv-hero-btns {
	grid-column: 1;
	grid-row: 2;
	align-self: start;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	margin-top: 36px;
}

.services-page .sv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	height: 54px;
	padding: 0 26px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	border: 1px solid transparent;
}

.services-page .sv-btn-primary {
	background: #C4EE18;
	color: #000000;
	border-color: #C4EE18;
}

.services-page .sv-btn-primary:hover {
	background: #d4ff28;
	border-color: #d4ff28;
	color: #000000;
}

.services-page .sv-btn-secondary {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.services-page .sv-btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.55);
	color: #ffffff;
}

/* ── Right column: founder image ── */
.services-page .sv-hero-right {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.services-page .sv-founder-wrap {
	position: relative;
	width: 540px;
	max-width: 100%;
}

/* Lime radial glow behind the founder image */
.services-page .sv-founder-wrap::before {
	content: '';
	position: absolute;
	inset: -60px;
	background: radial-gradient(circle at center, rgba(196, 238, 24, 0.18), transparent 55%);
	z-index: 0;
	pointer-events: none;
}

.services-page .founder-image {
	position: relative;
	z-index: 1;
	width: 100%;
}

.services-page .founder-image img {
	width: 100%;
	height: auto;
	display: block;

	-webkit-mask-image: linear-gradient(
		to bottom,
		rgba(0,0,0,1) 0%,
		rgba(0,0,0,1) 72%,
		rgba(0,0,0,0) 100%
	);

	mask-image: linear-gradient(
		to bottom,
		rgba(0,0,0,1) 0%,
		rgba(0,0,0,1) 72%,
		rgba(0,0,0,0) 100%
	);
}

/* ============================================================
   SERVICES SECTION — intro + cards
   ============================================================ */
.services-page .sv-services {
	padding-top: 10px;
	padding-bottom: 100px;
	background: #030303;
}

/* ── Section intro: two-column heading row ── */
.services-page .sv-intro-row {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	margin-bottom: 34px;
}

.services-page .sv-intro-left {
	flex: 1;
}

/* Eyebrow label (no border, text only) */
.services-page .sv-eyebrow {
	display: block;
	color: #C4EE18;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-family: 'Inter', sans-serif;
	margin-bottom: 14px;
	line-height: 1;
}

/* Intro heading */
.services-page .sv-intro-h2 {
	font-size: 42px;
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -1.5px;
	color: #ffffff;
	margin: 0;
	font-family: 'Darker Grotesque', sans-serif;
}

/* Lime span reuse */
.services-page .sv-lime {
	color: #C4EE18;
}

/* Right side subtext */
.services-page .sv-intro-right {
	flex: 0 0 360px;
	max-width: 360px;
	padding-top: 6px;
}

.services-page .sv-intro-sub {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.62);
	margin: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-page .sv-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.services-page .sv-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding: 24px 32px;
	background: linear-gradient(90deg, #121212, #0d0d0d);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.services-page .sv-card:hover {
	border-color: rgba(196, 238, 24, 0.35);
	background: linear-gradient(90deg, #161616, #111111);
}

/* Icon box */
.services-page .sv-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 10px;
}

/* Service number */
.services-page .sv-card-num {
	font-size: 15px;
	font-weight: 700;
	color: #C4EE18;
	letter-spacing: -0.02em;
	font-family: 'Inter', sans-serif;
	flex-shrink: 0;
	width: 44px;
	line-height: 1;
}

/* Card text block */
.services-page .sv-card-body {
	flex: 1;
	min-width: 0;
}

.services-page .sv-card-name {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin: 0 0 5px;
	font-family: 'Darker Grotesque', sans-serif;
}

.services-page .sv-card-desc {
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.62);
	margin: 0;
}

/* Learn More link */
.services-page .sv-card-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	margin-left: auto;
	color: #C4EE18;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease, gap 0.15s ease;
}

.services-page .sv-card-link:hover {
	color: #d4ff28;
	gap: 9px;
}

/* ============================================================
   RESPONSIVE — Tablet  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
	.services-page .sv-container {
		padding-left: 40px;
		padding-right: 40px;
	}

	.services-page .sv-h1 {
		font-size: 58px;
		letter-spacing: -2px;
	}

	.services-page .sv-founder-wrap {
		width: 380px;
	}

	.services-page .sv-intro-h2 {
		font-size: 36px;
	}

	.services-page .sv-intro-right {
		flex: 0 0 300px;
		max-width: 300px;
	}
}

/* ============================================================
   RESPONSIVE — Mobile  ≤ 767px
   ============================================================ */
@media (max-width: 767px) {
	.services-page .sv-container {
		padding-left: 22px;
		padding-right: 22px;
	}

	/* Hero stacks vertically */
	.services-page .sv-hero {
		padding-top: 40px;
		padding-bottom: 0;
	}

	.services-page .sv-hero-inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		min-height: 0;
	}

	/* Text block first */
	.services-page .sv-hero-left {
		order: 1;
		width: 100%;
		padding-right: 0;
		align-self: auto;
		text-align: center;
	}

	/* Eyebrow pill: inline-flex needs block + auto margins to centre; text-align centers wrapped lines */
	.services-page .sv-pill {
		display: block;
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	/* Eyebrow text label: left-aligned on mobile */
	.services-page .sv-eyebrow {
		text-align: left;
	}

	.services-page .sv-h1 {
		font-size: 48px;
		letter-spacing: -1.5px;
		line-height: 0.96;
	}

	.services-page .sv-hero-sub {
		font-size: 16px;
		max-width: 100%;
		margin-bottom: 0;
	}

	/* Hide founder image in hero on mobile only */
	.services-page .sv-hero-right {
		display: none !important;
	}

	/* CTA buttons: order 2 (directly below paragraph), full-width pill */
	.services-page .sv-hero-btns {
		order: 2;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 20px;
	}

	.services-page .sv-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-left: auto;
		margin-right: auto;
		height: 60px;
		padding: 0 24px;
		border-radius: 999px;
		box-sizing: border-box;
	}

	/* Services section */
	.services-page .sv-services {
		padding-top: 36px;
		padding-bottom: 64px;
	}

	/* Intro row stacks */
	.services-page .sv-intro-row {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 28px;
	}

	.services-page .sv-intro-h2 {
		font-size: 30px;
		letter-spacing: -0.8px;
	}

	.services-page .sv-intro-right {
		flex: none;
		max-width: 100%;
	}

	/* Cards: icon+num on row 1, body+link below */
	.services-page .sv-card {
		flex-wrap: wrap;
		padding: 20px 20px;
		row-gap: 12px;
		column-gap: 14px;
		height: auto;
		align-items: flex-start;
	}

	.services-page .sv-card-body {
		flex: 0 0 100%;
		order: 3;
	}

	.services-page .sv-card-link {
		flex: 0 0 100%;
		order: 4;
		margin-left: 0;
		justify-content: flex-start;
	}

	.services-page .sv-card-name {
		font-size: 17px;
	}
}

/* ============================================================
   RESPONSIVE — Mobile  ≤ 480px (extra-small screens)
   Must come after the 767px block so these rules win on narrow viewports.
   ============================================================ */
@media (max-width: 480px) {
	.services-page .sv-h1 {
		font-size: clamp(2.5rem, 12vw, 3rem);
		letter-spacing: -1px;
	}

	.services-page .sv-card-link {
		font-size: 13px;
	}
}

/* ============================================================
   About Gary Strip — entity interlinking section
   ============================================================ */
.services-page .sv-about-strip {
	padding: 48px 0;
	background: rgba(196,238,24,0.04);
	border-top: 1px solid rgba(196,238,24,0.12);
	border-bottom: 1px solid rgba(196,238,24,0.08);
}

.services-page .sv-about-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.services-page .sv-about-strip-copy {
	flex: 1;
	min-width: 280px;
}

.services-page .sv-about-strip-text {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	margin: 0 0 8px;
	line-height: 1.6;
}

.services-page .sv-about-strip-process {
	font-size: 14px;
	color: rgba(255,255,255,0.55);
	margin: 0;
}

.services-page .sv-about-strip-text a,
.services-page .sv-about-strip-process a {
	color: #c4ee18;
	text-decoration: none;
}

.services-page .sv-about-strip-text a:hover,
.services-page .sv-about-strip-process a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.services-page .sv-about-strip-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
