/**
 * SA — reusable Service page (template-service.php).
 * Scoped to body.service-page so it never leaks into the rest of the theme.
 * Same black + bright yellow palette as the rest of the site, for brand
 * consistency (assets/css/home.css, assets/css/lp-seo.css, contact.css).
 */

.service-page {
	--service-black: #191919;
	--service-black-soft: #161616;
	--service-yellow: #fdd201;
	--service-yellow-glow: rgba(253, 210, 1, 0.55);
	--service-ink: #17233d;
	--service-bg: #ffffff;
	--service-bg-alt: #f6f7f9;
	--service-border: #e2e8f0;
	--service-text-muted: #5b6b82;
	--service-white: #ffffff;

	background: var(--service-bg);
	color: var(--service-ink);
}

:where(.service-page) h1,
:where(.service-page) h2,
:where(.service-page) h3 {
	color: var(--service-ink);
}
:where(.service-page) a {
	color: inherit;
}

.service-page .site-content {
	min-height: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.service-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 2rem;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 1.02rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.service-btn--primary {
	background: var(--service-yellow);
	color: #14110a;
	box-shadow: 0 0 12px 2px var(--service-yellow-glow);
}
.service-btn--primary:hover,
.service-btn--primary:focus {
	color: #14110a;
	transform: translateY(-1px);
	box-shadow: 0 0 22px 5px var(--service-yellow-glow);
}
.service-btn--dark {
	background: var(--service-black);
	color: var(--service-yellow);
}
.service-btn--dark:hover,
.service-btn--dark:focus {
	background: var(--service-black-soft);
	color: var(--service-yellow);
	transform: translateY(-1px);
}

/* ==========================================================================
   Hero — black, matching the rest of the site's bookend bands
   ========================================================================== */

.service-hero {
	background: var(--service-black);
	color: #fff;
	padding-block: 3.5rem;
	position: relative;
	overflow: hidden;
}
.service-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 85% 20%, rgba(253, 210, 1, 0.12), transparent 45%);
	pointer-events: none;
}

/* Decorative background: drifting glow orbs + a faint "rankings climbing"
   line chart, so the hero has some depth and motion instead of sitting flat. */
.service-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.service-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
	opacity: 0.8;
	will-change: transform;
}
.service-hero__orb--1 {
	width: 26rem;
	height: 26rem;
	top: -8rem;
	right: -6rem;
	background: radial-gradient(circle, rgba(253, 210, 1, 0.85), transparent 70%);
	animation: service-orb-drift-1 22s ease-in-out infinite;
}
.service-hero__orb--2 {
	width: 19rem;
	height: 19rem;
	bottom: -6rem;
	left: 4%;
	background: radial-gradient(circle, rgba(255, 214, 10, 0.6), transparent 70%);
	animation: service-orb-drift-2 18s ease-in-out infinite;
}
.service-hero__orb--3 {
	width: 15rem;
	height: 15rem;
	top: 22%;
	left: 38%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
	animation: service-orb-drift-3 26s ease-in-out infinite;
}
@keyframes service-orb-drift-1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-3rem, 2rem) scale(1.1); }
}
@keyframes service-orb-drift-2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(2.5rem, -1.5rem) scale(1.08); }
}
@keyframes service-orb-drift-3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-1.5rem, -2rem) scale(0.95); }
}

.service-hero__chart {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 11.5rem;
	opacity: 0.9;
}
.service-hero__chart-line {
	stroke: var(--service-yellow);
	stroke-width: 3.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 700;
	stroke-dashoffset: 700;
	filter: drop-shadow(0 0 10px rgba(253, 210, 1, 0.85)) drop-shadow(0 0 22px rgba(253, 210, 1, 0.45));
	animation: service-chart-draw 2.2s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.service-hero__chart-fill {
	fill: rgba(253, 210, 1, 0.16);
	stroke: none;
	opacity: 0;
	animation: service-chart-fade 1.5s 1.6s ease-out forwards;
}
@keyframes service-chart-draw {
	to { stroke-dashoffset: 0; }
}
@keyframes service-chart-fade {
	to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.service-hero__orb {
		animation: none;
	}
	.service-hero__chart-line {
		animation: none;
		stroke-dashoffset: 0;
	}
	.service-hero__chart-fill {
		animation: none;
		opacity: 1;
	}
}
@media (max-width: 767.98px) {
	.service-hero__chart {
		display: none;
	}
}

.service-hero__inner {
	position: relative;
	z-index: 1;
}

.service-hero__heading {
	margin: 0 0 1rem;
	font-weight: 700;
	line-height: 1.15;
	font-size: clamp(2rem, 4vw, 2.9rem);
	color: #fff;
}
.service-hero__text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 42rem;
}
.service-hero__text p {
	margin-bottom: 0.75rem;
}
.service-hero__text p:last-child {
	margin-bottom: 0;
}

