/*
Theme Name: Tyler's Tech Services
Theme URI: https://tylerstechservices.com
Author: Tyler Bigley
Description: Custom WordPress theme for Tyler's Tech Services.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: wp-vibecoder-starter
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	/* Brand palette: navy + orange + tech cyan. --brand-cyan (#00AEEF) is
	   the bright accent for icons, active-nav indicators, and badges.
	   --blue is a deeper shade of the same cyan hue reserved for link/
	   text-on-white contexts, where the bright accent alone fails WCAG AA
	   contrast (~2.5:1 against white). */
	--ink: #0b1220;
	--navy: #06111f;
	--brand-cyan: #00aeef;
	--blue: #0077a8;
	--blue-hover: #0092c7;
	--pale-blue: #eaf7fc;
	--bg-soft: #f4f8fb;
	--border: #d7e5ee;
	--border-strong: #c1d6e3;
	--text: #334155;
	--text-muted: #64748b;
	--coral: #f26723;
	--coral-hover: #d84c21;
	/* Action orange: the button fill. #F26723 only reaches ~3.1:1 against
	   white text (fails AA for body-weight button labels), but navy text
	   on this orange reaches ~6:1, comfortably passing AA — so primary
	   buttons pair the brand orange fill with navy label text instead of
	   white. The hover shade (#D84C21) keeps the same navy-on-orange
	   pairing for a consistent, non-harsh treatment. */
	--action: #f26723;
	--action-hover: #d84c21;
	--navy-hover: #132339;
	--white: #ffffff;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--content-width: 1180px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-photo: 24px;
	--shadow-card: 0 1px 2px rgba(8, 17, 31, 0.04), 0 8px 24px rgba(8, 17, 31, 0.06);
	--shadow-card-hover: 0 4px 8px rgba(8, 17, 31, 0.06), 0 16px 32px rgba(8, 17, 31, 0.1);
	--shadow-photo: 0 2px 4px rgba(8, 17, 31, 0.05), 0 20px 44px rgba(8, 17, 31, 0.12);
	--utility-bar-height: 60px;
}

/* Desktop uses the floating pill (≈54px tall + 18px bottom offset), so the
   reserved space covers the pill's full footprint. */