.service-hero__bullets {
	list-style: none;
	padding: 0;
	margin: 1.75rem 0 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.65rem 1.5rem;
}
@media (max-width: 420px) {
	.service-hero__bullets {
		grid-template-columns: 1fr;
	}
}
.service-hero__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 500;
	color: #fff;
}
.service-hero__bullets svg {
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--service-yellow);
}

/* Form card — stays white for legibility/trust */

.service-hero__form-card {
	background: var(--service-white);
	border-radius: 1rem;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 40px rgba(253, 210, 1, 0.08);
	padding: 1.25rem 1.5rem 1.4rem;
	position: relative;
	overflow: hidden;
	color: var(--service-ink);
}
.service-hero__form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--service-yellow), #ffe14d);
}
.service-hero__form-heading {
	color: var(--service-ink);
	font-size: 1.3rem;
	margin-bottom: 0.35rem;
}
.service-hero__form-subtext {
	color: var(--service-text-muted);
	font-size: 0.9rem;
	margin-bottom: 1.1rem;
}
.service-hero__form-card .wpcf7-form-control {
	width: 100%;
	border: 1px solid var(--service-border);
	border-radius: 0.5rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.9rem;
	font-family: inherit;
	background: #f5f8fc;
	color: var(--service-ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.service-hero__form-card select.wpcf7-form-control {
	background: #f5f8fc;
}
.service-hero__form-card .wpcf7-form-control:focus {
	outline: none;
	border-color: var(--service-yellow);
	box-shadow: 0 0 0 3px rgba(253, 210, 1, 0.2);
	background: #fff;
}
.service-hero__form-card textarea.wpcf7-form-control {
	min-height: 56px;
	resize: vertical;
}
.service-hero__form-card .wpcf7-submit {
	width: 100%;
	background: var(--service-yellow);
	color: #14110a;
	border: none;
	border-radius: 0.5rem;
	padding: 0.65rem 1rem;
	font-weight: 700;
	font-size: 1.02rem;
	margin-top: 0.15rem;
	box-shadow: 0 0 14px 2px var(--service-yellow-glow);
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.service-hero__form-card .wpcf7-submit:hover {
	box-shadow: 0 0 22px 5px var(--service-yellow-glow);
}
.service-hero__form-card .wpcf7-spinner {
	width: 0;
	height: 0;
	margin: 0;
	overflow: hidden;
}
.service-hero__form-card form.submitting .wpcf7-spinner {
	width: 24px;
	height: 24px;
	margin: 0.5rem auto 0;
	overflow: visible;
}
.service-hero__form-card .wpcf7-not-valid-tip {
	font-size: 0.8rem;
	color: #dc2626;
	margin-top: 0.25rem;
}
.service-hero__form-card .wpcf7-response-output {
	display: none;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	margin: 1rem 0 0;
	border: 1px solid var(--service-border);
}
.service-hero__form-card form.sent .wpcf7-response-output,
.service-hero__form-card form.failed .wpcf7-response-output,
.service-hero__form-card form.invalid .wpcf7-response-output,
.service-hero__form-card form.spam .wpcf7-response-output {
	display: block;
}
.service-hero__form-card form.sent .wpcf7-response-output {
	border-color: rgba(22, 163, 74, 0.4);
	background: rgba(22, 163, 74, 0.08);
	color: #0f7d38;
}
.service-hero__form-card form.failed .wpcf7-response-output,
.service-hero__form-card form.invalid .wpcf7-response-output,
.service-hero__form-card form.spam .wpcf7-response-output {
	border-color: rgba(220, 38, 38, 0.35);
	background: rgba(220, 38, 38, 0.06);
	color: #b91c1c;
}

/* ==========================================================================
   Logo slider — "Tools We Use" auto-scrolling strip under the hero.
   ========================================================================== */

.service-tools {
	background: var(--service-white);
	border-bottom: 1px solid var(--service-border);
	padding-block: 1.75rem 2rem;
}
.service-tools__label {
	text-align: center;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--service-ink);
	margin: 0 0 1.1rem;
}

/* Static row, not a scrolling marquee — see the [data-slider] markup note
   in template-service.php. Wraps onto multiple lines if a page ever lists
   more tools than fit one row, rather than looping/scrolling. */
.service-tools-slider__slide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2.5rem 3.5rem;
}

.service-tools__item {
	display: flex;
	align-items: center;
}
.service-tools__item img {
	height: 46px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
}
.service-tools__item--placeholder {
	white-space: nowrap;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--service-text-muted);
	border: 1px dashed var(--service-border);
	border-radius: 0.5rem;
	padding: 0.4rem 0.9rem;
}