@media (min-width: 1000px) {
	:root {
		--utility-bar-height: 72px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* Keep anchor targets clear of the sticky announcement bar + header
	   above and the fixed utility bar below. */
	scroll-padding-top: 104px;
	scroll-padding-bottom: calc(var(--utility-bar-height) + 12px);
}

@media (min-width: 1000px) {
	html {
		scroll-padding-top: 132px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	background: var(--white);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
}

@media (min-width: 640px) {
	body {
		font-size: 18px;
	}
}

h1,
h2,
h3 {
	color: var(--ink);
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 16px;
}

h1 {
	font-size: clamp(2.2rem, 8vw, 2.75rem);
	line-height: 1.08;
}

h2 {
	font-size: clamp(1.9rem, 6.5vw, 2.5rem);
}

@media (min-width: 900px) {
	h1 {
		font-size: clamp(2.9rem, 4.2vw, 3.9rem);
		line-height: 1.06;
	}

	h2 {
		font-size: clamp(1.85rem, 2.6vw + 1rem, 2.6rem);
	}
}

h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

p {
	margin: 0 0 16px;
}

a {
	color: var(--blue);
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

/* Reusable placeholder standing in for photography that has not been
   uploaded to the WordPress Media Library yet. Applied to a <div> in place
   of an <img>; swap back to a real <img> once real photography is approved. */
.media-placeholder {
	align-items: center;
	background: linear-gradient(135deg, var(--pale-blue) 0%, var(--bg-soft) 100%);
	border: 1px dashed var(--border-strong);
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	width: 100%;
}

.media-placeholder__icon {
	height: clamp(28px, 6vw, 40px);
	opacity: 0.55;
	width: clamp(28px, 6vw, 40px);
}

.media-placeholder__text {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	opacity: 0.75;
	text-align: center;
}

/* Dark variant for placeholders sitting on the navy inner-page masthead or
   hero photo frame, where the light card treatment above lacks contrast. */
.media-placeholder--dark {
	background: linear-gradient(135deg, #16283f 0%, var(--navy) 100%);
	border: none;
	color: rgba(234, 247, 255, 0.75);
}

ul {
	margin: 0;
	padding: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
}

.site-container {
	margin-inline: auto;
	max-width: var(--content-width);
	padding-inline: 20px;
	width: 100%;
}

@media (min-width: 480px) {
	.site-container {
		padding-inline: 24px;
	}
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.screen-reader-text:focus {
	background: var(--white);
	clip: auto;
	clip-path: none;
	height: auto;
	left: 12px;
	padding: 12px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

/* Buttons */
.button-link {
	align-items: center;
	border: 2px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 700;
	font-size: 1rem;
	gap: 10px;
	justify-content: center;
	padding: 13px 26px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

/* Leading action icons on buttons. Sized to sit just under the cap height
   of the label so the pair reads as one unit. */
.button-link > svg {
	flex-shrink: 0;
	height: 19px;
	width: 19px;
}

.button-link--primary {
	background: var(--action);
	border-color: var(--action);
	color: var(--navy);
}

.button-link--primary:hover {
	background: var(--action-hover);
	border-color: var(--action-hover);
	box-shadow: 0 4px 14px rgba(216, 76, 33, 0.32);
	color: var(--navy);
}

/* Secondary buttons default to an outline so the primary orange button
   leads the visual hierarchy. Hover/focus fills in solid navy so the
   interaction reads as a distinct, deliberate state. */
.button-link--secondary {
	background: transparent;
	border-color: var(--navy);
	color: var(--navy);
}

.button-link--secondary:hover,
.button-link--secondary:focus-visible {
	background: var(--navy);
	border-color: var(--navy);
	box-shadow: 0 4px 14px rgba(8, 17, 31, 0.18);
	color: var(--white);
}

/* On a navy section a navy outline would disappear, so the on-dark
   variant uses a white outline by default and fills white on hover/focus
   (a navy fill would blend into the navy background behind it). */
.button-link--on-dark.button-link--secondary {
	background: transparent;
	border-color: var(--white);
	color: var(--white);
}

.button-link--on-dark.button-link--secondary:hover,
.button-link--on-dark.button-link--secondary:focus-visible {
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 4px 14px rgba(255, 255, 255, 0.16);
	color: var(--navy);
}

/* Primary buttons sitting on a navy band. Darkening the fill on hover
   would sink it under the 3:1 contrast floor against the band, so the
   fill holds and a brand-coral ring carries the interaction. */
.final-cta .button-link--primary:hover,
.remote-connect .button-link--primary:hover {
	background: var(--action);
	border-color: var(--action);
	box-shadow: 0 0 0 3px rgba(242, 103, 35, 0.55);
	color: var(--navy);
}

/* Pressed state drops the hover shadow so the click registers immediately. */
.button-link:active {
	box-shadow: none;
}

/* Call buttons show the full number once there is room and a shorter
   "Call Tyler" label under 640px, so a Call button sharing a row with
   another CTA does not wrap awkwardly on a phone. */
.button-link .label-mobile {
	display: none;
}

@media (max-width: 639px) {
	.button-link .label-desktop {
		display: none;
	}

	.button-link .label-mobile {
		display: inline;
	}
}

/* Eyebrow label */
.eyebrow {
	color: var(--blue);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow--on-dark {
	color: #8ed3f4;
}

/* Badge */
.badge {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 16px;
	padding: 8px 16px;
}

/* Section heading */
.section-heading {
	margin-bottom: 40px;
	max-width: 720px;
}

.section-heading p {
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1.55;
}

.section-heading--centered {
	margin-inline: auto;
	text-align: center;
}

/* Announcement bar (slim, CSS-only rotating messages) */
.announcement-bar {
	background: var(--navy);
	color: #d7e6f2;
	padding-block: 6px;
}

.announcement-bar__rotator {
	font-size: 0.78rem;
	line-height: 1.4;
	margin: 0;
	min-height: 1.4em;
	position: relative;
	text-align: center;
}

/* Four messages, 5 seconds each; the keyframe percentages keep the same
   0.6s fade and 4.5s hold as the previous three-message cycle. */
.announcement-bar__message {
	animation: announcement-rotate 20s infinite;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

.announcement-bar__message:nth-child(2) {
	animation-delay: 5s;
}

.announcement-bar__message:nth-child(3) {
	animation-delay: 10s;
}

.announcement-bar__message:nth-child(4) {
	animation-delay: 15s;
}

@keyframes announcement-rotate {
	0% {
		opacity: 0;
	}

	3% {
		opacity: 1;
	}

	22.5% {
		opacity: 1;
	}

	25.5%,
	100% {
		opacity: 0;
	}
}

@media (min-width: 640px) {
	.announcement-bar__rotator {
		font-size: 0.85rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.announcement-bar__message {
		animation: none;
	}

	.announcement-bar__message:first-child {
		opacity: 1;
		position: static;
	}

	.announcement-bar__message:not(:first-child) {
		display: none;
	}
}

/* Sticky top region: the announcement bar and header stick together, so
   their combined height never needs manual offset coordination. */
.site-top {
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 4px 16px rgba(8, 17, 31, 0.06);
	padding-block: 8px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
}

.site-logo {
	display: inline-flex;
	flex-shrink: 0;
}

.site-logo img {
	height: 38px;
	width: auto;
}

.site-nav--desktop {
	display: none;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	list-style: none;
}

.nav-menu a {
	color: var(--text);
	font-weight: 600;
	text-decoration: none;
}

.nav-menu a:hover {
	color: var(--blue);
}

/* Active page indicators. Core menus emit current-menu-item /
   current-menu-ancestor (and the current_page_* aliases); the fallback
   menu in functions.php now emits the same classes plus aria-current,
   so one set of selectors covers both. */
.nav-menu > .current-menu-item > a,
.nav-menu > .current_page_item > a,
.nav-menu > .current-menu-ancestor > a,
.nav-menu > .current_page_parent > a,
.nav-menu > .current_page_ancestor > a {
	color: var(--navy);
}

/* Mobile is a compact utility header: logo left, phone + menu buttons right.
   The Schedule Service CTA appears only on desktop; the hero carries it on mobile. */
.site-header__actions {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.header-phone {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--navy);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.header-phone svg {
	height: 20px;
	width: 20px;
}

.site-header__cta {
	display: none;
}

/* Mobile menu (CSS-only details/summary disclosure) */
.mobile-nav {
	position: relative;
}

.mobile-nav__toggle {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
	list-style: none;
	min-height: 44px;
	padding: 10px 14px;
}

.mobile-nav__toggle::marker {
	content: "";
}

.mobile-nav__toggle::-webkit-details-marker {
	display: none;
}

.mobile-nav__icon,
.mobile-nav__icon::before,
.mobile-nav__icon::after {
	background: var(--navy);
	border-radius: 2px;
	content: "";
	display: block;
	height: 2px;
	width: 18px;
}

.mobile-nav__icon {
	position: relative;
}

.mobile-nav__icon::before {
	position: absolute;
	top: -6px;
}

.mobile-nav__icon::after {
	position: absolute;
	top: 6px;
}

.mobile-nav__panel {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card-hover);
	margin-top: 8px;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 100%;
	width: 230px;
	z-index: 60;
}

.mobile-nav__panel .nav-menu {
	flex-direction: column;
	gap: 2px;
}

.mobile-nav__panel .nav-menu a {
	border-radius: 8px;
	display: block;
	font-size: 17px;
	padding: 10px 12px;
}

.mobile-nav__panel .nav-menu a:hover {
	background: var(--bg-soft);
}

/* Active item in the mobile panel: soft blue pill with a cyan edge, plus
   the bolder navy text, so the state does not rely on color alone. */
.mobile-nav__panel .nav-menu .current-menu-item:not(.menu-item--cta) > a,
.mobile-nav__panel .nav-menu .current_page_item:not(.menu-item--cta) > a,
.mobile-nav__panel .nav-menu > .current-menu-ancestor > a,
.mobile-nav__panel .nav-menu > .current_page_parent > a,
.mobile-nav__panel .nav-menu > .current_page_ancestor > a {
	background: var(--pale-blue);
	box-shadow: inset 4px 0 0 var(--brand-cyan);
	color: var(--navy);
	font-weight: 700;
}

/* Submenu (Services). The chevron toggle buttons are injected by site-ui.js;
   without JS the submenus stay reachable (hover/focus on desktop, expanded
   in the mobile panel) and the parent link gets a CSS chevron instead. */
.nav-menu .sub-menu {
	list-style: none;
}

.submenu-toggle {
	align-items: center;
	background: none;
	border: 0;
	border-radius: 8px;
	color: var(--text);
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	padding: 4px;
}

.submenu-toggle svg {
	height: 16px;
	transition: transform 0.15s ease;
	width: 16px;
}

.submenu-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

html:not(.js) .nav-menu .menu-item-has-children > a::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: inline-block;
	height: 6px;
	margin-left: 8px;
	transform: rotate(45deg) translate(-2px, -2px);
	width: 6px;
}

.mobile-nav__panel .menu-item-has-children {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.mobile-nav__panel .menu-item-has-children > a {
	flex: 1 1 auto;
}

.mobile-nav__panel .submenu-toggle {
	flex-shrink: 0;
	height: 42px;
	width: 42px;
}

.mobile-nav__panel .submenu-toggle:hover {
	background: var(--bg-soft);
}

.mobile-nav__panel .sub-menu {
	border-left: 2px solid var(--border);
	flex: 1 1 100%;
	margin: 2px 0 6px 12px;
	padding-left: 6px;
}

.mobile-nav__panel .sub-menu a {
	font-size: 16px;
	padding: 9px 12px;
}

.mobile-nav__panel .sub-menu a:hover,
.mobile-nav__panel .sub-menu a:focus-visible {
	background: var(--pale-blue);
	color: var(--navy);
}

/* Collapsed by default only when JS can expand it again. */
html.js .mobile-nav__panel .menu-item-has-children:not(.is-open) > .sub-menu {
	display: none;
}

/* Schedule Service appears as a menu item only in the mobile panel;
   the desktop header keeps its dedicated CTA button. */
.mobile-nav__panel .menu-item--cta {
	margin-top: 6px;
}

.mobile-nav__panel .menu-item--cta a {
	background: var(--coral);
	border-radius: 999px;
	color: var(--navy);
	font-weight: 700;
	text-align: center;
}

.mobile-nav__panel .menu-item--cta a:hover {
	background: var(--coral-hover);
}

@media (min-width: 1000px) {
	.site-header {
		padding-block: 0;
	}

	.site-header__inner {
		gap: 32px;
		min-height: 72px;
	}

	.site-logo img {
		height: 50px;
	}

	.site-nav--desktop {
		display: block;
		margin-left: auto;
	}

	.site-nav--desktop .nav-menu {
		flex-wrap: nowrap;
		gap: 26px;
	}

	.site-nav--desktop .nav-menu a {
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.site-nav--desktop .menu-item--cta {
		display: none;
	}

	/* Active top-level item: navy text plus a small cyan-to-blue bar under
	   the label. Absolutely positioned, so it causes no layout shift. */
	.site-nav--desktop .nav-menu > .menu-item > a {
		position: relative;
	}

	.site-nav--desktop .nav-menu > .current-menu-item > a::after,
	.site-nav--desktop .nav-menu > .current_page_item > a::after,
	.site-nav--desktop .nav-menu > .current-menu-ancestor > a::after,
	.site-nav--desktop .nav-menu > .current_page_parent > a::after,
	.site-nav--desktop .nav-menu > .current_page_ancestor > a::after {
		background: var(--brand-cyan);
		border-radius: 999px;
		bottom: -8px;
		content: "";
		height: 4px;
		left: 0;
		position: absolute;
		right: 0;
	}

	/* Desktop dropdown: opens on hover, keyboard focus, or toggle click. */
	.site-nav--desktop .menu-item-has-children {
		align-items: center;
		display: flex;
		gap: 2px;
		position: relative;
	}

	.site-nav--desktop .sub-menu {
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-card-hover);
		display: flex;
		flex-direction: column;
		gap: 2px;
		left: 50%;
		min-width: 220px;
		opacity: 0;
		padding: 8px;
		position: absolute;
		top: calc(100% + 10px);
		transform: translate(-50%, 0);
		visibility: hidden;
		z-index: 70;
	}

	/* Invisible bridge so hover survives the gap between link and dropdown. */
	.site-nav--desktop .sub-menu::before {
		content: "";
		height: 14px;
		left: 0;
		position: absolute;
		right: 0;
		top: -14px;
	}

	.site-nav--desktop .menu-item-has-children:hover > .sub-menu,
	.site-nav--desktop .menu-item-has-children:focus-within > .sub-menu,
	.site-nav--desktop .menu-item-has-children.is-open > .sub-menu {
		opacity: 1;
		visibility: visible;
	}

	/* Set by site-ui.js after Escape so the dropdown stays closed while
	   focus sits on the toggle button. */
	.site-nav--desktop .menu-item-has-children.is-suppressed > .sub-menu {
		opacity: 0;
		visibility: hidden;
	}

	.site-nav--desktop .sub-menu a {
		border-radius: 8px;
		display: block;
		padding: 9px 12px;
		white-space: nowrap;
	}

	.site-nav--desktop .sub-menu a:hover,
	.site-nav--desktop .sub-menu a:focus-visible {
		background: var(--pale-blue);
		color: var(--navy);
	}

	/* Active service page inside the dropdown: same cyan-edge pill as the
	   mobile panel so the two menus read consistently. */
	.site-nav--desktop .sub-menu .current-menu-item > a,
	.site-nav--desktop .sub-menu .current_page_item > a {
		background: var(--pale-blue);
		box-shadow: inset 4px 0 0 var(--brand-cyan);
		color: var(--navy);
		font-weight: 700;
	}

	.site-header__actions {
		margin-left: 0;
	}

	.site-header__cta {
		display: inline-flex;
		font-size: 0.95rem;
		padding: 12px 22px;
	}

	.header-phone,
	.mobile-nav {
		display: none;
	}
}

/* Hero */
.hero {
	background: linear-gradient(180deg, var(--bg-soft) 0%, var(--pale-blue) 100%);
	padding-block: 52px 48px;
}

/* The mobile gap separates the trust bar from the photo card so the photo
   reads as its own card instead of being jammed under the trust strip. */
.hero__inner {
	align-items: center;
	display: grid;
	gap: 44px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.hero {
		padding-block: clamp(56px, 6vw, 76px);
	}

	.hero__inner {
		gap: 64px;
		grid-template-columns: 1.083fr 1fr;
	}
}

/* Keep the mobile H1 strong but not oversized; desktop inherits the global size.
   text-wrap: balance evens out the two wrapped lines so no word is orphaned. */
.hero__content h1 {
	margin-bottom: 12px;
	text-wrap: balance;
}

@media (max-width: 899px) {
	.hero__content h1 {
		font-size: clamp(1.95rem, 7vw, 2.6rem);
	}
}

/* Small bold service-area line under the H1 — a support line, not a second headline. */
.hero__location {
	color: var(--navy);
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
	font-weight: 700;
	margin: 0 0 20px;
}

.hero__lede {
	color: var(--text);
	font-size: 1.1rem;
	line-height: 1.65;
	max-width: 560px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 26px;
}

.hero__actions .button-link {
	min-height: 48px;
}

/* Below this width the two CTAs cannot share a row cleanly, so stack them full width. */
@media (max-width: 459px) {
	.hero__actions .button-link {
		flex: 1 1 100%;
	}
}

@media (min-width: 900px) {
	/* Slightly under the global h1 cap so the headline breaks as two even
	   lines and keeps "Your Local Tech Guy" together. */
	.hero__content h1 {
		font-size: 2.5rem;
	}

	.hero__location {
		margin-bottom: 18px;
	}

	.hero__actions {
		margin: 28px 0 24px;
	}
}

/* Hero trust bar: light proof strip under the CTAs — one rounded card,
   three equal segments with subtle dividers, icon above a bold label. */
.hero__trust-bar {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(8, 17, 31, 0.05);
	color: var(--navy);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 0;
	max-width: 560px;
	overflow: hidden;
	padding: 0;
}

.hero__trust-bar li {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 0.75rem;
	font-weight: 700;
	gap: 5px;
	justify-content: center;
	line-height: 1.25;
	padding: 10px 8px;
	text-align: center;
}

.hero__trust-bar li + li {
	border-left: 1px solid var(--border);
}

.hero__trust-icon {
	color: var(--brand-cyan);
	flex-shrink: 0;
	height: 16px;
	width: 16px;
}

/* Five small stars in a row for the reviews segment, sized to match the
   single-icon height of the other segments. */
.hero__trust-stars {
	display: flex;
	gap: 2px;
}

.hero__trust-stars .hero__trust-icon {
	height: 13px;
	width: 13px;
}

@media (min-width: 640px) {
	.hero__trust-stars .hero__trust-icon {
		height: 15px;
		width: 15px;
	}
}

@media (min-width: 640px) {
	.hero__trust-bar li {
		font-size: 0.85rem;
		gap: 6px;
		padding: 12px 8px;
	}
}

/* Hero photo frame */
.hero__photo-frame {
	background: var(--white);
	border-radius: 22px;
	box-shadow: var(--shadow-photo);
	margin: 0;
	max-width: 620px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

/* The bench photo is portrait; bias the crop upward so the laptop screen
   and keyboard stay in frame inside the landscape-leaning card. */
.hero__photo {
	height: clamp(210px, 56vw, 300px);
	object-fit: cover;
	object-position: 50% 38%;
	width: 100%;
}

@media (min-width: 900px) {
	.hero__photo-frame {
		border-radius: 28px;
	}

	.hero__photo {
		height: clamp(440px, 37vw, 540px);
		min-height: 440px;
	}
}

.hero__photo-caption {
	background: linear-gradient(0deg, rgba(8, 17, 31, 0.92) 0%, rgba(8, 17, 31, 0.72) 55%, rgba(8, 17, 31, 0) 100%);
	bottom: 0;
	color: var(--white);
	left: 0;
	padding: 32px 24px 22px;
	position: absolute;
	right: 0;
}

.hero__photo-heading {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.hero__photo-text {
	color: #dbe7f0;
	font-size: 0.95rem;
	margin: 0;
}

/* On very narrow screens, tighten the caption so the overlay stays
   subordinate to the photo. */
@media (max-width: 479px) {
	.hero__photo-caption {
		padding: 26px 18px 16px;
	}

	.hero__photo-text {
		font-size: 0.9rem;
	}
}

/* Three customer path cards */
.customer-paths {
	padding-block: clamp(56px, 8vw, 96px);
}

.customer-paths__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.customer-paths__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.customer-paths__grid {
		gap: 0 28px;
		grid-auto-rows: auto;
		grid-template-columns: repeat(3, 1fr);
	}
}

.path-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 34px 28px 32px;
	position: relative;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.path-card::before {
	background: var(--brand-cyan);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

/* Hover/focus reads as an on-brand lift, not a dark/pressed state: the
   border and ring go light blue/cyan instead of navy. The ring is a
   box-shadow (not a wider border) so the card never reflows. */
.path-card:hover {
	border-color: var(--brand-cyan);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.4), var(--shadow-card-hover);
}

/* The whole card is a single link; keep the card's own text colors and
   give keyboard focus the same lift as hover plus a visible outline. */
.path-card--link {
	color: inherit;
	text-decoration: none;
}

.path-card--link:focus-visible {
	border-color: var(--brand-cyan);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.4), var(--shadow-card-hover);
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Hovering or focusing anywhere on the card also deepens the inner
   button's navy fill and rings it in cyan, so the card reads as one
   control without ever turning black/navy-outlined. */
.path-card--link:hover .path-card__button,
.path-card--link:focus-visible .path-card__button {
	background: var(--navy-hover);
	border-color: var(--brand-cyan);
	color: var(--white);
}

/* Subgrid keeps icon, title, description, bullets, and button rows
   aligned across all three cards at every desktop width. */
@media (min-width: 1000px) {
	.path-card {
		display: grid;
		grid-row: span 5;
		grid-template-rows: subgrid;
	}
}

/* Dual-tone icon tile: cyan-tinted background, navy line icon, and a
   small coral accent dot so it reads as more than a flat outline glyph. */
.path-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border: 1px solid rgba(0, 174, 239, 0.35);
	border-radius: 16px;
	color: var(--navy);
	display: inline-flex;
	height: 56px;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
	width: 56px;
}

.path-card__icon::after {
	background: var(--coral);
	border: 2px solid var(--white);
	border-radius: 999px;
	bottom: -4px;
	content: "";
	height: 12px;
	position: absolute;
	right: -4px;
	width: 12px;
}

.path-card__icon svg {
	height: 28px;
	width: 28px;
}

.path-card__desc {
	color: var(--text);
}

.path-card__bullets {
	flex-grow: 1;
	list-style: none;
	margin: 4px 0 24px;
}

.path-card__bullets li {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.95rem;
	padding: 9px 0;
}

.path-card__bullets li:first-child {
	border-top: none;
}

/* Uses the shared .button-link--secondary look as-is: a navy outline by
   default (white background, navy text, navy border), filling solid navy
   with a cyan ring only on hover/focus via the card-level rule above. */
.path-card__button {
	align-self: flex-start;
	margin-top: auto;
}

@media (max-width: 699px) {
	.path-card {
		padding: 26px 22px;
	}

	.path-card__icon {
		margin-bottom: 16px;
	}

	.path-card h3 {
		font-size: 1.35rem;
		line-height: 1.15;
	}

	.path-card p {
		font-size: 17px;
		line-height: 1.5;
	}

	.path-card__bullets {
		margin-bottom: 18px;
	}

	.path-card__bullets li {
		font-size: 16px;
		line-height: 1.4;
		padding: 7px 0;
	}
}

/* Expectations */
.expectations {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.expectations__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 800px) {
	.expectations__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.expectation-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: 30px 26px;
}

.expectation-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border: 1px solid rgba(0, 174, 239, 0.25);
	border-radius: 14px;
	color: var(--brand-cyan);
	display: inline-flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 18px;
	width: 48px;
}

.expectation-card__icon svg {
	height: 24px;
	width: 24px;
}

.expectation-card h3 {
	font-size: 1.15rem;
}

.expectation-card p {
	color: var(--text-muted);
	font-size: 0.98rem;
	margin: 0;
}

/* Rebrand trust */
.rebrand-trust {
	background: var(--pale-blue);
	padding-block: clamp(48px, 8vw, 88px);
}

.rebrand-trust__inner {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.rebrand-trust__inner {
		align-items: center;
		grid-template-columns: 0.85fr 1.15fr;
	}
}

.rebrand-trust__lead h2 {
	margin-bottom: 0;
}

.rebrand-trust__body p {
	font-size: 1.05rem;
}

/* Pain point */
.pain-point {
	background: var(--navy);
	color: #c7d3de;
	padding-block: clamp(56px, 8vw, 96px);
}

.pain-point__inner {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.pain-point__inner {
		grid-template-columns: 1fr 1fr;
	}
}

.pain-point h2 {
	color: var(--white);
}

.pain-point__body p {
	color: #c7d3de;
	font-size: 1.05rem;
}

.pain-point__checklist {
	list-style: none;
	margin-top: 20px;
}

.pain-point__checklist li {
	border-top: 1px solid rgba(199, 211, 222, 0.2);
	font-weight: 600;
	padding: 12px 0 12px 30px;
	position: relative;
}

.pain-point__checklist li:first-child {
	border-top: none;
}

.pain-point__checklist li::before {
	color: var(--brand-cyan);
	content: "\2713";
	left: 0;
	position: absolute;
}

/* Common problems grid */
.problems-grid {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.problems-grid__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.problems-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.problems-grid__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.problem-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	column-gap: 14px;
	display: grid;
	grid-template-columns: auto 1fr;
	padding: 20px;
}

.problem-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border-radius: 10px;
	color: var(--brand-cyan);
	display: inline-flex;
	grid-row: 1 / span 2;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.problem-card__icon svg {
	height: 22px;
	width: 22px;
}

.problem-card h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.problem-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* Popular services: compact link chips, deliberately lighter than a card
   grid — each chip routes to the matching service page. */
.popular-services {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.popular-services__list {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.popular-services__list li {
	list-style: none;
}

@media (min-width: 480px) {
	.popular-services__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 800px) {
	.popular-services__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1100px) {
	.popular-services__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.popular-service-link {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	display: flex;
	font-size: 0.95rem;
	font-weight: 600;
	gap: 10px;
	justify-content: space-between;
	min-height: 48px;
	padding: 10px 18px;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.popular-service-link:hover,
.popular-service-link:focus-visible {
	background: var(--navy);
	border-color: var(--navy);
	box-shadow: var(--shadow-card);
	color: var(--white);
}

.popular-service-link:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.popular-service-link svg {
	color: var(--brand-cyan);
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}

/* Pricing preview */
.pricing-preview {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.pricing-preview__disclaimer {
	color: var(--text-muted);
	font-size: 0.95rem;
	font-weight: 600;
	margin: -20px auto 36px;
	max-width: 640px;
	text-align: center;
}

.pricing-preview__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 800px) {
	.pricing-preview__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pricing-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	text-align: center;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Hover lifts with the brand-cyan ring used by the other card grids, not
   a dark/pressed navy border. */
.pricing-card:hover {
	border-color: var(--brand-cyan);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.4), var(--shadow-card-hover);
}

.pricing-card--highlighted {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.pricing-card__price {
	color: var(--ink);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 12px;
}

.pricing-card p:not(.pricing-card__price) {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.pricing-card .button-link {
	margin-top: auto;
	width: 100%;
}

.pricing-preview__note {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 32px auto 0;
	max-width: 720px;
	text-align: center;
}

/* Single directional link under the homepage pricing cards. */
.pricing-preview__cta {
	margin-top: 36px;
	text-align: center;
}

/* About Tyler */
.about-tyler {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-tyler__inner {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.about-tyler__inner {
		grid-template-columns: 0.85fr 1.15fr;
	}
}

/* The location photo is landscape; crop it to the portrait card shape the
   layout was designed around so the text column stays balanced. */
.about-tyler__media img,
.about-tyler__media .media-placeholder {
	aspect-ratio: 6 / 7;
	border-radius: var(--radius-photo);
	box-shadow: var(--shadow-photo);
	object-fit: cover;
	width: 100%;
}

.about-tyler__body p {
	font-size: 1.05rem;
}

/* Quiet one-line rebrand note; the full story lives on the About page. */
.about-tyler__body .about-tyler__rebrand-note {
	border-top: 1px solid var(--border-strong);
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 24px;
	padding-top: 14px;
}

/* Process: shared 1-2-3-4 numbered step layout used by every "how it
   works" section (Home Tech Help, Computer Repair, Remote Support, Business
   IT & AI, Contact, About). Each step is its own bordered card so the
   sequence is easy to follow at a glance instead of just a row of numbers
   and paragraphs. */
.process {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.process__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.process__grid {
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.process__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.process-step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: 28px 24px;
	text-align: center;
}

.process-step__number {
	align-items: center;
	background: var(--blue);
	border-radius: 999px;
	color: var(--white);
	display: inline-flex;
	font-size: 1.05rem;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	margin: 0 auto 16px;
	width: 44px;
}

.process-step h3 {
	margin: 0 0 8px;
}

.process-step p {
	color: var(--text-muted);
	margin: 0;
}

/* The shared .process band is white by default; sections that sit on a
   soft band (e.g. .about-process) still show a clear white card edge
   against it via the border above. */

/* Testimonials / reviews */
.testimonials {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.testimonials__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 26px;
}

.testimonial-card__tag {
	align-self: flex-start;
	background: var(--pale-blue);
	border-radius: 999px;
	color: var(--blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
	padding: 4px 12px;
}

.testimonial-card__quote {
	color: var(--text);
	font-size: 1rem;
}

.testimonial-card__name {
	color: var(--ink);
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 700;
	margin-top: auto;
}

.testimonial-card__source {
	color: var(--text-muted);
	display: block;
	font-size: 0.8rem;
	font-style: normal;
	font-weight: 400;
}

/* Homepage variant: reviews sit between two soft sections, so this copy
   stays white to keep the section backgrounds alternating. */
.testimonials--on-white {
	background: var(--white);
}

.testimonials__cta {
	margin-top: 36px;
	text-align: center;
}

.button-link--google {
	align-items: center;
	background: var(--white);
	border-color: var(--border-strong);
	color: var(--navy);
	display: inline-flex;
	gap: 10px;
	justify-content: center;
}

.button-link--google:hover {
	border-color: var(--navy);
}

.button-link--google svg {
	flex-shrink: 0;
	height: 18px;
	width: 18px;
}

.button-link--google__star {
	color: var(--brand-cyan);
}

.button-link--google__external {
	color: var(--text-muted);
	height: 15px;
	width: 15px;
}

/* Final CTA */
.final-cta {
	background: var(--navy);
	padding-block: clamp(56px, 8vw, 96px);
	text-align: center;
}

.final-cta__inner {
	margin-inline: auto;
	max-width: 720px;
}

.final-cta h2 {
	color: var(--white);
}

.final-cta p {
	color: #c7d3de;
	font-size: 1.1rem;
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 12px;
}

/* Footer */
.site-footer {
	background: var(--navy);
	color: #c7d3de;
}

.footer__columns {
	display: grid;
	gap: 36px;
	grid-template-columns: 1fr;
	padding-block: 56px 40px;
}

@media (min-width: 700px) {
	.footer__columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.footer__columns {
		grid-template-columns: repeat(4, 1fr);
	}
}

.footer__heading {
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 14px;
}

/* Footer brand is deliberately styled text, not the full logo image. */
.footer__logo {
	color: var(--white);
	display: inline-block;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-bottom: 12px;
	text-decoration: none;
}

.footer__logo:hover {
	color: var(--brand-cyan);
}

.footer__column p {
	color: #c7d3de;
	font-size: 0.95rem;
}

.footer__small-text {
	color: #9db0c1;
	font-size: 0.875rem;
}

.footer__link-list,
.footer__plain-list {
	list-style: none;
}

.footer__link-list li,
.footer__plain-list li {
	font-size: 0.95rem;
	list-style: none;
	padding: 6px 0;
}

.footer__link-list a {
	color: #c7d3de;
	text-decoration: none;
}

.footer__link-list a:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer__plain-list li {
	color: #c7d3de;
}

.footer__column .button-link {
	margin-top: 8px;
}

.footer__bottom {
	border-top: 1px solid rgba(199, 211, 222, 0.2);
	color: #9db0c1;
	font-size: 0.875rem;
	padding-block: 20px;
}

/* Copyright plus legal links in one quiet row. */
.footer__legal {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin: 0;
}

/* Legal links follow the footer nav link style: muted, white underline on hover. */
.footer__legal a {
	color: #c7d3de;
	text-decoration: none;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
	color: var(--white);
	text-decoration: underline;
}

.footer__legal-divider {
	color: rgba(157, 176, 193, 0.55);
}

/* The full row does not fit narrow screens: stack the copyright and each
   link on its own line instead of letting the pipes wrap mid-row. */
@media (max-width: 639px) {
	.footer__legal {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.footer__legal-divider {
		display: none;
	}
}

/* Inner pages (Computer Repair and future service pages) */
/* Reusable compact image masthead: photo banner, dark overlay, breadcrumb,
   page title, short phrase, and appointment pill. Deliberately much shorter
   than the homepage hero — inner pages get straight to the useful content. */
.inner-masthead {
	background: var(--navy);
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.inner-masthead__image {
	/* Slightly desaturated and darkened so the photo sits under the scrim
	   without competing with the headline. Deliberately neutral: no hue
	   shift, no blue tint — the photo keeps its own color. */
	filter: saturate(0.92) contrast(1.06) brightness(0.94);
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: -2;
}

/* Home Tech Help banner: favor the house over the tree canopy in the crop. */
.inner-masthead__image--home-tech {
	object-position: center 55%;
}

/* Business IT & AI banner: keep the laptop screen in view in the wide crop. */
.inner-masthead__image--business {
	object-position: center 38%;
}

/* Pricing banner: bias the crop toward the repaired laptop's screen. */
.inner-masthead__image--pricing {
	object-position: center 40%;
}

/* Bottom-heavy scrim keeps the text readable on any banner photo. Built
   from a neutral near-black (6,9,14) rather than the navy ink, because
   navy over a photo is what made the old banners read as blue-tinted. */
.inner-masthead__overlay {
	background: linear-gradient(180deg, rgba(6, 9, 14, 0.58) 0%, rgba(6, 9, 14, 0.74) 52%, rgba(6, 9, 14, 0.9) 100%);
	inset: 0;
	position: absolute;
	z-index: -1;
}

/* min-height keeps the banner compact: ~150px on phones, ~230px on desktop. */
.inner-masthead__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: clamp(150px, 20vw, 230px);
	padding-block: 18px 22px;
}

.inner-masthead__title {
	color: var(--white);
	font-size: clamp(1.85rem, 4.5vw, 2.5rem);
	line-height: 1.1;
	margin: 0;
	text-wrap: balance;
}

.inner-masthead__intro {
	color: rgba(234, 247, 255, 0.92);
	font-size: 1.02rem;
	line-height: 1.5;
	margin: 10px 0 0;
	max-width: 560px;
}

/* Small appointment pill under the title; informative rather than alarming. */
.inner-masthead__pill {
	align-items: center;
	align-self: flex-start;
	background: rgba(8, 17, 31, 0.55);
	border: 1px solid rgba(234, 247, 255, 0.4);
	border-radius: 999px;
	color: var(--white);
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 8px;
	line-height: 1.3;
	margin: 14px 0 0;
	padding: 6px 14px;
}

.inner-masthead__pill svg {
	color: var(--brand-cyan);
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}

/* Breadcrumb: quiet utility row above the headline. */
.breadcrumb ol {
	color: var(--text-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.85rem;
	gap: 4px 8px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.breadcrumb li {
	list-style: none;
}

.breadcrumb li + li::before {
	color: var(--border-strong);
	content: "/";
	margin-right: 8px;
}

.breadcrumb a {
	color: var(--text-muted);
	text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
	color: var(--blue);
	text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
	color: var(--navy);
	font-weight: 600;
}

/* On the image masthead the breadcrumb sits on a photo, so it flips to light. */
.inner-masthead .breadcrumb ol {
	color: rgba(234, 247, 255, 0.85);
	margin-bottom: 14px;
}

.inner-masthead .breadcrumb a {
	color: rgba(234, 247, 255, 0.85);
}

.inner-masthead .breadcrumb a:hover,
.inner-masthead .breadcrumb a:focus-visible {
	color: var(--white);
}

.inner-masthead .breadcrumb li + li::before {
	color: rgba(234, 247, 255, 0.5);
}

.inner-masthead .breadcrumb [aria-current="page"] {
	color: var(--white);
}

/* Appointment action strip: compact "how to start" bar right under the
   masthead. Intentionally small — it directs action without being a hero. */
.service-action-strip {
	background: var(--pale-blue);
	border-bottom: 1px solid var(--border);
	padding-block: 28px;
}

.service-action-strip__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 32px;
	justify-content: space-between;
}

.service-action-strip__text h2 {
	font-size: 1.3rem;
	line-height: 1.25;
	margin: 0 0 6px;
}

.service-action-strip__text p {
	color: var(--text-muted);
	font-size: 0.98rem;
	margin: 0;
	max-width: 560px;
}

.service-action-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.service-action-strip__actions .button-link {
	min-height: 48px;
}

/* Stack the CTAs full width when they cannot share a row cleanly. */
@media (max-width: 459px) {
	.service-action-strip__actions {
		width: 100%;
	}

	.service-action-strip__actions .button-link {
		flex: 1 1 100%;
	}
}

/* This grid sits directly under the pale action strip, so it stays white here. */
.repair-benefits {
	background: var(--white);
}

/* Slightly smaller heading so it balances with the compact benefit cards. */
.repair-benefits .section-heading h2 {
	font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
}

/* Compact "common repairs handled" band: plain pills, deliberately much
   smaller than the benefit cards above so it confirms coverage without
   competing for attention. */
.repair-list {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(40px, 6vw, 64px);
}

.repair-list .section-heading {
	margin-bottom: 28px;
}

.repair-list .section-heading h2 {
	font-size: clamp(1.4rem, 1.5vw + 0.9rem, 1.75rem);
}

.repair-list .section-heading p {
	font-size: 1rem;
}

.repair-list__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 auto;
	max-width: 840px;
	padding: 0;
}

.repair-list__items li {
	background: var(--bg-soft);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 600;
	list-style: none;
	padding: 8px 16px;
}

/* Pricing on this page holds four cards: 2x2 on tablet, one row when wide. */
.repair-pricing {
	background: var(--bg-soft);
}

@media (min-width: 800px) {
	.repair-pricing .pricing-preview__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.repair-pricing .pricing-preview__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.repair-pricing .pricing-card {
	position: relative;
}

/* Pill badge straddling the top edge of the highlighted $130 card. Positioned
   out of the normal flow so the title and price line up with the other cards.
   The extra `p` qualifier outweighs the generic muted card-copy rule. */
.repair-pricing .pricing-card p.pricing-card__flag {
	background: var(--blue);
	border-radius: 999px;
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
	left: 50%;
	letter-spacing: 0.08em;
	margin: 0;
	padding: 5px 14px;
	position: absolute;
	text-transform: uppercase;
	top: 0;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

/* Non-dollar starting points (“By appointment”, “Custom quote”) read as
   labels rather than figures, so they sit smaller than the dollar prices. */
.repair-pricing .pricing-card p.pricing-card__price--text {
	font-size: 1.3rem;
	line-height: 1.25;
	padding-top: 0.35rem;
}

/* Qualifiers like “labor” or “first 2 hours” drop to a smaller second line so
   the dollar amounts read at the same size on every card. */
.repair-pricing .pricing-card .pricing-card__price-qualifier {
	color: var(--text-muted);
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0;
	margin-top: 2px;
}

/* Reserve consistent title and price rows in multi-column layouts so every
   card's price and copy start at the same height, wrapped lines included. */
@media (min-width: 800px) {
	.repair-pricing .pricing-card h3 {
		align-items: center;
		display: flex;
		justify-content: center;
		min-height: 2.5em;
	}

	.repair-pricing .pricing-card .pricing-card__price {
		min-height: 4.8rem;
	}
}

/* Directional link to the full Pricing page under the pricing cards. */
.repair-pricing__more {
	margin: 32px auto 0;
	max-width: 640px;
	text-align: center;
}

.repair-pricing__more p {
	color: var(--text-muted);
	font-size: 0.98rem;
}

/* Quiet appointment reminder under the final CTA buttons. */
.final-cta__note {
	color: #9db0c1;
	font-size: 0.9rem;
	margin: 20px 0 0;
}

/* FAQ (CSS-only details/summary accordion) */
.repair-faq {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.repair-faq__list {
	margin-inline: auto;
	max-width: 760px;
}

.repair-faq__item {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	margin-bottom: 12px;
	overflow: hidden;
}

.repair-faq__item summary {
	color: var(--ink);
	cursor: pointer;
	font-weight: 700;
	list-style: none;
	padding: 16px 48px 16px 20px;
	position: relative;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.repair-faq__item summary:hover,
.repair-faq__item summary:focus-visible {
	background: var(--navy);
	color: var(--white);
}

.repair-faq__item summary:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: -4px;
}

.repair-faq__item summary::marker {
	content: "";
}

.repair-faq__item summary::-webkit-details-marker {
	display: none;
}

.repair-faq__item summary::after {
	color: var(--brand-cyan);
	content: "+";
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.repair-faq__item summary:hover::after,
.repair-faq__item summary:focus-visible::after {
	color: var(--white);
}

.repair-faq__item[open] summary::after {
	content: "\2212";
}

.repair-faq__answer {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	padding: 14px 20px 16px;
}

.repair-faq__answer p {
	margin: 0;
}

/* Pricing page
   ------------------------------------------------------------------ */

/* The full pricing page holds six cards: 2x3 on tablet, 3x2 when wide.
   White background keeps the strip → cards rhythm of the service pages. */
.pricing-main {
	background: var(--white);
}

@media (min-width: 1100px) {
	.pricing-main .pricing-preview__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* "What these prices mean" holds four cards, so it reads best as 2x2. */
@media (min-width: 1000px) {
	.pricing-meaning .problems-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Drop-off / on-site / remote / project comparison cards. */
.service-types {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(56px, 8vw, 96px);
}

.service-types__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-inline: auto;
	max-width: 960px;
}

@media (min-width: 700px) {
	.service-types__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.service-type-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 24px 22px;
}

.service-type-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.service-type-card__best {
	color: var(--navy);
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0 0 10px;
}

.service-type-card__copy {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Parts & approvals: reassuring soft band with a compact checklist. */
.parts-approvals {
	background: var(--bg-soft);
	padding-block: clamp(48px, 7vw, 80px);
}

.parts-approvals .section-heading {
	margin-bottom: 28px;
}

.parts-approvals__list {
	list-style: none;
	margin: 0 auto;
	max-width: 620px;
	padding: 0;
}

.parts-approvals__list li {
	border-top: 1px solid var(--border-strong);
	color: var(--navy);
	font-weight: 600;
	padding: 12px 0 12px 30px;
	position: relative;
}

.parts-approvals__list li:first-child {
	border-top: none;
}

.parts-approvals__list li::before {
	color: var(--brand-cyan);
	content: "\2713";
	left: 0;
	position: absolute;
}

/* Standard page template */
.content-section {
	padding-block: clamp(48px, 8vw, 100px);
}

.entry {
	margin-inline: auto;
	max-width: 760px;
}

.entry-title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

/* Contact page
   ------------------------------------------------------------------ */

/* Contact banner: keep the fan/heatsink detail in view, away from the
   battery label crowding the lower-right of the source photo. */
.inner-masthead__image--contact {
	object-position: center 32%;
}

/* Remote-support utility pill + availability line under the action strip
   buttons (shared by the Contact and About action strips). Deliberately
   quieter than the primary/secondary CTAs above it. */
.contact-action-strip__meta,
.about-action-strip__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin: 16px 0 0;
}

.contact-action-strip__remote {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 7px 16px;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.contact-action-strip__remote:hover {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.contact-action-strip__remote:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.contact-action-strip__availability,
.about-action-strip__availability {
	color: var(--text-muted);
	font-size: 0.92rem;
}

.contact-form-section {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.contact-form-layout {
	margin-inline: auto;
	max-width: 760px;
}

.contact-form-section__note {
	color: var(--navy);
	font-size: 0.95rem;
	font-weight: 600;
}

.contact-form-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: clamp(24px, 4vw, 40px);
}

.contact-form-fallback {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin: 0;
	text-align: center;
}

/* Gravity Forms intake form styling, scoped to .tts-contact-form so any
   other form embedded elsewhere later is unaffected.

   Spacing below is intentionally tightened for perceived form length.
   Actual field removal/reordering should be handled in Gravity Forms
   admin or via a revised import file, not hidden with theme CSS. */
.tts-contact-form .gform_wrapper {
	margin: 0;
}

.tts-contact-form .gform_heading {
	margin-bottom: 16px;
}

.tts-contact-form .gform_title {
	color: var(--ink);
	font-size: 1.3rem;
}

.tts-contact-form .gform_description {
	color: var(--text-muted);
}

.tts-contact-form .gform_fields {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tts-contact-form .gfield {
	list-style: none;
}

/* Main field question labels: kept identical across field types (text,
   phone, select, textarea, file upload, complex-field intro labels) so
   no single field reads as more or less important than another. */
.tts-contact-form .gfield > .gfield_label,
.tts-contact-form .gfield legend.gfield_label,
.tts-contact-form .gfield_label.gform-field-label,
.tts-contact-form .gfield_label_before_complex,
.tts-contact-form label.gfield_label,
.tts-contact-form legend.gfield_label,
.tts-contact-form .gform-field-label {
	color: var(--ink);
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 8px;
}

/* Newer Gravity Forms markup sets this modifier on labels that sit inline
   next to their input (for example a single consent checkbox); keep those
   readable without matching the weight of a main field question. */
.tts-contact-form .gform-field-label--type-inline {
	display: inline;
	font-weight: 600;
	margin-bottom: 0;
}

.tts-contact-form .gfield_required {
	color: var(--coral-hover);
	margin-left: 3px;
}

.tts-contact-form .gfield_description,
.tts-contact-form .instruction {
	color: var(--text-muted);
	font-size: 0.88rem;
	line-height: 1.35;
	margin-top: 4px;
}

.tts-contact-form .ginput_container {
	margin-top: 0;
}

/* Sub-field labels, such as First/Last Name or Address rows. Readable but
   deliberately lighter than a main field question so the hierarchy scans. */
.tts-contact-form .ginput_container label {
	color: var(--ink);
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.tts-contact-form input[type="text"],
.tts-contact-form input[type="email"],
.tts-contact-form input[type="tel"],
.tts-contact-form input[type="number"],
.tts-contact-form input[type="url"],
.tts-contact-form select,
.tts-contact-form textarea {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 12px 14px;
	width: 100%;
}

.tts-contact-form textarea {
	min-height: 130px;
	resize: vertical;
}

.tts-contact-form input:focus-visible,
.tts-contact-form select:focus-visible,
.tts-contact-form textarea:focus-visible {
	border-color: var(--brand-cyan);
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Radio / checkbox choices */
.tts-contact-form .gfield_radio,
.tts-contact-form .gfield_checkbox {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tts-contact-form .gchoice {
	align-items: center;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 10px 14px;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Hover/focus highlight so options are easier to notice, without making
   the form loud: a light blue tint and a slightly stronger border. */
.tts-contact-form .gchoice:hover {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.tts-contact-form .gchoice:focus-within {
	border-color: var(--brand-cyan);
	box-shadow: 0 0 0 3px var(--pale-blue);
}

/* Checked state: a left accent stripe makes the selected option clearly
   more noticeable than a hover. `:has()` gives the whole choice the
   treatment in current browsers; the `input:checked + label` fallback
   keeps the label itself readable in browsers without `:has()` support. */
.tts-contact-form .gchoice:has(input:checked) {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
	box-shadow: inset 3px 0 0 var(--brand-cyan);
}

.tts-contact-form .gchoice input[type="radio"],
.tts-contact-form .gchoice input[type="checkbox"] {
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

.tts-contact-form .gchoice label {
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 600;
}

.tts-contact-form .gchoice input:checked + label {
	color: var(--navy);
	font-weight: 700;
}

/* File upload */
.tts-contact-form .ginput_container_fileupload {
	background: var(--bg-soft);
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius-md);
	padding: 14px;
}

.tts-contact-form .ginput_container_fileupload input[type="file"] {
	font-size: 0.9rem;
	max-width: 100%;
}

/* Section headings inside a multi-part form */
.tts-contact-form .gsection {
	border-bottom: 1px solid var(--border);
	margin: 8px 0 4px;
	padding-bottom: 10px;
}

.tts-contact-form .gsection .gfield_label,
.tts-contact-form .gsection_title {
	color: var(--ink);
	font-size: 1.1rem;
	font-weight: 700;
}

.tts-contact-form .gsection_description {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Validation */
.tts-contact-form .gfield_error input,
.tts-contact-form .gfield_error select,
.tts-contact-form .gfield_error textarea {
	border-color: var(--coral-hover);
}

.tts-contact-form .validation_message,
.tts-contact-form .gfield_validation_message {
	color: var(--coral-hover);
	font-size: 0.88rem;
	font-weight: 600;
	margin-top: 6px;
}

.tts-contact-form .gform_validation_errors {
	background: #fdeceb;
	border: 1px solid var(--coral);
	border-radius: var(--radius-md);
	color: #7a2417;
	margin-bottom: 20px;
	padding: 16px 18px;
}

.tts-contact-form .gform_validation_errors h2 {
	color: #7a2417;
	font-size: 1.05rem;
	margin: 0 0 4px;
}

/* Submit button, styled to match the site's primary button */
.tts-contact-form .gform_footer {
	margin-top: 4px;
}

.tts-contact-form .gform_button {
	background: var(--action);
	border: 2px solid var(--action);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	padding: 13px 30px;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.tts-contact-form .gform_button:hover {
	background: var(--action-hover);
	border-color: var(--action-hover);
	box-shadow: 0 4px 14px rgba(216, 76, 33, 0.32);
}

.tts-contact-form .gform_button:active {
	box-shadow: none;
}

.tts-contact-form .gform_confirmation_message {
	background: var(--pale-blue);
	border: 1px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	color: var(--navy);
	font-weight: 600;
	padding: 20px;
}

@media (min-width: 640px) {
	.tts-contact-form .gform_fields {
		gap: 20px;
	}
}

/* Location and directions */
.directions {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.directions__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.directions__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.directions__card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 36px);
}

.directions__label {
	color: var(--ink);
	font-weight: 700;
	margin: 0 0 4px;
}

.directions__address {
	color: var(--text);
	font-size: 1rem;
	font-style: normal;
	line-height: 1.5;
	margin: 0 0 16px;
}

.directions__availability {
	color: var(--navy);
	font-weight: 600;
	margin: 0 0 20px;
}

.directions__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.directions__note {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0 0 16px;
}

.directions__note:last-child {
	margin-bottom: 0;
}

.directions__note--appointment {
	font-weight: 600;
}

.directions__links {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0 0 16px;
}

.directions__map {
	height: 100%;
	min-height: 240px;
}

.directions__map-frame {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	height: 100%;
	min-height: 240px;
	overflow: hidden;
	position: relative;
}

.directions__map-frame iframe {
	border: 0;
	display: block;
	height: 100%;
	min-height: 320px;
	width: 100%;
}

/* Other ways to get help: compact clickable cards */
.help-options {
	background: var(--bg-soft);
	padding-block: clamp(48px, 7vw, 80px);
}

.help-options__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.help-options__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.help-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.help-card:hover,
.help-card:focus-visible {
	border-color: var(--brand-cyan);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.4), var(--shadow-card-hover);
}

.help-card:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.help-card h3 {
	font-size: 1.05rem;
	margin: 0;
}

.help-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* Service area: plain badge chips, reusing the .badge component */
.service-area {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(48px, 7vw, 80px);
}

.service-area__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.service-area__list li {
	list-style: none;
}

.service-area__note {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0 auto;
	max-width: 560px;
	text-align: center;
}

/* Reviews page
   ------------------------------------------------------------------ */

/* Portrait source photo in a short banner: bias toward the laptop screen
   rather than the desk or wall above/below it. */
.inner-masthead__image--reviews {
	object-position: center 34%;
}

/* Trust highlight cards: same card look as .problem-card, sized for exactly
   four cards instead of the general 3-column problems grid. The About page's
   trust grid shares the same layout. */
.reviews-summary {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.reviews-summary__grid,
.about-trust__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.reviews-summary__grid,
	.about-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.reviews-summary__grid,
	.about-trust__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

#reviews-list {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.reviews-filter {
	margin: 0 auto;
	max-width: 900px;
}

.reviews-filter__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.reviews-filter__button {
	background: var(--white);
	border: 2px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 600;
	padding: 8px 16px;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.reviews-filter__button:hover {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.reviews-filter__button:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Selected filter gets a thicker brand-cyan ring instead of a navy border
   so the active pill reads as "on brand" rather than just dark/pressed. */
.reviews-filter__button[aria-pressed="true"] {
	background: var(--navy);
	border-color: var(--brand-cyan);
	border-width: 3px;
	color: var(--white);
}

.reviews-filter__button[aria-pressed="true"]:hover {
	background: var(--navy);
	border-color: var(--brand-cyan);
}

.reviews-search {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 18px auto 0;
	max-width: 460px;
}

.reviews-search__input {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--ink);
	flex: 1 1 220px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	padding: 10px 18px;
}

.reviews-search__input:focus-visible {
	border-color: var(--brand-cyan);
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Deliberately quieter than the filter pills above so it reads as a
   secondary action, but still easy to find next to the search input. */
.reviews-filter__reset {
	background: transparent;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--text-muted);
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 8px 14px;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: background-color 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.reviews-filter__reset:hover {
	background: var(--pale-blue);
	color: var(--navy);
}

.reviews-filter__reset:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.reviews-filter__count {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 18px 0 24px;
	text-align: center;
}

.reviews-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.review-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px;
}

@media (min-width: 480px) {
	.review-card {
		padding: 22px;
	}
}

/* `.review-card` sets `display: flex` as an author style, which beats the
   browser's default `[hidden] { display: none }` UA rule on cascade
   origin even when specificity ties. Force both the `hidden` attribute
   and the `.is-hidden` class (toggled by reviews-filter.js) to actually
   hide the card. */
.review-card.is-hidden,
.reviews-grid [hidden] {
	display: none !important;
}

.review-card__meta {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	justify-content: space-between;
}

.review-card__name {
	color: var(--ink);
	font-weight: 700;
}

.review-card__date {
	color: var(--text-muted);
	font-size: 0.82rem;
}

/* Five-star row under the name/date line. Same star glyph as the Google
   review buttons, sized to stay subordinate to the review text. */
.review-card__stars {
	color: var(--brand-cyan);
	display: flex;
	gap: 2px;
}

.review-card__stars svg {
	height: 15px;
	width: 15px;
}

.review-card__text {
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
}

.review-card__text--empty {
	color: var(--text-muted);
	font-style: italic;
}

.review-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
}

.review-tag {
	background: var(--pale-blue);
	border-radius: 999px;
	color: var(--blue);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 4px 10px;
}

.review-card__source {
	color: var(--text-muted);
	font-size: 0.78rem;
	margin: 0;
}

.reviews-empty {
	background: var(--white);
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius-md);
	color: var(--text-muted);
	margin-top: 24px;
	padding: 28px;
	text-align: center;
}

/* Common themes: reuse the pill-chip look from the Computer Repair page's
   "common repairs handled" band (.repair-list__items). */
.reviews-themes {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(48px, 7vw, 80px);
}

.reviews-themes__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 auto;
	max-width: 840px;
	padding: 0;
}

.reviews-themes__list li {
	background: var(--bg-soft);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 600;
	list-style: none;
	padding: 8px 16px;
}

/* Leave-a-review CTA: quiet mid-page band between the themes and FAQ. */
.reviews-cta {
	background: var(--pale-blue);
	padding-block: clamp(48px, 7vw, 80px);
}

.reviews-cta__inner {
	margin-inline: auto;
	max-width: 640px;
	text-align: center;
}

.reviews-cta__inner p {
	color: var(--text-muted);
	font-size: 1.05rem;
}

.reviews-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 24px;
}

/* About page
   ------------------------------------------------------------------ */

/* About banner: repaired laptop working on the bench; bias the crop toward
   the screen in the upper-middle of the source photo. */
.inner-masthead__image--about {
	object-position: center 42%;
}

/* Meet Tyler: story text beside the portrait/trust column. */
.about-story {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-story__grid {
	align-items: start;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.about-story__grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.about-story__body p {
	font-size: 1.05rem;
}

.about-story__aside {
	display: grid;
	gap: 20px;
}

/* Portrait card for the (temporary) headshot beside the story text. */
.about-portrait-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	margin: 0;
	overflow: hidden;
}

.about-portrait-card img,
.about-portrait-card .media-placeholder {
	aspect-ratio: 6 / 7;
	display: block;
	object-fit: cover;
	width: 100%;
}

/* Compact "direct local help" checklist beside the story text. */
.about-trust-list {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 22px;
}

.about-trust-list h3 {
	font-size: 1.05rem;
	margin: 0 0 12px;
}

.about-trust-list ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-trust-list li {
	font-size: 0.95rem;
	padding-left: 26px;
	position: relative;
}

.about-trust-list li::before {
	color: var(--blue);
	content: "\2713";
	font-weight: 800;
	left: 0;
	position: absolute;
}

/* Rebrand story: text beside a small history photo. */
.about-rebrand {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-rebrand__grid {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.about-rebrand__grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.about-rebrand__body p {
	font-size: 1.05rem;
}

.about-rebrand__callout {
	background: var(--pale-blue);
	border-left: 4px solid var(--blue);
	border-radius: var(--radius-md);
	color: var(--navy);
	font-weight: 700;
	padding: 14px 18px;
}

/* Keep the old Assure sign photo modest: landscape crop biased toward the
   window sign in the upper part of the portrait source photo. */
.about-rebrand__media img,
.about-rebrand__media .media-placeholder {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-photo);
	box-shadow: var(--shadow-photo);
	object-fit: cover;
	object-position: center 30%;
	width: 100%;
}

/* Real work photo strip: three compact proof cards. */
.about-proof {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-proof-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.about-proof-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.about-proof-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.about-proof-card__media img,
.about-proof-card__media .media-placeholder {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	width: 100%;
}

.about-proof-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px 22px;
}

.about-proof-card__body h3 {
	font-size: 1.05rem;
	margin: 0;
}

.about-proof-card__body p {
	color: var(--text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* The shared .process band is white; alternate it on the About page. */
.about-process {
	background: var(--bg-soft);
}

/* "Who I help" reuses the homepage path cards on a white band. */
.about-service-cards {
	background: var(--white);
}

/* Why customers trust Tyler: four problem-cards on a soft band. */
.about-trust {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-trust__cta {
	margin-top: 32px;
	text-align: center;
}

/* Button row under the service-area badges. */
.about-service-area__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 24px;
}

/* ------------------------------------------------------------------ */
/* Legal pages (Privacy Policy, Terms of Service). The masthead reuses
   the inner-masthead treatment without a photo, and the body is a
   readable policy column with a sticky table of contents on desktop. */

.inner-masthead--legal .inner-masthead__content {
	justify-content: center;
	min-height: 0;
	padding-block: 24px 28px;
}

/* "Last updated" line under the legal page title. */
.legal-updated {
	color: rgba(234, 247, 255, 0.75);
	font-size: 0.85rem;
	font-weight: 600;
	margin: 12px 0 0;
}

.legal-page__body {
	padding-block: clamp(40px, 6vw, 64px) clamp(56px, 8vw, 88px);
}

.legal-layout {
	display: grid;
	gap: 36px;
}

@media (min-width: 1000px) {
	.legal-layout {
		align-items: start;
		gap: 56px;
		grid-template-columns: 264px minmax(0, 1fr);
	}
}

/* Table of contents: numbered jump links; sticky beside the policy text
   on desktop, a compact card above it on phones. */
.legal-toc {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px 22px;
}

@media (min-width: 1000px) {
	.legal-toc {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		position: sticky;
		top: 96px;
	}
}

.legal-toc__heading {
	color: var(--ink);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.legal-toc ol {
	counter-reset: legal-toc;
	display: grid;
	gap: 7px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.legal-toc li {
	counter-increment: legal-toc;
	font-size: 0.9rem;
	line-height: 1.4;
}

.legal-toc li::before {
	color: var(--text-muted);
	content: counter(legal-toc) ".";
	font-variant-numeric: tabular-nums;
	margin-right: 7px;
}

.legal-toc a {
	color: var(--text);
	text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
	color: var(--blue);
	text-decoration: underline;
}

/* Policy text column: capped for comfortable line length. */
.legal-content {
	max-width: 760px;
}

.legal-content__lead {
	color: var(--text-muted);
	font-size: 1.08rem;
	line-height: 1.6;
	margin: 0;
}

.legal-section {
	border-top: 1px solid var(--border);
	margin-top: 34px;
	padding-top: 30px;
}

/* Policy headings stay quieter than marketing-section headings. */
.legal-section h2 {
	font-size: 1.45rem;
	line-height: 1.2;
	margin-bottom: 14px;
}

.legal-section h3 {
	font-size: 1.02rem;
	margin: 20px 0 8px;
}

.legal-section ul {
	display: grid;
	gap: 7px;
	list-style: disc;
	margin: 0 0 16px;
	padding-left: 22px;
}

.legal-section > :last-child {
	margin-bottom: 0;
}

/* Callout card for the sections customers most need to notice
   (SMS consent, data loss, warranty). */
.legal-callout {
	background: var(--pale-blue);
	border: 1px solid var(--border-strong);
	border-left: 4px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	margin: 20px 0 16px;
	padding: 18px 20px;
}

.legal-callout__label {
	color: var(--navy);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.legal-callout p:last-child,
.legal-callout ul:last-child {
	margin-bottom: 0;
}

/* Business identity block in the final Contact section. */
.legal-contact-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	margin-top: 16px;
	padding: 22px 24px;
}

.legal-contact-card p {
	margin: 0 0 6px;
}

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

.legal-contact-card address {
	font-style: normal;
	margin: 0 0 10px;
}

/* Quiet fine print under the contact form: agreement + SMS consent note. */
.contact-form-legal {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.85rem;
	line-height: 1.55;
	margin-top: 26px;
	padding-top: 16px;
}

.contact-form-legal p {
	margin: 0 0 8px;
}

.contact-form-legal p:last-child {
	margin-bottom: 0;
}

/* Sticky bottom utility bar (Directions + back to top).
   Mobile: full-width navy bar. Desktop (≥1000px): compact floating pill
   in the bottom-right corner instead of a full-width strip. */
body {
	padding-bottom: var(--utility-bar-height);
}

.utility-bar {
	align-items: center;
	background: var(--navy);
	border-top: 1px solid rgba(215, 230, 242, 0.16);
	bottom: 0;
	box-shadow: 0 -6px 20px rgba(8, 17, 31, 0.22);
	display: flex;
	height: var(--utility-bar-height);
	left: 0;
	position: fixed;
	right: 0;
	z-index: 90;
}

.utility-bar__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.utility-bar__directions,
.utility-bar__top {
	align-items: center;
	border: 1px solid rgba(215, 230, 242, 0.45);
	border-radius: 999px;
	color: #eaf4fb;
	display: inline-flex;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Directions is the primary action of the bar, so it takes the primary
   button treatment; back-to-top stays a quieter outlined circle. Navy
   text keeps contrast above AA on the brand-orange fill (white text on
   #F26723 only reaches ~3.1:1). */
.utility-bar__directions {
	background: var(--action);
	border-color: var(--action);
	color: var(--navy);
	font-size: 0.95rem;
	font-weight: 700;
	gap: 8px;
	min-height: 44px;
	padding: 8px 18px;
}

.utility-bar__directions:hover {
	background: var(--action-hover);
	border-color: var(--action-hover);
	box-shadow: 0 0 0 2px rgba(216, 76, 33, 0.5);
	color: var(--navy);
}

.utility-bar__top {
	background: rgba(234, 244, 251, 0.1);
	border-color: rgba(215, 230, 242, 0.6);
	height: 44px;
	width: 44px;
}

.utility-bar__top:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--navy);
}

.utility-bar__directions:focus-visible,
.utility-bar__top:focus-visible {
	outline-color: var(--brand-cyan);
}

.utility-bar__directions svg {
	height: 18px;
	width: 18px;
}

.utility-bar__top svg {
	height: 20px;
	width: 20px;
}

/* Mobile only: stay off-screen so the bar never sits over the first
   viewport (the hero, not a utility strip, should own that space). Reveal
   is added by site-ui.js as an .is-visible class once the visitor has
   scrolled about a screen height. Without JS the bar simply never shows on
   mobile — visibility: hidden also keeps its links out of the tab order
   while off-screen. The swap is an instant show/hide, not an animated
   slide-in, so it never grabs the eye mid-scroll. */
@media (max-width: 999px) {
	.utility-bar {
		opacity: 0;
		visibility: hidden;
	}

	.utility-bar.is-visible {
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 1000px) {
	/* Compact floating pill, bottom right. --utility-bar-height still
	   reserves the space it can overlap (pill + bottom offset) so the
	   footer and anchor targets clear it. */
	.utility-bar {
		border: 1px solid rgba(215, 230, 242, 0.28);
		border-radius: 999px;
		bottom: 18px;
		box-shadow: 0 4px 10px rgba(8, 17, 31, 0.25), 0 14px 32px rgba(8, 17, 31, 0.35);
		height: auto;
		left: auto;
		padding: 6px;
		right: 24px;
	}

	/* Undo the .site-container sizing inside the pill. */
	.utility-bar__inner {
		gap: 8px;
		margin: 0;
		max-width: none;
		padding-inline: 0;
		width: auto;
	}

	.utility-bar__directions {
		font-size: 0.9rem;
		min-height: 40px;
		padding: 6px 18px;
	}

	.utility-bar__top {
		height: 40px;
		width: 40px;
	}

	.utility-bar__top svg {
		height: 18px;
		width: 18px;
	}
}

/* Directions modal */
.tts-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 1000;
}

.tts-modal[hidden] {
	display: none;
}

.tts-modal__backdrop {
	background: rgba(8, 17, 31, 0.65);
	inset: 0;
	position: absolute;
}

.tts-modal__dialog {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-photo);
	max-height: calc(100dvh - 40px);
	max-width: 460px;
	overflow-y: auto;
	padding: 28px 24px 22px;
	position: relative;
	width: 100%;
}

.tts-modal__title {
	font-size: 1.5rem;
	margin: 0 44px 12px 0;
}

.tts-modal__question {
	color: var(--ink);
	font-weight: 700;
}

.tts-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 18px 0 20px;
}

.tts-modal__tertiary {
	color: var(--blue);
	font-weight: 700;
	padding: 6px;
	text-align: center;
}

.tts-modal__close {
	align-items: center;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 40px;
}

.tts-modal__close:hover {
	background: var(--border);
}

.tts-modal__close svg {
	height: 16px;
	width: 16px;
}

.tts-modal__meta {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
	padding-top: 14px;
}

body.has-open-modal {
	overflow: hidden;
}

/* "Start Remote Support" modal
   ------------------------------------------------------------------ */
.tts-modal__dialog--remote {
	max-width: 560px;
	padding: 26px 22px 24px;
}

/* Above ~860px there is room to stop stacking the connect area on top of
   the full instruction guide, which is what forced the tall single-column
   dialog to scroll internally on desktop/laptop screens. A two-column
   grid puts the download button beside the guide instead of above it, so
   the dialog reads wider and shorter and rarely needs to scroll itself;
   .tts-modal already centers it in the viewport and caps it below the
   window height as a fallback for short screens. */
@media (min-width: 860px) {
	.tts-modal__dialog--remote {
		display: grid;
		column-gap: 36px;
		grid-template-areas:
			"title  title"
			"warning warning"
			"embed  guide";
		grid-template-columns: minmax(320px, 380px) 1fr;
		max-width: 980px;
		padding: 32px 40px 34px;
		row-gap: 18px;
	}

	.tts-modal__dialog--remote .tts-modal__title {
		grid-area: title;
	}

	.tts-modal__dialog--remote .remote-modal__warning {
		grid-area: warning;
		margin-bottom: 0;
	}

	.tts-modal__dialog--remote .remote-modal__embed-block {
		grid-area: embed;
	}

	.tts-modal__dialog--remote .remote-modal__guide {
		border-left: 1px solid var(--border);
		border-top: 0;
		grid-area: guide;
		margin-top: 0;
		padding-left: 32px;
		padding-top: 0;
	}
}

.remote-modal__warning {
	align-items: flex-start;
	background: #fff7ed;
	border: 1px solid rgba(242, 103, 35, 0.4);
	border-radius: var(--radius-md);
	color: var(--navy);
	display: flex;
	font-weight: 700;
	gap: 10px;
	margin: 0 0 20px;
	padding: 12px 14px;
}

.remote-modal__warning-icon {
	color: var(--coral-hover);
	flex-shrink: 0;
	height: 20px;
	margin-top: 1px;
	width: 20px;
}

.remote-modal__embed-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.remote-modal__step-label {
	color: var(--blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin: 0;
	text-transform: uppercase;
}

.remote-modal__step-heading {
	color: var(--ink);
	font-size: 1.15rem;
	margin: 2px 0 0;
}

.remote-modal__step-sub {
	color: var(--text-muted);
	font-size: 0.88rem;
	margin: 4px 0 14px;
}

/* Frames the live SimpleHelp button as the modal's one obvious primary
   action: a bordered, brand-tinted card with a small callout label pointing
   down at whatever the widget renders, so attention lands on the real
   button without describing (or faking) its exact appearance. */
.remote-modal__embed-frame {
	background: var(--pale-blue);
	border: 2px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	padding: 18px 16px 16px;
	text-align: center;
}

.remote-modal__embed-callout {
	align-items: center;
	color: var(--blue);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	gap: 4px;
	justify-content: center;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	width: 100%;
}

.remote-modal__embed-callout-icon {
	height: 14px;
	width: 14px;
}

/* Off-screen render target for SimpleHelp's embed.js widget, printed once
   near the top of theme/page-remote-support.php. It has to stay out of
   display:none/[hidden] so the browser gives the widget a real layout box
   to render into on first load; position:absolute with a large negative
   left offset is what keeps it out of view instead. remote-support.js
   moves the generated button out of here and into
   .remote-modal__embed-target once it appears. */
.remote-support-staging {
	height: auto;
	left: -9999px;
	min-height: 120px;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: auto;
	visibility: hidden;
	width: 420px;
}

/* Holds the SimpleHelp button after remote-support.js relocates it from
   .remote-support-staging. Empty until then, so it takes up no space while
   the loading line above is showing. */
.remote-modal__embed-target:empty {
	display: none;
}

.remote-modal__embed-target {
	display: flex;
	justify-content: center;
	padding: 4px 0;
}

/* Best-effort de-emphasis for a secondary "All Downloads"-style control the
   live widget may render next to the real button. remote-support.js adds
   this class only after a text match on the rendered label, and only ever
   changes appearance — the element is never hidden or removed, so the real
   download button cannot be broken by a markup mismatch. */
.remote-modal__embed-target :is(a, button).remote-modal__embed-secondary {
	filter: grayscale(35%);
	font-size: 0.78em;
	margin-top: 6px;
	opacity: 0.55;
	transform: scale(0.9);
}

.remote-modal__embed-status {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin: 0 0 8px;
	text-align: center;
}

/* Always-present backup in case the SimpleHelp widget fails to load or is
   blocked. By default it reads as a small, secondary text link so it never
   competes with the framed embed button above; remote-support.js adds
   --prominent if no button has appeared after a few seconds, at which point
   this CSS upgrades the same link into a real button so the backup becomes
   the obvious next step instead of a quiet footnote. */
.remote-modal__fallback {
	margin-top: 14px;
	text-align: center;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.remote-modal__fallback-text {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin: 0 0 4px;
}

.remote-modal__fallback-link {
	align-items: center;
	color: var(--blue);
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 600;
	gap: 6px;
	justify-content: center;
	text-decoration: underline;
}

.remote-modal__fallback-link:hover,
.remote-modal__fallback-link:focus-visible {
	color: var(--navy);
}

.remote-modal__fallback-link svg {
	height: 14px;
	width: 14px;
}

.remote-modal__fallback--prominent {
	background: var(--pale-blue);
	border: 1px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.25);
	padding: 14px;
}

.remote-modal__fallback--prominent .remote-modal__fallback-link {
	background: var(--white);
	border: 2px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	color: var(--navy);
	display: flex;
	font-size: 0.95rem;
	font-weight: 700;
	padding: 11px 16px;
	text-decoration: none;
	width: 100%;
}

.remote-modal__fallback--prominent .remote-modal__fallback-text {
	color: var(--navy);
	font-weight: 700;
}

.remote-modal__guide {
	border-top: 1px solid var(--border);
	margin-top: 22px;
	padding-top: 18px;
}

.remote-modal__guide-intro {
	color: var(--navy);
	font-weight: 700;
	margin: 0 0 10px;
}

/* Short, senior-friendly checklist: plain bullets with a drawn checkmark,
   not numbered steps, since "Step 1" is already called out on its own next
   to the download button. Kept intentionally short — see
   docs/remote-support-portal.md for why the fuller walkthrough moved behind
   the "Need help finding the download?" disclosure below. */
.remote-modal__checklist {
	display: grid;
	gap: 2px;
	list-style: none;
	margin: 0 0 4px;
	padding: 0;
}

.remote-modal__checklist li {
	color: var(--text);
	font-size: 0.92rem;
	line-height: 1.5;
	padding: 6px 0 6px 28px;
	position: relative;
}

.remote-modal__checklist li::before {
	border-bottom: 2.5px solid var(--brand-cyan);
	border-left: 2.5px solid var(--brand-cyan);
	content: "";
	height: 6px;
	left: 2px;
	position: absolute;
	top: 13px;
	transform: rotate(-45deg);
	width: 11px;
}

/* "Need help finding the download?" disclosure: same collapsed-by-default
   pattern as the FAQ accordion (.repair-faq__item), so the browser/device
   picker stays available without dominating the modal's default view. */
.remote-modal__help {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	margin-top: 16px;
	overflow: hidden;
}

.remote-modal__help summary {
	color: var(--navy);
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 700;
	list-style: none;
	padding: 12px 40px 12px 14px;
	position: relative;
}

.remote-modal__help summary::marker {
	content: "";
}

.remote-modal__help summary::-webkit-details-marker {
	display: none;
}

.remote-modal__help summary::after {
	color: var(--blue);
	content: "+";
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
}

.remote-modal__help[open] summary::after {
	content: "\2212";
}

.remote-modal__help summary:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: -2px;
}

.remote-modal__help-body {
	border-top: 1px solid var(--border);
	padding: 14px;
}

.remote-modal__platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.remote-modal__platform-button {
	background: var(--white);
	border: 2px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 7px 14px;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.remote-modal__platform-button:hover {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.remote-modal__platform-button:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Selected browser/device pill gets a thicker brand-cyan ring instead of a
   navy border so the active choice reads as "on brand" rather than just dark. */
.remote-modal__platform-button[aria-pressed="true"] {
	background: var(--navy);
	border-color: var(--brand-cyan);
	border-width: 3px;
	color: var(--white);
}

.remote-modal__panel {
	color: var(--text);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/* Brand texture & tech accents (visual refresh pass).
   Keeps the existing layout/copy intact and adds: a cyan hairline under
   masthead titles and eyebrows, a low-opacity circuit-trace texture on
   solid-color navy/pale sections only (never over a real photo), a navy
   "band" masthead treatment for pages that no longer carry a banner
   photo, and small cyan corner-bracket accents on a few key photo/card
   moments. */

/* Small tiled circuit-trace pattern for navy sections: faint traces and
   solder-point dots. Opacity is controlled entirely by the ::before
   rules below, so the SVG itself stays fully opaque. */
:root {
	--tts-circuit-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='none' stroke='%2300AEEF' stroke-width='1.9' stroke-linecap='round'%3E%3Cpath d='M0 45H50L70 25H130L150 45H180'/%3E%3Cpath d='M0 120H40L60 140H105L125 120H180'/%3E%3Cpath d='M35 0V60L55 80V130L35 150V180'/%3E%3Cpath d='M150 0V35L130 55V95L150 115V180'/%3E%3Cpath d='M55 80H88'/%3E%3Cpath d='M130 95H112'/%3E%3Cpath d='M130 55H108V38'/%3E%3Cpath d='M60 140V165H84'/%3E%3Ccircle cx='92' cy='80' r='4.4'/%3E%3Ccircle cx='108' cy='95' r='4.4'/%3E%3C/g%3E%3Cg fill='%2300AEEF'%3E%3Ccircle cx='70' cy='25' r='3.4'/%3E%3Ccircle cx='150' cy='45' r='3.4'/%3E%3Ccircle cx='60' cy='140' r='3.4'/%3E%3Ccircle cx='125' cy='120' r='3.4'/%3E%3Ccircle cx='35' cy='60' r='3.4'/%3E%3Ccircle cx='130' cy='55' r='3.4'/%3E%3Crect x='84' y='161' width='8' height='8' rx='1.5'/%3E%3Crect x='104' y='34' width='8' height='8' rx='1.5'/%3E%3C/g%3E%3C/svg%3E");

	/* Same board geometry in navy, for the pale sections. Without this the
	   tech language only ever appears on dark bands and the white parts of
	   the site fall back to a generic local-services look. */
	--tts-circuit-texture-ink: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='none' stroke='%230b1220' stroke-width='1.9' stroke-linecap='round'%3E%3Cpath d='M0 45H50L70 25H130L150 45H180'/%3E%3Cpath d='M0 120H40L60 140H105L125 120H180'/%3E%3Cpath d='M35 0V60L55 80V130L35 150V180'/%3E%3Cpath d='M150 0V35L130 55V95L150 115V180'/%3E%3Cpath d='M55 80H88'/%3E%3Cpath d='M130 95H112'/%3E%3Cpath d='M130 55H108V38'/%3E%3Cpath d='M60 140V165H84'/%3E%3Ccircle cx='92' cy='80' r='4.4'/%3E%3Ccircle cx='108' cy='95' r='4.4'/%3E%3C/g%3E%3Cg fill='%230b1220'%3E%3Ccircle cx='70' cy='25' r='3.4'/%3E%3Ccircle cx='150' cy='45' r='3.4'/%3E%3Ccircle cx='60' cy='140' r='3.4'/%3E%3Ccircle cx='125' cy='120' r='3.4'/%3E%3Ccircle cx='35' cy='60' r='3.4'/%3E%3Ccircle cx='130' cy='55' r='3.4'/%3E%3Crect x='84' y='161' width='8' height='8' rx='1.5'/%3E%3Crect x='104' y='34' width='8' height='8' rx='1.5'/%3E%3C/g%3E%3C/svg%3E");

	/* Masks are what let the texture run at a visible opacity without
	   fighting the copy: the pattern concentrates in a corner or along the
	   outer edges and falls away to nothing behind the headline. */
	--tts-texture-mask-corner: radial-gradient(115% 130% at 90% -12%, #000 0%, rgba(0, 0, 0, 0.55) 44%, transparent 76%);
	--tts-texture-mask-edges: radial-gradient(78% 92% at 50% 50%, transparent 0%, transparent 32%, rgba(0, 0, 0, 0.7) 68%, #000 100%);
}

/* Cyan hairline under every masthead title (photo, duotone, band, and
   legal variants alike) — the one consistent brand "tick" across pages. */
.inner-masthead__title::after {
	background: var(--brand-cyan);
	border-radius: 2px;
	content: "";
	display: block;
	height: 3px;
	margin-top: 14px;
	width: 56px;
}

/* Small cyan tick before eyebrow labels (pain-point / repair-trust
   sections). Adds the same hairline language in miniature. */
.eyebrow {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.eyebrow::before {
	background: var(--brand-cyan);
	border-radius: 1px;
	content: "";
	flex-shrink: 0;
	height: 2px;
	width: 18px;
}

/* Navy "band" masthead: used where no banner photo fits the page — the
   legal pages and Remote Support. Same compact sizing as the legal
   masthead, plus a gradient and board texture instead of a photo. */
.inner-masthead--band {
	background: radial-gradient(130% 160% at 12% -10%, #0f2338 0%, var(--navy) 55%, #030810 100%);
}

.inner-masthead--band::before {
	background-image: var(--tts-circuit-texture);
	background-repeat: repeat;
	background-size: 180px 180px;
	content: "";
	inset: 0;
	-webkit-mask-image: var(--tts-texture-mask-corner);
	mask-image: var(--tts-texture-mask-corner);
	opacity: 0.16;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.inner-masthead--band .inner-masthead__content {
	justify-content: center;
	min-height: 0;
	padding-block: 26px 30px;
}

/* Photo masthead: the banner photo runs in its own color under a neutral
   dark scrim (no tint, no circuit overlay) — a real photo reads better
   under a plain scrim than under a tech-pattern layer, so the darker
   overlay above carries the "compact banner" job on its own here. */
.inner-masthead--photo .inner-masthead__content {
	min-height: clamp(140px, 16vw, 220px);
	padding-block: 16px 20px;
}

/* Low-opacity circuit texture reused on the other two navy "moments"
   per page: the closing CTA band and the mid-page pain-point/trust
   section. Both already use isolation-friendly positioning once
   position + isolation are added here. */
.final-cta,
.pain-point {
	isolation: isolate;
	position: relative;
}

.final-cta::before,
.pain-point::before {
	background-image: var(--tts-circuit-texture);
	background-repeat: repeat;
	background-size: 180px 180px;
	content: "";
	inset: 0;
	/* Both sections centre their copy, so the texture is masked toward the
	   outer edges instead of one corner. */
	-webkit-mask-image: var(--tts-texture-mask-edges);
	mask-image: var(--tts-texture-mask-edges);
	opacity: 0.15;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

/* Pale sections get the same board geometry in navy at a much lower
   opacity — enough to feel like a technical surface up close, not enough
   to read as a pattern from across the room. */
.problems-grid,
.popular-services,
.parts-approvals {
	isolation: isolate;
	position: relative;
}

.problems-grid::before,
.popular-services::before,
.parts-approvals::before {
	background-image: var(--tts-circuit-texture-ink);
	background-repeat: repeat;
	background-size: 180px 180px;
	content: "";
	inset: 0;
	-webkit-mask-image: var(--tts-texture-mask-edges);
	mask-image: var(--tts-texture-mask-edges);
	opacity: 0.045;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

/* Data rail: a section divider built from a trace, three solder pads, and
   one right-angle branch. Small, cheap, and unmistakably board-like — it
   carries the tech language through the light parts of the page where a
   background texture would be too heavy. */
.tech-rule {
	align-items: center;
	display: flex;
	gap: 6px;
	height: 12px;
	margin: 0 auto 34px;
	max-width: 260px;
}

.tech-rule::before,
.tech-rule::after {
	background: linear-gradient(90deg, transparent, var(--brand-cyan));
	content: "";
	flex: 1;
	height: 2px;
}

.tech-rule::after {
	background: linear-gradient(270deg, transparent, var(--brand-cyan));
}

.tech-rule__node {
	background: var(--brand-cyan);
	border-radius: 1px;
	flex-shrink: 0;
	height: 5px;
	width: 5px;
}

.tech-rule__node--via {
	background: transparent;
	border: 2px solid var(--brand-cyan);
	border-radius: 50%;
	height: 9px;
	width: 9px;
}

/* On navy the rail keeps the same geometry; only the fade direction of
   the flanking traces needs no change. */
.tech-rule--on-dark .tech-rule__node,
.tech-rule--on-dark .tech-rule__node--via {
	opacity: 0.9;
}

/* Small cyan corner-bracket accent on a few key photo/card moments:
   the hero bench photo, the highlighted pricing card, and the About
   "real work" proof photos. Deliberately limited to these three so the
   detail stays a restrained accent, not a repeated pattern. */
.pricing-card--highlighted,
.about-proof-card__media {
	position: relative;
}

.about-proof-card__media {
	overflow: hidden;
}

.hero__photo-frame::before,
.pricing-card--highlighted::before,
.about-proof-card__media::before {
	border-left: 2px solid var(--brand-cyan);
	border-top: 2px solid var(--brand-cyan);
	content: "";
	height: 18px;
	left: 10px;
	pointer-events: none;
	position: absolute;
	top: 10px;
	width: 18px;
	z-index: 2;
}

.pricing-card--highlighted::after,
.about-proof-card__media::after {
	border-bottom: 2px solid var(--brand-cyan);
	border-right: 2px solid var(--brand-cyan);
	bottom: 10px;
	content: "";
	height: 18px;
	pointer-events: none;
	position: absolute;
	right: 10px;
	width: 18px;
	z-index: 2;
}

/* ------------------------------------------------------------------ */
/* Icon tiles, interactive polish & the Remote Support page.           */

/* Default size for icons from tts_icon(). Context rules such as
   .button-link > svg or .problem-card__icon svg are more specific and
   keep overriding this. */
.tts-icon {
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

/* Icon tiles pick up a hairline cyan edge so they read as a component
   on the board rather than a soft rounded square. */
.problem-card__icon {
	border: 1px solid rgba(0, 174, 239, 0.25);
	border-radius: 12px;
	height: 44px;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	width: 44px;
}

.path-card__icon {
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* The header CTA is the tightest button on the site; its icon runs one
   step smaller so the nav row does not gain width. */
.site-header__cta > svg {
	height: 17px;
	width: 17px;
}

/* Only cards that are actually links get this hover treatment — a static
   card that lights up implies a click that does nothing. A light-blue/cyan
   ring reads as "active" without turning the tile into a heavy black/navy
   outline. */
.help-card:hover .problem-card__icon,
.help-card:focus-visible .problem-card__icon {
	background: var(--white);
	border-color: var(--brand-cyan);
}

/* path-card icons stay dual-tone (navy line, cyan tile, coral accent) on
   hover rather than flattening to a single navy-outlined color. */
.path-card--link:hover .path-card__icon,
.path-card--link:focus-visible .path-card__icon {
	background: var(--white);
	border-color: var(--brand-cyan);
	color: var(--navy);
}

/* Small directional link inside a card (pricing, service type). Quieter
   than a button so the card keeps one clear action. */
.card-inline-link {
	align-items: center;
	color: var(--blue);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 6px;
	margin-top: 14px;
	text-decoration: none;
}

.card-inline-link > svg {
	height: 17px;
	width: 17px;
}

.card-inline-link:hover,
.card-inline-link:focus-visible {
	color: var(--blue-hover);
	text-decoration: underline;
}

/* Remote Support page
   ------------------------------------------------------------------ */

/* "Works well remotely" vs "better in person" — the most useful section
   on the page, so it gets a two-card compare layout rather than prose. */
.remote-fit {
	background: var(--bg-soft);
	isolation: isolate;
	padding-block: clamp(48px, 7vw, 80px);
	position: relative;
}

.remote-fit::before {
	background-image: var(--tts-circuit-texture-ink);
	background-repeat: repeat;
	background-size: 180px 180px;
	content: "";
	inset: 0;
	-webkit-mask-image: var(--tts-texture-mask-edges);
	mask-image: var(--tts-texture-mask-edges);
	opacity: 0.045;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.remote-fit__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-inline: auto;
	max-width: 960px;
}

@media (min-width: 820px) {
	.remote-fit__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.remote-fit__card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	padding: 26px 24px 8px;
	position: relative;
}

.remote-fit__card::before {
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.remote-fit__card--yes::before {
	background: var(--brand-cyan);
}

.remote-fit__card--no::before {
	background: var(--coral);
}

.remote-fit__heading {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 6px;
}

.remote-fit__heading h3 {
	margin: 0;
}

.remote-fit__heading svg {
	flex-shrink: 0;
	height: 22px;
	width: 22px;
}

.remote-fit__card--yes .remote-fit__heading svg {
	color: var(--brand-cyan);
}

.remote-fit__card--no .remote-fit__heading svg {
	color: var(--coral);
}

.remote-fit__lede {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin: 0 0 8px;
}

.remote-fit__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.remote-fit__list li {
	border-top: 1px solid var(--border);
	font-size: 0.98rem;
	line-height: 1.5;
	list-style: none;
	padding: 11px 0 11px 30px;
	position: relative;
}

.remote-fit__list--yes li::before {
	border-bottom: 2.5px solid var(--brand-cyan);
	border-left: 2.5px solid var(--brand-cyan);
	content: "";
	height: 6px;
	left: 5px;
	position: absolute;
	top: 16px;
	transform: rotate(-45deg);
	width: 11px;
}

.remote-fit__list--no li::before {
	background: var(--coral);
	border-radius: 1px;
	content: "";
	height: 3px;
	left: 4px;
	position: absolute;
	top: 21px;
	width: 14px;
}

.remote-fit__note {
	color: var(--text-muted);
	font-size: 0.98rem;
	margin: 24px auto 0;
	max-width: 720px;
	text-align: center;
}

/* The connect panel. This is the one place on the site that opens the
   support portal, so it is deliberately the loudest moment on the page. */
.remote-connect {
	background: radial-gradient(130% 160% at 12% -10%, #0f2338 0%, var(--navy) 55%, #030810 100%);
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(52px, 7vw, 88px);
	position: relative;
	text-align: center;
}

.remote-connect::before {
	background-image: var(--tts-circuit-texture);
	background-repeat: repeat;
	background-size: 220px 220px;
	content: "";
	inset: 0;
	-webkit-mask-image: var(--tts-texture-mask-corner);
	mask-image: var(--tts-texture-mask-corner);
	opacity: 0.18;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.remote-connect__panel {
	background: rgba(6, 17, 31, 0.55);
	border: 1px solid rgba(0, 174, 239, 0.35);
	border-radius: var(--radius-lg);
	margin-inline: auto;
	max-width: 640px;
	padding: 34px 26px 30px;
	position: relative;
}

.remote-connect__panel::before {
	border-left: 2px solid var(--brand-cyan);
	border-top: 2px solid var(--brand-cyan);
	content: "";
	height: 18px;
	left: 12px;
	pointer-events: none;
	position: absolute;
	top: 12px;
	width: 18px;
}

.remote-connect__panel::after {
	border-bottom: 2px solid var(--brand-cyan);
	border-right: 2px solid var(--brand-cyan);
	bottom: 12px;
	content: "";
	height: 18px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	width: 18px;
}

.remote-connect h2 {
	color: var(--white);
	font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.remote-connect p {
	color: rgba(234, 247, 255, 0.86);
	margin-inline: auto;
	max-width: 480px;
}

.remote-connect__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 22px;
}

.remote-connect__actions .button-link {
	min-height: 52px;
}

.remote-connect__portal {
	color: rgba(234, 247, 255, 0.66);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 18px auto 0;
	max-width: 420px;
}

/* Scam-safety band. Warm rather than red: this is guidance for customers
   who are already nervous about someone connecting to their computer. */
.remote-safety {
	padding-block: clamp(48px, 7vw, 80px);
}

.remote-safety__card {
	background: #fff7ed;
	border: 1px solid rgba(242, 103, 35, 0.35);
	border-radius: var(--radius-lg);
	margin-inline: auto;
	max-width: 820px;
	padding: 28px 26px;
}

.remote-safety__heading {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 10px;
}

.remote-safety__heading h2 {
	font-size: 1.4rem;
	margin: 0;
}

.remote-safety__heading svg {
	color: var(--action);
	flex-shrink: 0;
	height: 28px;
	width: 28px;
}

.remote-safety__list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
}

.remote-safety__list li {
	list-style: none;
	padding: 9px 0 9px 30px;
	position: relative;
}

.remote-safety__list li::before {
	border-bottom: 2.5px solid var(--action);
	border-left: 2.5px solid var(--action);
	content: "";
	height: 6px;
	left: 4px;
	position: absolute;
	top: 15px;
	transform: rotate(-45deg);
	width: 11px;
}

.remote-safety__note {
	font-weight: 700;
	margin: 18px 0 0;
}

/* Future photo slot for the "Tyler working on a laptop at a table" shot.
   Kept as a placeholder rather than a real image so nothing 404s before
   the photo is taken and copied to /img/. */
.remote-photo {
	padding-block: clamp(40px, 6vw, 68px);
}

.remote-photo-slot {
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-photo);
	margin-inline: auto;
	max-width: 720px;
}

.remote-photo__caption {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin: 16px auto 0;
	max-width: 560px;
	text-align: center;
}

/* Placeholder icons come from the shared icon set, so they need to win
   over the .tts-icon default size. */
.tts-icon.media-placeholder__icon {
	height: clamp(28px, 6vw, 40px);
	width: clamp(28px, 6vw, 40px);
}

/* ------------------------------------------------------------------ */
/* Reviews carousel (Reviews page).
   All reviews render immediately at full opacity on every breakpoint —
   nothing here waits on scroll-reveal or a filter click.
   - Below 700px without JS: a plain single column (no horizontal scroll,
     arrows hidden), a simple always-usable stack.
   - Below 700px with JS (html.js): one full-width card at a time in a
     swipeable, snapping horizontal strip, with working arrows — reviews-
     filter.js resets the scroll position on every filter/search change so
     it can never land on an empty slide.
   - 700px+: a horizontally scrolling 2-row grid with arrow controls.
   - 1000px+: 2 rows x 3 columns visible at a time.
   Filtering always works because hidden cards drop out of grid flow and
   the remaining cards reflow to fill the visible columns. */
.reviews-carousel {
	align-items: stretch;
	display: flex;
	gap: 8px;
}

.reviews-carousel__arrow {
	display: none;
}

@media (max-width: 699px) {
	html.js .reviews-carousel__arrow {
		align-items: center;
		align-self: center;
		background: var(--white);
		border: 1px solid var(--border-strong);
		border-radius: 999px;
		color: var(--navy);
		cursor: pointer;
		display: inline-flex;
		flex-shrink: 0;
		height: 40px;
		justify-content: center;
		width: 40px;
	}

	html.js .reviews-carousel__arrow svg {
		height: 18px;
		width: 18px;
	}

	html.js .reviews-carousel__arrow--prev svg {
		transform: scaleX(-1);
	}
}

@media (min-width: 700px) {
	.reviews-carousel__arrow {
		align-items: center;
		align-self: center;
		background: var(--white);
		border: 1px solid var(--border-strong);
		border-radius: 999px;
		color: var(--navy);
		cursor: pointer;
		display: inline-flex;
		flex-shrink: 0;
		height: 44px;
		justify-content: center;
		transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
		width: 44px;
	}

	.reviews-carousel__arrow:hover {
		background: var(--pale-blue);
		border-color: var(--brand-cyan);
		box-shadow: 0 0 0 1px var(--brand-cyan);
	}

	.reviews-carousel__arrow:focus-visible {
		outline: 3px solid var(--blue);
		outline-offset: 2px;
	}

	.reviews-carousel__arrow svg {
		height: 20px;
		width: 20px;
	}

	.reviews-carousel__arrow--prev svg {
		transform: scaleX(-1);
	}
}

.reviews-grid {
	flex: 1 1 auto;
	min-width: 0;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	.reviews-grid {
		scroll-behavior: auto;
	}
}

/* Mobile, JS present: one card per "page", native touch/trackpad swipe via
   scroll-snap. Without JS the base single-column rule above still applies
   (a plain stack), since a dead arrow next to an unscrollable list is
   worse than no arrow at all. */
@media (max-width: 699px) {
	html.js .reviews-grid {
		display: grid;
		gap: 14px;
		grid-auto-columns: 100%;
		grid-auto-flow: column;
		grid-template-columns: none;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		padding-bottom: 4px;
		scroll-snap-type: x mandatory;
	}

	html.js .reviews-grid > .review-card {
		scroll-snap-align: start;
	}
}

@media (min-width: 700px) {
	.reviews-grid {
		grid-auto-columns: calc((100% - 20px) / 2);
		grid-auto-flow: column;
		grid-template-columns: none;
		grid-template-rows: repeat(2, minmax(0, 1fr));
		overflow-x: auto;
		overscroll-behavior-x: contain;
		padding-bottom: 6px;
		scroll-snap-type: x proximity;
	}

	.reviews-grid > .review-card {
		scroll-snap-align: start;
	}
}

@media (min-width: 1000px) {
	.reviews-grid {
		grid-auto-columns: calc((100% - 40px) / 3);
	}
}