/* ==========================================================================
   Content sections
   ========================================================================== */

.service-section {
	padding-block: clamp(3rem, 6vw, 5rem);
}
.service-section--alt {
	background: var(--service-bg-alt);
}
.service-section__head {
	margin-bottom: 2.5rem;
}

.service-copy {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--service-text-muted);
}
.service-copy h2 {
	color: var(--service-ink);
	font-weight: 700;
	margin-bottom: 1.25rem;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.service-copy p {
	margin-bottom: 1.1rem;
}
.service-copy p:last-child {
	margin-bottom: 0;
}
.service-copy a {
	color: var(--service-ink);
	font-weight: 700;
	text-decoration: none;
}
.service-copy a:hover {
	text-decoration: underline;
}
.service-copy--center {
	text-align: center;
	margin-bottom: 2rem;
}
.service-copy--outro {
	margin-top: 2rem;
	text-align: center;
	font-weight: 600;
	color: var(--service-ink);
}

.service-section__media {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.85rem;
	box-shadow: 0 20px 45px -20px rgba(23, 35, 61, 0.3);
}

/* ==========================================================================
   Benefit / included checklists
   ========================================================================== */

.service-benefits {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.service-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--service-ink);
}
.service-benefits svg {
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--service-yellow);
	background: var(--service-black);
	border-radius: 50%;
	padding: 3px;
	box-sizing: content-box;
}

.service-benefit-cards {
	margin-top: 2rem;
}

.service-benefit-card {
	height: 100%;
	background: var(--service-white);
	border: 1px solid var(--service-border);
	border-radius: 0.75rem;
	padding: 1.75rem;
}
.service-benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 0.6rem;
	background: var(--service-black);
	color: var(--service-yellow);
	margin-bottom: 1rem;
}
.service-benefit-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--service-ink);
	margin-bottom: 0.5rem;
}
.service-benefit-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--service-text-muted);
	margin-bottom: 0;
}

/* ==========================================================================
   Process steps — black "space" section (matching the rocket) with a
   vertical timeline that fills the full container width. Same climbing-
   rocket mechanism as the SEO landing page's process section
   (assets/css/lp-seo.css, assets/js/lp-seo.js).
   ========================================================================== */

.service-process {
	position: relative;
	background: var(--service-black);
	overflow: hidden;
}
.service-process .service-section__head {
	color: #fff;
}

/* Starfield: two tiled layers of small radial-gradient dots (different
   tile sizes so the repeat isn't obviously a grid); the second layer
   twinkles. Pure CSS, no image assets. */
.service-process__stars {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(1.6px 1.6px at 20px 30px, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 90px 110px, rgba(255, 255, 255, 0.75), transparent 60%),
		radial-gradient(1.6px 1.6px at 150px 55px, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 205px 150px, rgba(255, 255, 255, 0.65), transparent 60%),
		radial-gradient(1.8px 1.8px at 255px 20px, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 45px 175px, rgba(255, 255, 255, 0.6), transparent 60%);
	background-repeat: repeat;
	background-size: 280px 200px;
}
.service-process__stars::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(1.8px 1.8px at 60px 40px, var(--service-yellow), transparent 60%),
		radial-gradient(1.4px 1.4px at 140px 130px, #fff, transparent 60%),
		radial-gradient(2px 2px at 230px 80px, #fff, transparent 60%),
		radial-gradient(1.4px 1.4px at 300px 170px, rgba(255, 255, 255, 0.8), transparent 60%);
	background-repeat: repeat;
	background-size: 340px 220px;
	opacity: 0.7;
	animation: service-stars-twinkle 5s ease-in-out infinite;
}
@keyframes service-stars-twinkle {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.service-process__stars::after {
		animation: none;
	}
}

.service-process__inner {
	position: relative;
	z-index: 1;
}

.service-process .service-copy--outro {
	color: rgba(255, 255, 255, 0.85);
}

.service-timeline {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

/* Static rail behind every step, plus a yellow "fill" that grows downward
   (in JS, to the exact centre of each circle) as steps reveal — the rocket
   (.service-timeline__rocket) rides its bottom edge, so it climbs in step
   with the fill automatically, no extra JS needed. */
.service-timeline__track {
	position: absolute;
	left: 1.625rem;
	top: 1.625rem;
	bottom: 1.625rem;
	width: 3px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 2px;
	transform: translateX(-50%);
}
.service-timeline__fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, var(--service-yellow), #ffe14d);
	box-shadow: 0 0 8px rgba(253, 210, 1, 0.5);
	border-radius: 2px;
	transition: height 0.35s ease-out;
}

/* Glow halo behind the rocket. */
.service-timeline__fill::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 54px;
	height: 54px;
	transform: translate(-50%, 30%);
	background: radial-gradient(circle, rgba(253, 210, 1, 0.55), transparent 70%);
	border-radius: 50%;
	z-index: 1;
	pointer-events: none;
}

.service-timeline__rocket {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 52px;
	height: auto;
	transform: translate(-50%, 45%) rotate(0deg);
	z-index: 2;
	filter: drop-shadow(0 0 6px rgba(253, 210, 1, 0.8));
	pointer-events: none;
	animation: service-rocket-hover 1.6s ease-in-out infinite;
}
@keyframes service-rocket-hover {
	0%, 100% { transform: translate(-50%, 45%) rotate(0deg); }
	50% { transform: translate(-50%, 60%) rotate(0deg); }
}

.service-timeline-step {
	position: relative;
	padding-left: 4.5rem;
	padding-bottom: 3.75rem;
}
.service-timeline-step:last-child {
	padding-bottom: 0;
}

/* Not-yet-reached state: hollow circle, muted number. Content itself is
   never hidden — only the circle's fill changes as the track fill (and
   rocket) reach each step, so the section works with no JS/scroll. */
.service-timeline-step__num {
	position: absolute;
	left: 0;
	top: 0;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.55);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	z-index: 1;
	transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}
.service-timeline-step.is-visible .service-timeline-step__num {
	background: var(--service-yellow);
	border-color: var(--service-yellow);
	color: #14110a;
	box-shadow: 0 0 14px 2px rgba(253, 210, 1, 0.35);
}

.service-timeline-step__title {
	color: #fff;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: clamp(1.15rem, 1rem + 0.65vw, 1.4rem);
	margin-bottom: 0.4rem;
	transition: color 0.4s ease;
}
.service-timeline-step.is-visible .service-timeline-step__title {
	color: var(--service-yellow);
}
.service-timeline-step__text {
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.3rem);
	line-height: 1.65;
	margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.service-timeline__fill {
		transition: none !important;
		height: 100% !important;
	}
	.service-timeline__rocket {
		animation: none;
	}
}

/* ==========================================================================
   Package pricing cards (optional — shown instead of the plain pricing
   text block when a page's "Package Tiers" repeater has entries)
   ========================================================================== */

/* Soft glow behind the cards so the section has some depth instead of
   sitting flat on the plain alt background — echoes the hero's glow. */
.service-pricing {
	position: relative;
	overflow: hidden;
}
.service-pricing::before {
	content: '';
	position: absolute;
	top: 8%;
	left: 50%;
	width: 46rem;
	height: 26rem;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, rgba(253, 210, 1, 0.16), transparent 70%);
	pointer-events: none;
}
.service-pricing > .container {
	position: relative;
	z-index: 1;
}

.service-package-cards {
	margin: 3.5rem 0 2.5rem;
	align-items: stretch;
}
.service-package-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--service-white);
	border: 1px solid var(--service-border);
	border-radius: 1rem;
	padding: 2.5rem 1.85rem 2rem;
	box-shadow: 0 14px 32px -20px rgba(23, 35, 61, 0.3);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-package-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 42px -18px rgba(23, 35, 61, 0.32);
}

/* The "featured" tier gets the full black/yellow treatment and sits
   slightly raised above its neighbours, so it reads as the recommended
   pick at a glance rather than just another card in the row. */
.service-package-card--featured {
	background: var(--service-black);
	border: 2px solid var(--service-yellow);
	box-shadow: 0 25px 55px -20px rgba(0, 0, 0, 0.5), 0 0 45px rgba(253, 210, 1, 0.2);
	z-index: 2;
}
.service-package-card--featured:hover {
	box-shadow: 0 32px 60px -18px rgba(0, 0, 0, 0.55), 0 0 60px rgba(253, 210, 1, 0.3);
}
@media (min-width: 768px) {
	.service-package-card--featured {
		transform: translateY(-1rem) scale(1.035);
	}
	.service-package-card--featured:hover {
		transform: translateY(-1.5rem) scale(1.035);
	}
}

.service-package-card__badge {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--service-yellow);
	color: #14110a;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.4rem 1.1rem;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 8px 18px -4px rgba(253, 210, 1, 0.65);
}
.service-package-card__name {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--service-ink);
	margin-bottom: 0.5rem;
}
.service-package-card--featured .service-package-card__name {
	color: #fff;
}
.service-package-card__desc {
	font-size: 0.93rem;
	line-height: 1.6;
	color: var(--service-text-muted);
	margin-bottom: 1.35rem;
}
.service-package-card--featured .service-package-card__desc {
	color: rgba(255, 255, 255, 0.7);
}
.service-package-card__features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	flex-grow: 1;
}
.service-package-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--service-ink);
}
.service-package-card--featured .service-package-card__features li {
	color: rgba(255, 255, 255, 0.9);
}
.service-package-card__features svg {
	flex-shrink: 0;
	margin-top: 0.1rem;
	color: var(--service-yellow);
}
.service-package-card__prices {
	margin-top: auto;
	padding-top: 1.2rem;
	border-top: 1px solid var(--service-border);
}
.service-package-card--featured .service-package-card__prices {
	border-top-color: rgba(255, 255, 255, 0.18);
}
.service-package-card__price {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--service-ink);
	margin-bottom: 0.3rem;
}
.service-package-card--featured .service-package-card__price {
	color: var(--service-yellow);
	font-size: 1.3rem;
}
.service-package-card__care {
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--service-text-muted);
	margin-bottom: 0;
}
.service-package-card--featured .service-package-card__care {
	color: rgba(255, 255, 255, 0.6);
}

@media (prefers-reduced-motion: reduce) {
	.service-package-card,
	.service-package-card--featured {
		transition: none;
	}
}

/* ==========================================================================
   Cross-sell strip — compact banner pointing at another service page
   (e.g. Website Development → Hosting). Black band with a yellow button so
   it reads as a distinct, "look over here" moment rather than another
   content section.
   ========================================================================== */

.service-crosssell {
	background: var(--service-black);
	padding-block: 2rem;
}
.service-crosssell__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
}
.service-crosssell__copy {
	flex: 1 1 24rem;
}
.service-crosssell__heading {
	color: #fff;
	font-weight: 700;
	font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
	margin: 0 0 0.25rem;
}
.service-crosssell__text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	margin: 0;
}
.service-crosssell__btn {
	flex-shrink: 0;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.service-faq {
	border: 1px solid var(--service-border);
	border-radius: 0.85rem;
	overflow: hidden;
}
.service-faq .accordion-item {
	background: var(--service-white);
	border: none;
	border-bottom: 1px solid var(--service-border);
}
.service-faq .accordion-item:last-child {
	border-bottom: none;
}
.service-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
	box-shadow: inset 3px 0 0 var(--service-yellow);
}
.service-faq .accordion-button {
	font-weight: 600;
	color: var(--service-ink);
	background: var(--service-white);
}
.service-faq .accordion-button:not(.collapsed) {
	color: var(--service-ink);
	background: rgba(253, 210, 1, 0.08);
	font-weight: 700;
	box-shadow: none;
}
.service-faq .accordion-button:hover {
	background: rgba(253, 210, 1, 0.05);
}
.service-faq .accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(253, 210, 1, 0.25);
	border-color: var(--service-yellow);
}
.service-faq .accordion-body {
	color: var(--service-text-muted);
}

/* ==========================================================================
   Final CTA band — bright yellow, matching the homepage/landing page's
   closing section.
   ========================================================================== */

.service-final-cta {
	background: var(--service-yellow);
	padding-block: clamp(3rem, 6vw, 5rem);
}
.service-final-cta__heading {
	color: #000;
	font-weight: 700;
	margin-bottom: 0.75rem;
}
.service-final-cta__text {
	color: rgba(0, 0, 0, 0.65);
	max-width: 36rem;
	margin: 0 auto 1.5rem;
}
.service-final-cta__btn {
	display: inline-block;
	background: var(--service-black);
	color: var(--service-yellow);
	font-weight: 700;
	padding: 0.9rem 2rem;
	font-size: 1.05rem;
	border-radius: 0.5rem;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.25);
	transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.service-final-cta__btn:hover,
.service-final-cta__btn:focus {
	background: var(--service-black-soft);
	color: var(--service-yellow);
	transform: translateY(-1px);
	box-shadow: 0 0 18px 4px rgba(0, 0, 0, 0.3);
}
.service-final-cta__email {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #000;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: underline;
}
.service-final-cta__email:hover {
	color: #000;
	opacity: 0.7;
}
