/* TECHHELP 6.2.0 core bundle. Generated in enqueue order. Source CSS retained. */
/* tokens.css */
:root {
	--color-primary: #081120;
	--color-primary-soft: #0f172a;
	--color-bg: #ffffff;
	--color-bg-soft: #f8fafc;
	--color-bg-muted: #eef4fb;

	--color-accent: #2563eb;
	--color-accent-dark: #1d4ed8;
	--color-cyan: #22d3ee;
	--color-violet: #7c3aed;
	--color-success: #16a34a;
	--color-warning: #f59e0b;

	--color-text: #0f172a;
	--color-text-soft: #475569;
	--color-text-muted: #64748b;

	--color-border: rgba(15, 23, 42, 0.08);
	--color-border-strong: rgba(15, 23, 42, 0.14);
	--color-border-light: rgba(255, 255, 255, 0.08);

	--gradient-accent: linear-gradient(135deg, #2563eb 0%, #22d3ee 55%, #7c3aed 100%);
	--gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

	--shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.05);
	--shadow-md: 0 14px 36px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

	--radius-sm: 10px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 26px;

	--container: 1180px;
	--transition-fast: 0.18s ease;
	--transition-base: 0.22s ease;
}
/* base.css */
:root {
	color-scheme: light;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--color-text);
	font-family: var(--font-base, Inter, system-ui, sans-serif);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover {
	color: var(--color-primary-dark, #1d4ed8);
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.85rem;
	line-height: 1.1;
	color: var(--color-primary);
	font-weight: 800;
	letter-spacing: -0.03em;
}

h1 {
	font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

ul,
ol {
	margin: 0 0 1rem 1.1rem;
	padding: 0;
}

button,
input,
textarea,
select {
	font: inherit;
}

.site-main {
	display: block;
}

.entry-content > * + * {
	margin-top: 1rem;
}
/* layout.css */
.container {
	width: min(1180px, calc(100% - 2rem));
	margin-inline: auto;
}

.section {
	position: relative;
	padding: 5.5rem 0;
}

.section--light {
	background:
		radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.04), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section--muted {
	background:
		radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.04), transparent 24%),
		linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section + .section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(180px, 28vw);
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(15, 23, 42, 0),
		rgba(37, 99, 235, 0.22),
		rgba(15, 23, 42, 0)
	);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.35rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

@media (max-width: 1100px) {
	.cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.section {
		padding: 4.5rem 0;
	}

	.cards-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
/* ==========================================
   SECTION SHELL
========================================== */

.section-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 3.5rem 2rem;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(15, 23, 42, 0.05);
	box-shadow:
		0 10px 30px rgba(15, 23, 42, 0.04),
		0 2px 8px rgba(15, 23, 42, 0.03);
	backdrop-filter: blur(10px);
}

.section-shell .section-heading {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-shell .section__accent {
	margin-left: auto;
	margin-right: auto;
}

.section-shell .cards-grid,
.section-shell .faq,
.section-shell .info-band {
	margin-top: 1.25rem;
}

.section--light .section-shell {
	background: rgba(255, 255, 255, 0.78);
}

.section--muted .section-shell {
	background: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
	.section-shell {
		padding: 2.5rem 1.2rem;
		border-radius: 24px;
	}
}
/* utilities.css */
.text-center {
	text-align: center;
}

.content-card {
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-md);
}

.info-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.info-band__item {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	box-shadow: var(--shadow-sm);
}

.info-band__item strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-primary);
}

.cta-band {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) auto;
	align-items: center;
	gap: 2rem;
	padding: 2.5rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.cta-band__content h2 {
	margin-bottom: 0.75rem;
	max-width: 14ch;
}

.cta-band__content p {
	margin: 0;
	max-width: 56ch;
	color: var(--color-text-soft);
	line-height: 1.75;
	font-size: 1rem;
}

.cta-band__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.cta-band__actions .btn {
	min-width: 190px;
	min-height: 64px;
	padding: 1rem 1.4rem;
	font-size: 1rem;
	border-radius: 18px;
}

@media (max-width: 900px) {
	.cta-band {
		grid-template-columns: 1fr;
		align-items: flex-start;
		padding: 2rem 1.4rem;
	}

	.cta-band__actions {
		justify-content: flex-start;
		width: 100%;
	}

	.cta-band__actions .btn {
		width: 100%;
		min-width: 0;
	}
}

.footer-menu,
.footer-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
	margin-top: 0;
	background:
		radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.15), transparent 28%),
		radial-gradient(circle at 85% 85%, rgba(124, 58, 237, 0.12), transparent 25%),
		linear-gradient(180deg, #07101d 0%, #081120 55%, #0b1325 100%);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__top {
	padding: 4.5rem 0 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
	gap: 2rem;
}

.site-footer__title {
	margin-bottom: 0.85rem;
	color: #fff;
	font-size: 1.6rem;
}

.site-footer__text {
	max-width: 36ch;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.98rem;
	line-height: 1.75;
}

.site-footer__heading {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.site-footer__links,
.site-footer__links li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__links {
	display: grid;
	gap: 0.7rem;
}

.site-footer__links a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
	transition: color var(--transition-base), transform var(--transition-base);
}

.site-footer__links a:hover,
.site-footer__links .current-menu-item > a,
.site-footer__links .current_page_item > a {
	color: #fff;
	transform: translateX(2px);
}

.site-footer__contact {
	display: grid;
	gap: 0.85rem;
}

.site-footer__contact-link {
	display: flex;
	flex-direction: column;
	gap: 0.18rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none;
}

.site-footer__contact-link:hover {
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
}

.site-footer__contact-label {
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #93c5fd;
}

.site-footer__cta {
	margin-top: 0.4rem;
	width: fit-content;
}

.site-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.site-footer__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.82rem;
	font-weight: 700;
}

.site-footer__map-link-wrap {
	margin-top: 1.4rem;
}

.site-footer__map-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	transition:
		transform var(--transition-base),
		background var(--transition-base),
		box-shadow var(--transition-base),
		color var(--transition-base);
}

.site-footer__map-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.10);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.site-footer__map-icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 1rem;
}

.site-footer__bottom {
	padding: 1.15rem 0;
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-footer__copy,
.site-footer__mini {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
}

@media (max-width: 1200px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.info-band,
	.cta-band {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__grid,
	.site-footer__bottom-inner {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}
}
/* WhatsApp Official Style */
.floating-whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;

	display: inline-flex;
	align-items: center;
	gap: 0.6rem;

	padding: 0.85rem 1rem;
	border-radius: 999px;

	background: #25D366; /* WhatsApp official green */
	color: #fff;

	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;

	box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);

	transition: all 0.25s ease;
}

.floating-whatsapp:hover {
	background: #1ebe5d;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

/* Icon container */
.floating-whatsapp__icon {
	width: 36px;
	height: 36px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	background: rgba(255,255,255,0.15);
}

/* SVG icon */
.floating-whatsapp__icon svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}

/* Mobile */
@media (max-width: 780px) {
	.floating-whatsapp {
		bottom: 90px;
		right: 14px;
		padding: 0.8rem;
	}

	.floating-whatsapp span:last-child {
		display: none;
	}
}
.cta-band__actions {
	gap: 0.85rem;
	flex-wrap: wrap;
}

@media (max-width: 900px) {
	.cta-band__actions {
		flex-direction: column;
	}
}

/* ==========================================
   TECHHELP v2.9 mobile CTA proportions
   Centers CTA buttons and stops width + padding overflow on iPhone layouts.
========================================== */
@media (max-width: 767px) {
	.container {
		width: min(100% - 1.25rem, 1180px);
	}

	.section {
		padding: 3.5rem 0;
	}

	.section-shell {
		padding: 2rem 0.9rem;
		border-radius: 26px;
		overflow: hidden;
	}

	.cta-band {
		width: 100%;
		padding: 1.65rem 1rem;
		border-radius: 26px;
		text-align: center;
		overflow: hidden;
	}

	.cta-band__content h2 {
		max-width: 13ch;
		margin-left: auto;
		margin-right: auto;
		font-size: clamp(2rem, 9vw, 3rem);
		line-height: 1;
		text-wrap: balance;
	}

	.cta-band__content p {
		max-width: 34rem;
		margin-left: auto;
		margin-right: auto;
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.cta-band__actions {
		justify-content: center;
		align-items: center;
		width: 100%;
		gap: 0.7rem;
	}

	.cta-band__actions .btn {
		width: min(100%, 340px);
		max-width: 340px;
		min-width: 0;
		min-height: 56px;
		margin-left: auto;
		margin-right: auto;
		font-size: 0.98rem;
	}
}

/* components/buttons.css */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 50px;
	padding: 0.9rem 1.15rem;
	border: 1px solid transparent;
	border-radius: 16px;
	font-weight: 800;
	font-size: 0.96rem;
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	will-change: transform, box-shadow, background-color, border-color;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		background-color 0.22s ease,
		border-color 0.22s ease,
		color 0.22s ease,
		opacity 0.22s ease;
}

.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
	opacity: 0;
	transform: translateX(-18%);
	transition:
		opacity 0.24s ease,
		transform 0.35s ease;
	pointer-events: none;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.btn:active {
	transform: translateY(0) scale(0.985);
}

.btn:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 4px rgba(37, 99, 235, 0.16),
		0 12px 28px rgba(15, 23, 42, 0.12);
}

.btn--primary {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #7c3aed 100%);
	color: #fff;
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.btn--primary:hover {
	color: #fff;
	box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.btn--light {
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-primary);
	border-color: rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(10px);
}

.btn--light:hover {
	color: var(--color-primary);
	background: #fff;
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.btn[aria-disabled="true"],
.btn:disabled {
	opacity: 0.65;
	pointer-events: none;
}
/* TECHHELP v2.9: keep full-width mobile buttons inside their parent cards. */
.btn {
	max-width: 100%;
}

@media (max-width: 767px) {
	.btn {
		min-height: 54px;
		padding: 0.9rem 1.05rem;
		border-radius: 17px;
		line-height: 1.15;
		text-align: center;
	}
}

/* components/header.css */
.site-topbar {
	position: relative;
	z-index: 70;
	background: linear-gradient(90deg, #06101d 0%, #081120 55%, #0d1830 100%);
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-topbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 46px;
}

.site-topbar__left,
.site-topbar__right {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.site-topbar__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-topbar__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.site-topbar__link:hover {
	color: #fff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.985);
	border-bottom-color: rgba(15, 23, 42, 0.09);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.site-header > .container {
	width: min(1480px, calc(100% - 2rem));
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(190px, 275px) minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(0.7rem, 1vw, 1.15rem);
	min-height: 78px;
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
	max-width: 275px;
}

.site-branding__link,
.site-branding a,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	max-width: 100%;
	min-width: 0;
	text-decoration: none;
}

.custom-logo,
.site-branding img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(275px, 100%);
	max-height: 52px;
	object-fit: contain;
}

.site-branding__logo {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: var(--gradient-accent);
	color: #fff;
	font-weight: 900;
	font-size: 1.15rem;
	box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
	flex: 0 0 auto;
}

.site-branding__name {
	color: var(--color-primary);
	font-weight: 900;
	font-size: 1.2rem;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	overflow: visible;
}

.site-nav .menu,
.site-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.7rem, 0.85vw, 1.05rem);
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}

.site-nav li {
	position: relative;
	margin: 0;
	white-space: nowrap;
}

.site-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: #0f172a;
	font-weight: 800;
	font-size: clamp(0.84rem, 0.74vw, 0.92rem);
	letter-spacing: -0.015em;
	padding: 0.1rem 0;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-ancestor > a {
	color: #2563eb;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #2563eb, #22d3ee, #7c3aed);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after,
.site-nav .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.site-nav .menu-item-has-children::before {
	content: "";
	position: absolute;
	left: -12px;
	right: -12px;
	top: 100%;
	height: 16px;
	display: none;
	z-index: 20;
}

.site-nav .menu-item-has-children:hover::before,
.site-nav .menu-item-has-children:focus-within::before,
.site-nav .menu-item-has-children.is-open::before {
	display: block;
}

.site-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 0.55rem;
	margin: 8px 0 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
	z-index: 130;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
}

.site-nav .menu > .menu-item-has-children:nth-last-child(-n+3) > .sub-menu {
	left: auto;
	right: 0;
}

.site-nav .menu > .menu-item-has-children:nth-child(1) > .sub-menu,
.site-nav .menu > .menu-item-has-children:nth-child(4) > .sub-menu {
	min-width: min(540px, calc(100vw - 2rem));
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 0.2rem;
}

.site-nav .sub-menu li {
	margin: 0;
	white-space: normal;
}

.site-nav .sub-menu a {
	min-height: unset;
	padding: 0.74rem 0.88rem;
	border-radius: 12px;
	font-size: 0.94rem;
	font-weight: 760;
	white-space: normal;
	line-height: 1.25;
}

.site-nav .sub-menu a::after {
	display: none;
}

.site-nav .sub-menu a:hover {
	background: #f8fafc;
	color: #2563eb;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu,
.site-nav .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
	min-width: 0;
	flex-shrink: 0;
}

.site-header__phone {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 44px;
	max-width: 126px;
	padding: 0.46rem 0.72rem;
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.035);
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: var(--color-primary);
	font-size: 0.84rem;
	font-weight: 850;
	line-height: 1.12;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.site-header__phone:hover {
	color: #2563eb;
	background: rgba(37, 99, 235, 0.06);
	border-color: rgba(37, 99, 235, 0.14);
}

.site-header__phone-label {
	color: var(--color-text-muted);
	font-size: 0.62rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.site-header__phone-value {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.84rem;
	line-height: 1.12;
}

.site-header__quick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	min-width: 132px;
	padding: 0.78rem 1.05rem;
	border-radius: 14px;
	font-weight: 850;
	font-size: 0.92rem;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__quick--ghost {
	background: rgba(15, 23, 42, 0.04);
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: var(--color-primary);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-base), background var(--transition-base);
}

.site-header__quick--ghost:hover {
	background: rgba(15, 23, 42, 0.07);
	color: var(--color-primary);
	transform: translateY(-1px);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	appearance: none;
	border: 1px solid rgba(15, 23, 42, 0.1);
	background: rgba(255, 255, 255, 0.96);
	color: #0f172a;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	padding: 0;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
	background: #0f172a;
	border-color: #0f172a;
	color: #fff;
}

.nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.submenu-toggle {
	display: none;
}

@media (max-width: 1380px) {
	.site-header__phone {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
	}

	.custom-logo,
	.site-branding img {
		max-width: min(260px, 100%);
		max-height: 48px;
	}
}

@media (max-width: 1180px) {
	body.techhelp-nav-open {
		overflow: hidden;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-header > .container {
		width: min(1180px, calc(100% - 1.5rem));
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 0.8rem;
		min-height: 74px;
	}

	.site-branding {
		max-width: 240px;
	}

	.custom-logo,
	.site-branding img {
		max-width: min(240px, 100%);
		max-height: 48px;
	}

	.site-header__actions .btn,
	.site-header__quick,
	.site-header__phone {
		display: none;
	}

	.site-nav {
		position: fixed;
		top: var(--techhelp-menu-top, 74px);
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		padding: 0.9rem 1rem 1.25rem;
		background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(238, 244, 251, 0.96));
		backdrop-filter: blur(16px);
		border-top: 1px solid rgba(15, 23, 42, 0.08);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav .menu,
	.site-nav ul {
		display: block;
		width: min(720px, 100%);
		margin: 0 auto;
		padding: 0.75rem;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 22px;
		box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
	}

	.site-nav li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		white-space: normal;
		border-radius: 15px;
	}

	.site-nav .menu > li + li {
		border-top: 1px solid rgba(15, 23, 42, 0.06);
	}

	.site-nav a {
		grid-column: 1;
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 52px;
		padding: 0.85rem 0.75rem;
		font-size: 1.02rem;
		font-weight: 850;
		line-height: 1.25;
		white-space: normal;
	}

	.site-nav li:not(.menu-item-has-children) > a {
		grid-column: 1 / -1;
	}

	.site-nav a::after,
	.site-nav .menu-item-has-children::before {
		display: none;
	}

	.submenu-toggle {
		grid-column: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		margin-right: 0.25rem;
		border-radius: 13px;
		border: 1px solid rgba(15, 23, 42, 0.1);
		background: #f8fafc;
		color: #0f172a;
		font-size: 1rem;
		font-weight: 900;
		cursor: pointer;
		flex-shrink: 0;
		transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
	}

	.submenu-toggle[aria-expanded="true"] {
		background: #2563eb;
		border-color: #2563eb;
		color: #fff;
	}

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

	.submenu-toggle span {
		display: inline-block;
		transition: transform 0.18s ease;
	}

	.site-nav .sub-menu,
	.site-nav .menu > .menu-item-has-children:nth-last-child(-n+3) > .sub-menu,
	.site-nav .menu > .menu-item-has-children:nth-child(1) > .sub-menu,
	.site-nav .menu > .menu-item-has-children:nth-child(4) > .sub-menu {
		grid-column: 1 / -1;
		position: static;
		display: none;
		min-width: 100%;
		width: auto;
		padding: 0.45rem;
		margin: 0 0.25rem 0.75rem;
		background: #f8fafc;
		border: 1px solid rgba(15, 23, 42, 0.06);
		border-radius: 16px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		grid-template-columns: none;
	}

	.site-nav .menu-item-has-children:hover > .sub-menu,
	.site-nav .menu-item-has-children:focus-within > .sub-menu {
		display: none;
	}

	.site-nav .menu-item-has-children.is-open > .sub-menu,
	.site-nav .menu > .menu-item-has-children.is-open > .sub-menu,
	.site-nav .menu > .menu-item-has-children:nth-child(1).is-open > .sub-menu,
	.site-nav .menu > .menu-item-has-children:nth-child(4).is-open > .sub-menu,
	.site-nav .menu > .menu-item-has-children:nth-last-child(-n+3).is-open > .sub-menu {
		display: block;
	}

	.site-nav .sub-menu li {
		display: block;
		border: 0;
	}

	.site-nav .sub-menu li + li {
		border-top: 1px solid rgba(15, 23, 42, 0.05);
	}

	.site-nav .sub-menu a {
		display: flex;
		min-height: 44px;
		padding: 0.74rem 0.78rem;
		border-radius: 12px;
		font-size: 0.95rem;
		font-weight: 760;
		line-height: 1.28;
	}

	.site-nav .sub-menu a:hover {
		background: #fff;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 700px) {
	.site-topbar .container {
		flex-direction: column;
		justify-content: center;
		padding: 0.6rem 0;
	}

	.site-topbar__right {
		flex-wrap: wrap;
		justify-content: center;
	}

	.site-topbar__pill {
		text-align: center;
	}

	.site-header > .container {
		width: min(100% - 1rem, 1180px);
	}

	.site-branding {
		max-width: 205px;
	}

	.custom-logo,
	.site-branding img {
		max-width: min(205px, 100%);
		max-height: 46px;
	}

	.site-nav {
		padding-inline: 0.75rem;
	}

	.site-nav .menu,
	.site-nav ul {
		border-radius: 20px;
		padding: 0.55rem;
	}
}

@media (max-width: 420px) {
	.site-header__inner {
		min-height: 68px;
	}

	.site-branding {
		max-width: 182px;
	}

	.custom-logo,
	.site-branding img {
		max-width: min(182px, 100%);
		max-height: 42px;
	}

	.nav-toggle {
		width: 44px;
		height: 44px;
		border-radius: 13px;
	}

	.site-nav a {
		font-size: 0.98rem;
	}
}

/* V2.4.1: let the whole mobile drawer scroll, including quick actions. */
@media (max-width: 1240px) {
	.site-nav {
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.site-nav > .menu,
	.site-nav .menu {
		max-height: none !important;
		overflow: visible !important;
	}
}

@media (max-width: 520px) {
	.site-nav {
		max-height: calc(100vh - 68px);
	}
}


/* ==========================================
   TECHHELP v2.5 compact mobile navigation
   Desktop keeps the full dropdown menu. Mobile gets a simple 4-link panel.
========================================== */
.mobile-quick-nav {
	display: none;
}

@media (max-width: 1240px) {
	body.nav-open {
		overflow: hidden;
	}

	.site-nav,
	.site-nav.is-open {
		display: none !important;
	}

	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 70px;
	}

	.nav-toggle {
		display: inline-flex;
		position: relative;
		z-index: 1100;
	}

	.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.nav-toggle__bar {
		transition: transform 0.18s ease, opacity 0.18s ease;
	}

	.mobile-quick-nav {
		position: fixed;
		z-index: 1000;
		top: var(--techhelp-mobile-nav-top, 70px);
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		padding: 0.75rem;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-6px);
		transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
	}

	.mobile-quick-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.mobile-quick-nav__backdrop {
		position: absolute;
		inset: 0;
		border: 0;
		background: rgba(15, 23, 42, 0.22);
		backdrop-filter: blur(8px);
		cursor: pointer;
	}

	.mobile-quick-nav__card {
		position: relative;
		width: min(430px, 100%);
		margin: 0 auto;
		padding: 0.72rem;
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(15, 23, 42, 0.09);
		box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
	}

	.mobile-quick-nav__title {
		padding: 0.28rem 0.28rem 0.62rem;
		color: #64748b;
		font-size: 0.76rem;
		font-weight: 900;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}

	.mobile-quick-nav__items {
		display: grid;
		gap: 0.48rem;
	}

	.mobile-quick-nav__item {
		display: flex;
		flex-direction: column;
		gap: 0.12rem;
		min-height: 58px;
		padding: 0.82rem 0.92rem;
		border-radius: 16px;
		background: #f8fafc;
		border: 1px solid rgba(15, 23, 42, 0.07);
		color: #0f172a;
		text-decoration: none;
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	}

	.mobile-quick-nav__item:active,
	.mobile-quick-nav__item:hover,
	.mobile-quick-nav__item:focus-visible {
		background: #eff6ff;
		border-color: rgba(37, 99, 235, 0.18);
		color: #2563eb;
	}

	.mobile-quick-nav__label {
		font-size: 1rem;
		font-weight: 900;
		line-height: 1.12;
	}

	.mobile-quick-nav__note {
		color: #64748b;
		font-size: 0.83rem;
		font-weight: 650;
		line-height: 1.25;
	}

	.mobile-quick-nav__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.5rem;
		margin-top: 0.65rem;
	}

	.mobile-quick-nav__action {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 46px;
		padding: 0.78rem 1rem;
		border-radius: 15px;
		background: #fff;
		border: 1px solid rgba(15, 23, 42, 0.1);
		color: #0f172a;
		font-size: 0.95rem;
		font-weight: 900;
		line-height: 1;
		text-decoration: none;
	}

	.mobile-quick-nav__action--primary {
		background: linear-gradient(135deg, #2563eb, #7c3aed);
		border-color: transparent;
		color: #fff;
		box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
	}
}

@media (max-width: 520px) {
	.mobile-quick-nav {
		padding: 0.55rem;
	}

	.mobile-quick-nav__card {
		border-radius: 20px;
		padding: 0.62rem;
	}

	.mobile-quick-nav__item {
		min-height: 54px;
		padding: 0.74rem 0.82rem;
	}

	.mobile-quick-nav__label {
		font-size: 0.96rem;
	}

	.mobile-quick-nav__note {
		font-size: 0.78rem;
	}
}
/* End TECHHELP v2.5 compact mobile navigation */

/* ==========================================
   TECHHELP v2.8 header balance
   Keeps the logo away from the far screen edge and prevents the brand from overpowering the menu.
========================================== */
@media (min-width: 1241px) {
	.site-header > .container {
		width: min(1360px, calc(100% - clamp(3rem, 5vw, 5.5rem)));
	}

	.site-header__inner {
		grid-template-columns: minmax(175px, 245px) minmax(0, 1fr) auto;
		min-height: 74px;
	}

	.site-branding {
		max-width: 245px;
	}

	.custom-logo,
	.site-branding img {
		max-width: min(245px, 100%);
		max-height: 48px;
	}
}

@media (min-width: 1241px) and (max-width: 1380px) {
	.site-header > .container {
		width: min(1280px, calc(100% - 2.4rem));
	}

	.site-header__inner {
		grid-template-columns: minmax(170px, 225px) minmax(0, 1fr) auto;
	}

	.site-branding {
		max-width: 225px;
	}

	.custom-logo,
	.site-branding img {
		max-width: min(225px, 100%);
		max-height: 46px;
	}
}

/* components/hero.css */
.hero {
	position: relative;
	padding: clamp(4.5rem, 7vw, 7rem) 0;
	background:
		radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 32%),
		radial-gradient(circle at bottom center, rgba(168, 85, 247, 0.12), transparent 28%),
		linear-gradient(180deg, #071326 0%, #09162b 100%);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
	pointer-events: none;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	align-items: start;
	gap: clamp(2rem, 4vw, 4rem);
}

.hero__content {
	display: grid;
	align-content: start;
	gap: 1.25rem;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	width: fit-content;
	padding: 0.72rem 1.1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(241, 245, 249, 0.95);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__eyebrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
	box-shadow: 0 0 14px rgba(34, 211, 238, 0.5);
	flex-shrink: 0;
}

.hero h1 {
	margin: 0;
	max-width: 11ch;
	color: #ffffff;
	font-size: clamp(3rem, 6.2vw, 5.5rem);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.hero__content > p {
	margin: 0;
	max-width: 62ch;
	color: rgba(226, 232, 240, 0.82);
	font-size: 1.07rem;
	line-height: 1.85;
}

.hero__rating-wrap {
	margin-top: 0.25rem;
}

.hero__rating {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.15rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow:
		0 14px 34px rgba(2, 6, 23, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__stars {
	color: #fbbf24;
	font-size: 1.45rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

.hero__rating-text {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem;
	color: rgba(226, 232, 240, 0.88);
	font-size: 1rem;
	line-height: 1.5;
}

.hero__rating-text strong {
	color: #ffffff;
	font-size: clamp(1.5rem, 2vw, 2.1rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.hero__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0.15rem 0 0;
	padding: 0;
	list-style: none;
}

.hero__list li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 1rem 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.075);
	color: rgba(248, 250, 252, 0.95);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.45;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__list li::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.16);
	color: #67e8f9;
	font-size: 0.9rem;
	font-weight: 800;
	flex-shrink: 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
	margin-top: 0.1rem;
}

.hero__actions--price-finder {
	margin-top: 1.15rem;
}

.btn--price-finder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	min-width: 320px;
	min-height: 64px;
	padding: 0.95rem 1.5rem;
	border: 0;
	border-radius: 18px;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	cursor: pointer;
}

.btn--price-finder__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	line-height: 1;
}

.hero-price-finder-panel {
	margin-top: 1rem;
	max-width: 760px;
}

.hero-price-finder-panel__inner {
	position: relative;
	padding: 1.2rem;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(15, 23, 42, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(2, 6, 23, 0.3);
}

.hero-price-finder-panel__header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.hero-price-finder-panel__header h2 {
	margin: 0 0 0.35rem;
	color: #ffffff;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	line-height: 1.1;
}

.hero-price-finder-panel__header p {
	margin: 0;
	color: rgba(226, 232, 240, 0.86);
	font-size: 0.96rem;
	line-height: 1.6;
}

.hero-price-finder-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero-price-finder-panel__close:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: scale(1.04);
}

.hero-price-finder-panel__content {
	min-height: 88px;
}

.hero-price-finder-panel__loading,
.hero-price-finder-panel__error {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	color: #e2e8f0;
	text-align: center;
	font-weight: 600;
}

.hero-price-finder-panel__error {
	color: #fecaca;
	border: 1px solid rgba(239, 68, 68, 0.22);
	background: rgba(127, 29, 29, 0.18);
}

.hero-card {
	position: relative;
}

.hero-card__panel {
	position: relative;
	display: grid;
	gap: 1.35rem;
	padding: 1.5rem;
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(51, 65, 85, 0.78), rgba(30, 41, 59, 0.86));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 30px 80px rgba(2, 6, 23, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(10px);
	overflow: visible;
}

.hero-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: #ffffff;
}

.hero-card__heading-gradient {
	font-size: clamp(1.7rem, 2vw, 2.35rem);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: -0.04em;
	background: linear-gradient(135deg, #d946ef 0%, #818cf8 48%, #22d3ee 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-card__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.9rem 1.2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(96, 165, 250, 0.22);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.96rem;
	font-weight: 700;
	white-space: nowrap;
	backdrop-filter: blur(8px);
}

.hero-card__pill-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #38bdf8;
}

.hero-card__pill-icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.device-stack {
	display: grid;
	gap: 1rem;
}

.device-box {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) 56px;
	align-items: center;
	gap: 1.2rem;
	padding: 1.15rem 1.2rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.3));
	border: 1px solid rgba(96, 165, 250, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	text-decoration: none;
	transition:
		transform 0.24s ease,
		border-color 0.24s ease,
		box-shadow 0.24s ease,
		background 0.24s ease;
	will-change: transform;
}

.device-box:hover {
	transform: translateY(-4px);
	border-color: rgba(168, 85, 247, 0.42);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 0 1px rgba(129, 140, 248, 0.08),
		0 0 28px rgba(96, 165, 250, 0.12);
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(30, 41, 59, 0.42));
}

.device-box.is-apple:hover {
	border-color: rgba(217, 70, 239, 0.42);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 24px rgba(217, 70, 239, 0.16);
}

.device-box.is-phone:hover {
	border-color: rgba(96, 165, 250, 0.46);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 24px rgba(59, 130, 246, 0.18);
}

.device-box.is-laptop:hover {
	border-color: rgba(59, 130, 246, 0.44);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 24px rgba(59, 130, 246, 0.14);
}

.device-box.is-board:hover {
	border-color: rgba(34, 211, 238, 0.42);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 24px rgba(34, 211, 238, 0.16);
}

.device-box.is-battery:hover {
	border-color: rgba(168, 85, 247, 0.46);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 24px rgba(168, 85, 247, 0.18);
}

.device-box.is-charger:hover {
	border-color: rgba(192, 132, 252, 0.46);
	box-shadow:
		0 18px 40px rgba(2, 6, 23, 0.28),
		0 0 24px rgba(192, 132, 252, 0.18);
}

.device-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 24px;
	background: radial-gradient(circle at top, rgba(99, 102, 241, 0.28), rgba(15, 23, 42, 0.82));
	border: 1px solid rgba(129, 140, 248, 0.32);
	color: #c4b5fd;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 28px rgba(79, 70, 229, 0.14);
	transition:
		transform 0.24s ease,
		box-shadow 0.24s ease,
		color 0.24s ease,
		border-color 0.24s ease;
	position: relative;
	overflow: hidden;
}

.device-box__icon::before {
	content: "";
	position: absolute;
	inset: -35%;
	background: conic-gradient(
		from 180deg,
		rgba(255, 255, 255, 0) 0deg,
		rgba(255, 255, 255, 0.14) 70deg,
		rgba(255, 255, 255, 0) 140deg,
		rgba(96, 165, 250, 0.15) 210deg,
		rgba(255, 255, 255, 0) 300deg,
		rgba(255, 255, 255, 0) 360deg
	);
	opacity: 0;
	transform: rotate(0deg);
	transition: opacity 0.24s ease;
	pointer-events: none;
}

.device-box:hover .device-box__icon::before {
	opacity: 1;
	animation: heroIconSweep 2.1s linear infinite;
}

.device-box:hover .device-box__icon {
	transform: translateY(-2px) scale(1.05);
	color: #e9d5ff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 0 34px rgba(129, 140, 248, 0.22);
}

.device-box.is-phone .device-box__icon {
	color: #e9d5ff;
	border-color: rgba(96, 165, 250, 0.38);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 24px rgba(59, 130, 246, 0.16);
}

.device-box.is-apple .device-box__icon {
	color: #f5d0fe;
	border-color: rgba(217, 70, 239, 0.38);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 24px rgba(217, 70, 239, 0.18);
}

.device-box.is-laptop .device-box__icon {
	color: #bfdbfe;
	border-color: rgba(59, 130, 246, 0.38);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 24px rgba(59, 130, 246, 0.18);
}

.device-box.is-board .device-box__icon {
	color: #a5f3fc;
	border-color: rgba(34, 211, 238, 0.38);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 24px rgba(34, 211, 238, 0.18);
}

.device-box.is-battery .device-box__icon {
	color: #f0abfc;
	border-color: rgba(168, 85, 247, 0.38);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 24px rgba(168, 85, 247, 0.18);
}

.device-box.is-charger .device-box__icon {
	color: #d8b4fe;
	border-color: rgba(192, 132, 252, 0.38);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 24px rgba(192, 132, 252, 0.18);
}

.device-box__icon svg {
	width: 38px;
	height: 38px;
	display: block;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
	transition:
		transform 0.24s ease,
		filter 0.24s ease;
}

.device-box:hover .device-box__icon svg {
	transform: scale(1.06);
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

.device-box__content {
	display: grid;
	gap: 0.35rem;
	min-width: 0;
}

.device-box__content strong {
	display: block;
	margin: 0;
	font-size: clamp(1.1rem, 1.3vw, 1.35rem);
	font-weight: 800;
	line-height: 1.2;
	background: linear-gradient(135deg, #f0abfc 0%, #60a5fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transition:
		transform 0.24s ease,
		filter 0.24s ease;
	transform-origin: left center;
}

.device-box:hover .device-box__content strong {
	transform: translateX(1px);
	filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.14));
}

.device-box__content span {
	display: block;
	margin: 0;
	color: rgba(226, 232, 240, 0.86);
	font-size: 0.98rem;
	line-height: 1.6;
}

.device-box__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.82);
	transition:
		transform 0.24s ease,
		background 0.24s ease,
		color 0.24s ease,
		border-color 0.24s ease,
		box-shadow 0.24s ease;
}

.device-box:hover .device-box__arrow {
	transform: translateX(4px) scale(1.05);
	background: rgba(129, 140, 248, 0.12);
	border-color: rgba(129, 140, 248, 0.26);
	color: #ffffff;
	box-shadow: 0 0 18px rgba(129, 140, 248, 0.14);
}

.device-box__arrow svg {
	width: 20px;
	height: 20px;
	display: block;
}

.hero-card__footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card__footer-copy {
	display: grid;
	gap: 0.35rem;
	max-width: 260px;
}

.hero-card__footer-copy strong {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.hero-card__footer-copy span {
	color: rgba(226, 232, 240, 0.78);
	font-size: 0.94rem;
	line-height: 1.55;
}

.hero-card__stat {
	display: grid;
	gap: 0.12rem;
	min-width: 180px;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	color: #ffffff;
	box-shadow: 0 24px 46px rgba(79, 70, 229, 0.28);
}

.hero-card__stat small {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.92;
}

.hero-card__stat strong {
	margin: 0;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.hero-card__stat span {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.35;
	opacity: 0.92;
}

.price-finder-sticky {
	display: none;
}

@keyframes heroIconSweep {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1100px) {
	.hero__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero h1 {
		max-width: 10ch;
	}

	.hero-card {
		max-width: 100%;
	}

	.hero-card__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-card__footer-copy {
		max-width: none;
	}

	.hero-card__stat {
		min-width: 0;
		width: 100%;
		max-width: 260px;
	}
}

@media (max-width: 767px) {
	.hero {
		padding: 2.4rem 0 4.75rem;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero__content {
		gap: 1rem;
	}

	.hero__eyebrow {
		padding: 0.62rem 0.9rem;
		font-size: 0.7rem;
		letter-spacing: 0.07em;
	}

	.hero h1 {
		max-width: 8ch;
		font-size: clamp(2.7rem, 14vw, 4rem);
		line-height: 0.94;
		letter-spacing: -0.06em;
	}

	.hero__content > p {
		max-width: none;
		font-size: 0.98rem;
		line-height: 1.72;
	}

	.hero__rating {
		width: 100%;
		gap: 0.7rem;
		padding: 0.9rem 1rem;
		border-radius: 18px;
	}

	.hero__stars {
		font-size: 1.2rem;
	}

	.hero__rating-text {
		font-size: 0.95rem;
	}

	.hero__rating-text strong {
		font-size: 1.8rem;
	}

	.hero__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.7rem;
	}

	.hero__list li {
		padding: 0.85rem 0.85rem;
		border-radius: 16px;
		font-size: 0.9rem;
		line-height: 1.35;
		align-items: flex-start;
	}

	.hero__list li::before {
		width: 22px;
		height: 22px;
		font-size: 0.82rem;
		margin-top: 0.05rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn--price-finder {
		width: 100%;
		min-width: 0;
		min-height: 58px;
		padding: 0.9rem 1.1rem;
		border-radius: 16px;
		font-size: 0.98rem;
	}

	.hero-price-finder-panel {
		max-width: 100%;
	}

	.hero-price-finder-panel__inner {
		padding: 1rem;
		border-radius: 18px;
	}

	.hero-price-finder-panel__header {
		gap: 0.75rem;
	}

	.hero-price-finder-panel__header h2 {
		font-size: 1.12rem;
	}

	.hero-price-finder-panel__header p {
		font-size: 0.92rem;
		line-height: 1.5;
	}

	.hero-price-finder-panel__close {
		width: 36px;
		height: 36px;
		font-size: 1.3rem;
	}

	.hero-card__panel {
		padding: 1rem;
		border-radius: 22px;
		gap: 1rem;
	}

	.hero-card__top {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
	}

	.hero-card__heading-gradient {
		font-size: 1.9rem;
		line-height: 0.95;
		max-width: 6ch;
	}

	.hero-card__pill {
		padding: 0.72rem 0.95rem;
		font-size: 0.84rem;
		white-space: nowrap;
		flex-shrink: 0;
	}

	.hero-card__pill-icon {
		width: 20px;
		height: 20px;
	}

	.hero-card__pill-icon svg {
		width: 20px;
		height: 20px;
	}

	.device-stack {
		gap: 0.85rem;
	}

	.device-box {
		grid-template-columns: 62px minmax(0, 1fr) 36px;
		gap: 0.8rem;
		padding: 0.9rem;
		border-radius: 20px;
	}

	.device-box__icon {
		width: 54px;
		height: 54px;
		border-radius: 16px;
	}

	.device-box__icon svg {
		width: 26px;
		height: 26px;
	}

	.device-box__content strong {
		font-size: 0.98rem;
		line-height: 1.15;
	}

	.device-box__content span {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.device-box__arrow {
		width: 32px;
		height: 32px;
	}

	.device-box__arrow svg {
		width: 18px;
		height: 18px;
	}

	.hero-card__footer {
		gap: 0.85rem;
		padding-top: 0.5rem;
	}

	.hero-card__footer-copy strong {
		font-size: 0.98rem;
	}

	.hero-card__footer-copy span {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.hero-card__stat {
		max-width: none;
		width: 100%;
		padding: 0.95rem 1rem;
		border-radius: 16px;
	}

	.hero-card__stat strong {
		font-size: 1.75rem;
	}

	.hero-card__stat span {
		font-size: 0.85rem;
	}

	.price-finder-sticky {
		display: block;
		position: fixed;
		left: 16px;
		right: 16px;
		bottom: 16px;
		z-index: 9999;
	}

	.price-finder-sticky .btn {
		width: 100%;
		min-height: 56px;
		border-radius: 14px;
		font-size: 1rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	}
}

@media (max-width: 420px) {
	.hero h1 {
		font-size: clamp(2.45rem, 13vw, 3.45rem);
		max-width: 8.5ch;
	}

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

	.hero-card__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-card__heading-gradient {
		max-width: none;
		font-size: 1.75rem;
	}

	.hero-card__pill {
		white-space: normal;
	}
}
@media (max-width: 767px) {
	.hero .hero__actions--price-finder,
	.hero .btn--price-finder {
		display: none !important;
	}
}

/* ==========================================
   TECHHELP v2.9 hero balance fixes
   Prevent long service-page titles and right-side popular-fixes cards from
   visually colliding on desktop, and keep mobile hero content contained.
========================================== */
.hero__content,
.hero-card,
.hero-card__panel {
	min-width: 0;
}

.hero h1 {
	max-width: min(100%, 11ch);
	overflow-wrap: normal;
	word-break: normal;
}

@media (min-width: 1101px) {
	body:not(.home) .hero__grid {
		grid-template-columns: minmax(0, 0.94fr) minmax(360px, 500px);
		gap: clamp(2.5rem, 4vw, 4.5rem);
	}

	body:not(.home) .hero h1 {
		max-width: min(100%, 10.8ch);
		font-size: clamp(3rem, 5vw, 4.85rem);
		line-height: 0.98;
		letter-spacing: -0.052em;
	}

	body:not(.home) .hero-card {
		max-width: 500px;
		width: 100%;
		justify-self: end;
	}

	body:not(.home) .hero-card__panel {
		padding: clamp(1.2rem, 1.6vw, 1.45rem);
	}

	body:not(.home) .device-box {
		grid-template-columns: 74px minmax(0, 1fr) 44px;
		gap: 1rem;
		padding: 1rem;
	}

	body:not(.home) .device-box__icon {
		width: 64px;
		height: 64px;
		border-radius: 20px;
	}

	body:not(.home) .device-box__icon svg {
		width: 31px;
		height: 31px;
	}
}

@media (min-width: 1101px) and (max-width: 1320px) {
	body:not(.home) .hero__grid {
		grid-template-columns: minmax(0, 0.96fr) minmax(340px, 440px);
		gap: 2.2rem;
	}

	body:not(.home) .hero h1 {
		font-size: clamp(2.85rem, 4.6vw, 4.25rem);
		max-width: min(100%, 10.4ch);
	}

	body:not(.home) .hero-card {
		max-width: 440px;
	}

	body:not(.home) .hero-card__top {
		align-items: flex-start;
	}

	body:not(.home) .hero-card__pill {
		padding-inline: 0.95rem;
		font-size: 0.88rem;
	}
}

@media (max-width: 767px) {
	.hero {
		overflow: hidden;
	}

	.hero h1 {
		max-width: 100%;
		font-size: clamp(2.45rem, 11.6vw, 3.65rem);
		line-height: 0.98;
	}

	.hero__content > p {
		font-size: 0.97rem;
	}

	.hero-card__panel,
	.device-box,
	.hero__list li {
		max-width: 100%;
	}
}

/* components/section-heading.css */
.section-heading {
	position: relative;
	max-width: 860px;
	margin-bottom: 2.2rem;
}

.section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.95rem;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.07);
	border: 1px solid rgba(37, 99, 235, 0.1);
	color: #1d4ed8;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.section__eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #22d3ee;
	box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12);
}

.section__title {
	margin-bottom: 0.85rem;
	max-width: 22ch;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: -0.04em;
}

.section__text {
	max-width: 90ch;
	margin-left: auto;
	margin-right: auto;
	color: var(--color-text-soft);
	font-size: 1rem;
	line-height: 1.85;
}

.section__accent {
	margin-top: 1.2rem;
	width: 88px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #2563eb, #22d3ee, #7c3aed);
	opacity: 0.95;
}

@media (max-width: 780px) {
	.section-heading {
		margin-bottom: 1.8rem;
	}

	.section__title {
		max-width: none;
	}
}

/* components/cards.css */
.cards-grid {
	align-items: stretch;
}

.service-card,
.contact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 24px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
	backdrop-filter: blur(14px);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base),
		background var(--transition-base);
}

.service-card::before,
.contact-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, #2563eb, #22d3ee, #7c3aed);
	opacity: 0.92;
}

.service-card:hover,
.contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 46px rgba(15, 23, 42, 0.11);
	border-color: rgba(37, 99, 235, 0.14);
	background: rgba(255, 255, 255, 0.95);
}

.service-card__hero,
.contact-card {
	padding: 1.4rem 1.35rem 1rem;
}

.service-card__hero h3,
.contact-card h3 {
	margin-bottom: 0.55rem;
	font-size: 1.18rem;
	letter-spacing: -0.02em;
	color: var(--color-primary);
}

.service-card__hero p,
.contact-card p {
	margin: 0;
	color: var(--color-text-soft);
	line-height: 1.75;
	font-size: 0.97rem;
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 1rem;
	padding: 0 1.35rem 1.35rem;
}

.service-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-card__tags li {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: #1d4ed8;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.issue-list {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.issue-list li {
	padding: 0.95rem 1rem;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.issue-list strong {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--color-primary);
	font-size: 0.96rem;
}

.issue-list span {
	display: block;
	color: var(--color-text-soft);
	font-size: 0.93rem;
	line-height: 1.7;
}

.contact-card {
	padding: 1.35rem;
	gap: 1rem;
	justify-content: space-between;
}

.contact-card .btn {
	width: fit-content;
}

@media (max-width: 780px) {
	.service-card__hero,
	.contact-card,
	.service-card__body {
		padding-left: 1.1rem;
		padding-right: 1.1rem;
	}
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* Tablet */
@media (max-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}
.service-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-card__items {
	margin-top: auto;
}

/* Service section layout refinements.
   These rules keep service-page fault sections balanced, even when a page only
   has one fallback card or the importer has not yet been run. */
.services-section .section-heading {
	max-width: 860px;
	margin: 0 auto 2.25rem;
	text-align: center;
}

.services-section .section__text {
	margin-left: auto;
	margin-right: auto;
}

.services-section:not(.services-section--home) .container {
	width: min(1240px, calc(100% - 2rem));
}

.services-section:not(.services-section--home) .services-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	max-width: 1160px;
	margin: 0 auto;
}

.services-section--faults .service-card {
	min-height: 100%;
}

.services-section--faults .service-card__hero {
	padding: 1.55rem 1.45rem 1.05rem;
}

.services-section--faults .service-card__body {
	padding: 0 1.45rem 1.45rem;
}

.services-section--faults .service-card__hero h3 {
	font-size: clamp(1.18rem, 1.6vw, 1.38rem);
}

.services-section--faults .issue-list li {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-section--categories .services-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 940px;
	margin: 0 auto;
}

.services-section:not(.services-section--home) .services-grid--count-1 {
	grid-template-columns: minmax(0, 1fr);
	max-width: 980px;
}

.services-section:not(.services-section--home) .services-grid--count-1 .service-card {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.32fr);
	align-items: stretch;
	min-height: 320px;
}

.services-section:not(.services-section--home) .services-grid--count-1 .service-card__hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	border-right: 1px solid rgba(15, 23, 42, 0.07);
	background:
		radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.10), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
}

.services-section:not(.services-section--home) .services-grid--count-1 .service-card__body {
	justify-content: center;
	padding: 2rem;
}

.services-section:not(.services-section--home) .services-grid--count-1 .issue-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.services-section:not(.services-section--home) .services-grid--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 940px;
}

@media (max-width: 980px) {
	.services-section:not(.services-section--home) .services-grid,
	.services-section--categories .services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 860px;
	}

	.services-section:not(.services-section--home) .services-grid--count-1 .service-card {
		grid-template-columns: 1fr;
	}

	.services-section:not(.services-section--home) .services-grid--count-1 .service-card__hero {
		border-right: 0;
		border-bottom: 1px solid rgba(15, 23, 42, 0.07);
	}
}

@media (max-width: 640px) {
	.services-section .section-heading {
		margin-bottom: 1.6rem;
		text-align: left;
	}

	.services-section:not(.services-section--home) .services-grid,
	.services-section--categories .services-grid,
	.services-section:not(.services-section--home) .services-grid--count-2 {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.services-section:not(.services-section--home) .services-grid--count-1 .service-card__hero,
	.services-section:not(.services-section--home) .services-grid--count-1 .service-card__body {
		padding: 1.35rem;
	}

	.services-section:not(.services-section--home) .services-grid--count-1 .issue-list {
		grid-template-columns: 1fr;
	}
}


/* components/faq.css */
.faq {
	display: grid;
	gap: 1rem;
}

.faq-item {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}

.faq-item::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, #2563eb, #22d3ee);
	opacity: 0.95;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
	border-color: rgba(37, 99, 235, 0.12);
}

.faq-item summary {
	position: relative;
	list-style: none;
	cursor: pointer;
	padding: 1.25rem 3.4rem 1.25rem 1.25rem;
	font-size: 1rem;
	font-weight: 800;
	color: var(--color-primary);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 1.15rem;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 1.2rem;
	font-weight: 700;
	transition:
		transform var(--transition-base),
		background var(--transition-base),
		color var(--transition-base);
}

.faq-item[open] summary::after {
	content: "–";
	background: #2563eb;
	color: #fff;
	transform: translateY(-50%) rotate(180deg);
}

.faq-item__content {
	padding: 0 1.25rem 1.25rem;
}

.faq-item__content p {
	margin: 0;
	color: var(--color-text-soft);
	line-height: 1.8;
}

/* TECHHELP v2.5 FAQ density improvement */
@media (min-width: 980px) {
	.faq {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}
}

@media (max-width: 520px) {
	.faq {
		gap: 0.75rem;
	}

	.faq-item {
		border-radius: 18px;
	}

	.faq-item summary {
		padding: 1.05rem 3.1rem 1.05rem 1rem;
		font-size: 0.96rem;
	}

	.faq-item__content {
		padding: 0 1rem 1.05rem;
	}
}

/* components/forms.css */
form p {
	margin-bottom: 1rem;
}

label {
	display: block;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.35rem;
}
/* components/animations.css */
.reveal-ready {
	opacity: 0;
	transform: translateY(18px) scale(0.985);
	filter: blur(6px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.reveal-ready.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

.float-soft {
	animation: floatSoft 5.5s ease-in-out infinite;
}

.pulse-soft {
	animation: pulseSoft 2.8s ease-in-out infinite;
}

@keyframes floatSoft {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

@keyframes pulseSoft {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.14);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal-ready,
	.reveal-ready.is-visible {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		transition: none !important;
	}

	.float-soft,
	.pulse-soft {
		animation: none !important;
	}
}
/* components/location-links.css */
.location-links {
	margin-top: 48px;
	padding: 28px;
	background: linear-gradient(180deg, #0f172a, #020617);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 14px;
}

.location-links h2 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #fff;
}

.location-links p {
	color: #94a3b8;
	margin-bottom: 16px;
}

.location-links__list {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.location-links__list a {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 8px;
	background: rgba(255,255,255,0.04);
	color: #e2e8f0;
	text-decoration: none;
	transition: all 0.2s ease;
}

.location-links__list a:hover {
	background: #22c55e;
	color: #022c22;
	transform: translateY(-2px);
}

.location-links__group {
	margin-top: 1rem;
}

.location-links__group h3 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	color: #ffffff;
}
/* components/shop-intro.css */
.shop-intro-block {
	padding: 0 0 2rem;
}

.shop-intro-block__inner {
	display: grid;
	gap: 1.25rem;
	padding: 1.5rem;
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.shop-intro-block__content {
	display: grid;
	gap: 0.85rem;
}

.shop-intro-block__eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: #1d4ed8;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.shop-intro-block__title {
	margin: 0;
	font-size: clamp(1.7rem, 2vw, 2.4rem);
	line-height: 1.1;
	color: #0f172a;
}

.shop-intro-block__text {
	margin: 0;
	max-width: 72ch;
	color: #475569;
	line-height: 1.8;
	font-size: 1rem;
}

.shop-intro-block__points {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
}

.shop-intro-block__points li {
	display: inline-flex;
	align-items: center;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
	color: #0f172a;
	font-size: 0.92rem;
	font-weight: 700;
}

@media (max-width: 767px) {
	.shop-intro-block {
		padding-bottom: 1.5rem;
	}

	.shop-intro-block__inner {
		padding: 1.1rem;
		border-radius: 16px;
	}

	.shop-intro-block__title {
		font-size: 1.55rem;
	}

	.shop-intro-block__text {
		font-size: 0.96rem;
	}
}
/* components/price-finder.css */
.hero__actions--price-finder {
	margin-top: 1.35rem;
}

.btn--price-finder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	min-width: 320px;
	min-height: 64px;
	padding: 0.95rem 1.5rem;
	border: 0;
	border-radius: 18px;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	cursor: pointer;
}

.btn--price-finder__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	line-height: 1;
}

.hero-price-finder-panel {
	margin-top: 1rem;
	max-width: 760px;
}

.hero-price-finder-panel__inner {
	position: relative;
	padding: 1.2rem;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(15, 23, 42, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(2, 6, 23, 0.3);
}

.hero-price-finder-panel__header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.hero-price-finder-panel__header h2 {
	margin: 0 0 0.35rem;
	color: #ffffff;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	line-height: 1.1;
}

.hero-price-finder-panel__header p {
	margin: 0;
	color: rgba(226, 232, 240, 0.86);
	font-size: 0.96rem;
	line-height: 1.6;
}

.hero-price-finder-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero-price-finder-panel__close:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: scale(1.04);
}

.hero-price-finder-panel__content {
	min-height: 88px;
}

.hero-price-finder-panel__loading,
.hero-price-finder-panel__error {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	color: #e2e8f0;
	text-align: center;
	font-weight: 600;
}

.hero-price-finder-panel__error {
	color: #fecaca;
	border: 1px solid rgba(239, 68, 68, 0.22);
	background: rgba(127, 29, 29, 0.18);
}

.price-finder-sticky {
	display: none;
}

@media (max-width: 767px) {
	.btn--price-finder {
		width: 100%;
		min-width: 0;
		min-height: 58px;
		padding: 0.9rem 1.1rem;
		border-radius: 16px;
		font-size: 0.98rem;
	}

	.hero-price-finder-panel {
		max-width: 100%;
	}

	.hero-price-finder-panel__inner {
		padding: 1rem;
		border-radius: 18px;
	}

	.hero-price-finder-panel__header {
		gap: 0.75rem;
	}

	.hero-price-finder-panel__header h2 {
		font-size: 1.12rem;
	}

	.hero-price-finder-panel__header p {
		font-size: 0.92rem;
		line-height: 1.5;
	}

	.hero-price-finder-panel__close {
		width: 36px;
		height: 36px;
		font-size: 1.3rem;
	}

	.price-finder-sticky {
		display: block;
		position: fixed;
		left: 16px;
		right: 16px;
		bottom: 16px;
		z-index: 9999;
	}

	.price-finder-sticky .btn {
		width: 100%;
		min-height: 56px;
		border-radius: 14px;
		font-size: 1rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	}
}
/* v3.2 pricing and quote clarity section */
.repair-pricing-section {
	position: relative;
	background:
		radial-gradient(circle at 14% 12%, rgba(56, 189, 248, 0.13), transparent 28%),
		radial-gradient(circle at 92% 10%, rgba(124, 58, 237, 0.12), transparent 30%),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.repair-pricing {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
	gap: clamp(1.25rem, 3vw, 2.3rem);
	align-items: start;
	padding: clamp(1.15rem, 3vw, 2rem);
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(16px);
}

.repair-pricing__content,
.repair-pricing__tool {
	min-width: 0;
}

.repair-pricing__eyebrow {
	margin-bottom: 0.8rem;
}

.repair-pricing__content h2 {
	margin: 0;
	max-width: 700px;
	color: var(--thp-ink, #0f172a);
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 0.96;
	letter-spacing: -0.055em;
}

.repair-pricing__intro {
	max-width: 680px;
	margin: 1rem 0 0;
	color: #475569;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.75;
}

.repair-pricing__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.82rem;
	margin-top: 1.35rem;
}

.repair-pricing__mini-card,
.repair-pricing__notice,
.repair-pricing__quote-list,
.repair-pricing__woocommerce-note,
.repair-pricing__fallback {
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: rgba(248, 250, 252, 0.76);
	border-radius: 18px;
}

.repair-pricing__mini-card {
	padding: 0.95rem;
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.repair-pricing__mini-card:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.28);
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.repair-pricing__mini-card strong,
.repair-pricing__notice strong,
.repair-pricing__quote-list strong,
.repair-pricing__woocommerce-note strong,
.repair-pricing__fallback strong {
	display: block;
	color: #0f172a;
	font-size: 0.96rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.repair-pricing__mini-card p,
.repair-pricing__notice p,
.repair-pricing__woocommerce-note p,
.repair-pricing__fallback p {
	margin: 0.45rem 0 0;
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.6;
}

.repair-pricing__notice {
	position: relative;
	margin-top: 1rem;
	padding: 1rem 1rem 1rem 1.25rem;
	overflow: hidden;
}

.repair-pricing__notice::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, #38bdf8, #7c3aed);
}

.repair-pricing__tool {
	position: sticky;
	top: calc(var(--thp-header-height, 86px) + 1rem);
	padding: clamp(1rem, 2.2vw, 1.35rem);
	border: 1px solid rgba(37, 99, 235, 0.16);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
		radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.15), transparent 32%);
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.repair-pricing__tool-head {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.repair-pricing__tool-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.14));
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.repair-pricing__tool-head h3 {
	margin: 0;
	color: #0f172a;
	font-size: clamp(1.25rem, 2vw, 1.72rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.repair-pricing__tool-head p {
	margin: 0.45rem 0 0;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.58;
}

.repair-pricing__calculator {
	min-height: 96px;
	padding: 0.75rem;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 20px;
	background: #ffffff;
	overflow: hidden;
}

.repair-pricing__calculator :where(form, .woocommerce, .device-price-calculator, .price-calculator, .calculator, fieldset) {
	max-width: 100%;
}

.repair-pricing__calculator :where(input, select, textarea, button) {
	max-width: 100%;
}

.repair-pricing__calculator :where(select, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea) {
	border-radius: 12px;
}

.repair-pricing__fallback {
	padding: 1rem;
}

.repair-pricing__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-top: 0.95rem;
}

.repair-pricing__actions .btn {
	min-height: 48px;
	border-radius: 14px;
}

.repair-pricing__quote-list {
	margin-top: 0.9rem;
	padding: 1rem;
}

.repair-pricing__quote-list ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	margin: 0.8rem 0 0;
	padding: 0;
	list-style: none;
}

.repair-pricing__quote-list li {
	position: relative;
	padding: 0.56rem 0.7rem 0.56rem 2rem;
	border-radius: 13px;
	background: #ffffff;
	color: #475569;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
}

.repair-pricing__quote-list li::before {
	content: "✓";
	position: absolute;
	left: 0.65rem;
	top: 0.55rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
	font-size: 0.72rem;
	font-weight: 900;
}

.repair-pricing__text-link {
	color: #2563eb;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
}

.repair-pricing__text-link:hover {
	text-decoration: underline;
}

.repair-pricing__woocommerce-note {
	margin-top: 0.9rem;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(124, 58, 237, 0.07));
}

.repair-pricing__shop-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.85rem;
}

.repair-pricing__shop-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: #ffffff;
	color: #2563eb;
	font-size: 0.85rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.repair-pricing__shop-links a:hover {
	transform: translateY(-1px);
}

@media (max-width: 1100px) {
	.repair-pricing {
		grid-template-columns: 1fr;
	}

	.repair-pricing__tool {
		position: relative;
		top: auto;
	}
}

@media (max-width: 767px) {
	.repair-pricing-section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.repair-pricing {
		padding: 0.95rem;
		border-radius: 24px;
		gap: 1rem;
	}

	.repair-pricing__content h2 {
		font-size: clamp(1.75rem, 8vw, 2.6rem);
		line-height: 1.02;
	}

	.repair-pricing__intro {
		font-size: 1rem;
		line-height: 1.65;
	}

	.repair-pricing__cards,
	.repair-pricing__quote-list ul {
		grid-template-columns: 1fr;
	}

	.repair-pricing__tool {
		padding: 0.95rem;
		border-radius: 22px;
	}

	.repair-pricing__tool-head {
		gap: 0.7rem;
	}

	.repair-pricing__tool-icon {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
		border-radius: 14px;
	}

	.repair-pricing__calculator {
		padding: 0.55rem;
		border-radius: 18px;
	}

	.repair-pricing__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.repair-pricing__actions .btn,
	.repair-pricing__text-link {
		width: 100%;
		max-width: 420px;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
		justify-content: center;
	}

	.repair-pricing__shop-links {
		flex-direction: column;
	}

	.repair-pricing__shop-links a {
		width: 100%;
	}
}


/* v3.2.1: remove promotional "Best Price" labels from the repair price calculator output.
   The calculator plugin can render badges dynamically, so JS also removes matching text after results load. */
.repair-pricing__calculator .techhelp-hide-best-price-badge,
.repair-pricing__calculator [class*="best-price"],
.repair-pricing__calculator [class*="best_price"],
.repair-pricing__calculator [class*="bestPrice"],
[data-price-finder-content] .techhelp-hide-best-price-badge,
[data-price-finder-content] [class*="best-price"],
[data-price-finder-content] [class*="best_price"],
[data-price-finder-content] [class*="bestPrice"],
.device-price-calculator .techhelp-hide-best-price-badge,
.device-price-calculator [class*="best-price"],
.device-price-calculator [class*="best_price"],
.device-price-calculator [class*="bestPrice"] {
	display: none !important;
}

/* components/price-popup.css */
/* v4.4 simplified price finder popup */
.th-price-popup[hidden] { display: none !important; }
.th-price-popup { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: clamp(1rem, 3vw, 2rem); }
.th-price-popup__backdrop { position: absolute; inset: 0; background: rgba(2,8,23,.68); backdrop-filter: blur(9px); }
.th-price-popup__dialog { position: relative; width: min(680px, 100%); max-height: min(86vh, 760px); overflow: auto; border: 1px solid rgba(191,219,254,.34); border-radius: 28px; background: linear-gradient(180deg,#fff,#f8fbff); box-shadow: 0 34px 100px rgba(2,8,23,.38); padding: clamp(1rem,2.2vw,1.35rem); }
.th-price-popup__close { position:absolute; top:.72rem; right:.72rem; display:grid; place-items:center; width:2.35rem; height:2.35rem; border:1px solid #dbe7f2; border-radius:999px; background:#fff; color:#0f172a; font-size:1.55rem; line-height:1; cursor:pointer; z-index:2; box-shadow:0 10px 24px rgba(15,23,42,.1); }
.th-price-popup__head { display:grid; grid-template-columns:auto minmax(0,1fr); gap:.8rem; align-items:center; padding:.2rem 2.6rem .9rem .2rem; }
.th-price-popup__icon { display:grid; place-items:center; width:2.9rem; height:2.9rem; border-radius:1rem; background:linear-gradient(135deg,#dbeafe,#f3e8ff); }
.th-price-popup__head p { margin:0 0 .18rem; color:#2563eb; font-size:.72rem; font-weight:950; letter-spacing:.1em; text-transform:uppercase; }
.th-price-popup h2 { margin:0; color:#071126; font-size:clamp(1.55rem,3vw,2.05rem); line-height:1.02; letter-spacing:-.05em; }
.th-price-popup__tool { padding:.75rem; border:1px solid #dfe8f5; border-radius:21px; background:#fff; }
.th-price-popup__tool :where(form,select,input,textarea,button,.device-price-calculator,.price-calculator,.calculator) { max-width:100%; }
.th-price-popup__fallback { display:grid; gap:.25rem; padding:.85rem; border-radius:16px; background:#f8fafc; color:#64748b; }
.th-price-popup__fallback strong { color:#0f172a; }
.th-price-popup__tiny-help { margin:.9rem 0 0; color:#64748b; text-align:center; font-size:.88rem; line-height:1.45; }
.th-price-popup__tiny-help a { color:#2563eb; font-weight:900; text-decoration:none; }
body.th-price-popup-open { overflow:hidden; }
@media (max-width:767px){ .th-price-popup { align-items:end; padding:0; } .th-price-popup__dialog { width:100%; max-height:88vh; border-radius:26px 26px 0 0; padding:.95rem; animation: thPricePopupSheet .22s ease-out; } .th-price-popup__head { padding-right:2.55rem; } .th-price-popup__tool { padding:.55rem; } }
@keyframes thPricePopupSheet { from { transform:translateY(18px); opacity:.75; } to { transform:none; opacity:1; } }

/* compact hidden fallback pricing page */
.repair-pricing-page--compact { background:linear-gradient(180deg,#f8fbff 0%,#fff 100%); }
.repair-pricing-utility { padding:clamp(2rem,5vw,4rem) 0; }
.repair-pricing-utility__card { width:min(760px,100%); margin-inline:auto; padding:clamp(1rem,2.4vw,1.65rem); border:1px solid #dbe7f2; border-radius:28px; background:#fff; box-shadow:0 26px 80px rgba(15,23,42,.09); }
.repair-pricing-utility__head h1 { margin:.8rem 0 .6rem; font-size:clamp(2rem,5vw,3.2rem); line-height:.98; letter-spacing:-.06em; color:#071126; }
.repair-pricing-utility__head p,.repair-pricing-utility__note span,.repair-pricing-utility__fallback span { color:#64748b; line-height:1.6; }
.repair-pricing-utility__calculator { margin-top:1rem; padding:.8rem; border:1px solid #e0e9f5; border-radius:22px; background:#f8fbff; overflow:hidden; }
.repair-pricing-utility__calculator :where(form,select,input,textarea,button,.device-price-calculator) { max-width:100%; }
.repair-pricing-utility__fallback,.repair-pricing-utility__note { display:grid; gap:.35rem; margin-top:.9rem; padding:.95rem 1rem; border:1px solid #e2eaf6; border-radius:18px; background:#fff; }
.repair-pricing-utility__note { border-color:#bfdbfe; background:#eff6ff; }
.repair-pricing-utility__actions { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1rem; }
@media (max-width:767px){ .repair-pricing-utility { padding:1.25rem 0 1.8rem; } .repair-pricing-utility__card { border-radius:22px; padding:.9rem; } .repair-pricing-utility__actions { display:grid; grid-template-columns:1fr; } .repair-pricing-utility__actions .btn { width:100%; } }

/* v5.0 lazy-loaded iframe price finder */
.th-price-popup__tool--iframe { position: relative; min-height: 430px; padding: 0; overflow: hidden; }
.th-price-popup__iframe { display:block; width:100%; height:min(70vh, 610px); min-height:430px; border:0; background:#fff; }
.th-price-popup__iframe[src] + .th-price-popup__fallback { display:none; }
.repair-pricing-page--popup { padding:0 !important; background:#fff; }
.repair-pricing-page--popup .repair-pricing-utility { padding:0 !important; }
.repair-pricing-page--popup .container { width:100% !important; max-width:none !important; padding:0 !important; }
.repair-pricing-page--popup .repair-pricing-utility__card { width:100% !important; margin:0 !important; border:0 !important; border-radius:0 !important; box-shadow:none !important; padding:.75rem !important; }
.repair-pricing-page--popup .repair-pricing-utility__head { display:none !important; }
@media (max-width:767px){ .th-price-popup__tool--iframe { min-height: 520px; } .th-price-popup__iframe { height:78vh; min-height:520px; } }
.repair-pricing-page--popup .repair-pricing-utility__note,
.repair-pricing-page--popup .repair-pricing-utility__actions {
	display: none !important;
}

/* components/floating-actions.css */
.floating-whatsapp {
	position: fixed;
	right: 16px;
	bottom: 18px;
	z-index: 9998;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background-color: #25d366;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.floating-whatsapp:hover {
	transform: scale(1.08);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp:active {
	transform: scale(0.98);
}

.floating-whatsapp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}

.floating-whatsapp__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Hidden by default.
   JS adds .is-visible after 60% scroll on mobile. */
.price-finder-sticky {
	display: none;
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition:
		opacity 0.24s ease,
		transform 0.24s ease;
}

.price-finder-sticky.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

@media (max-width: 767px) {
	.price-finder-sticky {
		display: block;
		position: fixed;
		left: 16px;
		right: 16px;
		bottom: 16px;
		z-index: 9999;
	}

	.price-finder-sticky .btn {
		width: 100%;
		min-height: 56px;
		border-radius: 14px;
		font-size: 1rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	}

	.floating-whatsapp {
		width: 56px;
		height: 56px;
		right: 16px;
		bottom: 92px;
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
	}

	.floating-whatsapp--with-sticky {
		bottom: 92px;
	}
}
/* components/quick-repairs-mobile.css */
.quick-repairs-mobile {
	display: none;
}

@media (max-width: 767px) {
	.home-services--desktop {
		display: none !important;
	}

	.quick-repairs-mobile {
		display: block;
		padding-top: 1.25rem;
		padding-bottom: 1.75rem;
	}

	.quick-repairs-mobile .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.quick-repairs-mobile__wrap {
		padding: 22px 18px;
		border-radius: 26px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
		box-shadow:
			0 20px 50px rgba(15, 23, 42, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.85);
	}

	.quick-repairs-mobile__eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 12px;
		border-radius: 999px;
		background: #e8eefc;
		color: #2954d1;
		font-size: 12px;
		font-weight: 800;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.quick-repairs-mobile__eyebrow::before {
		content: "";
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: linear-gradient(135deg, #22d3ee, #3b82f6);
	}

	.quick-repairs-mobile__title {
		margin: 16px 0 8px;
		color: #0f172a;
		font-size: clamp(2rem, 8vw, 2.4rem);
		font-weight: 900;
		line-height: 0.98;
		letter-spacing: -0.04em;
	}

	.quick-repairs-mobile__intro {
		margin: 0 0 18px;
		color: #64748b;
		font-size: 15px;
		line-height: 1.65;
	}

	.quick-repairs-mobile__slider {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 84%;
		gap: 12px;
		overflow-x: auto;
		padding-bottom: 6px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.quick-repairs-mobile__slider::-webkit-scrollbar {
		display: none;
	}

	.quick-repairs-mobile__card {
		scroll-snap-align: start;
		text-decoration: none;
		color: inherit;
		padding: 16px;
		border-radius: 22px;
		background: linear-gradient(180deg, #0f172a, #172554);
		box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
		border: 1px solid rgba(96, 165, 250, 0.12);
	}

	.quick-repairs-mobile__icon {
		width: 54px;
		height: 54px;
		border-radius: 16px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 14px;
		background: linear-gradient(135deg, rgba(99, 102, 241, 0.26), rgba(168, 85, 247, 0.22));
		border: 1px solid rgba(192, 132, 252, 0.22);
		color: #d8b4fe;
		box-shadow: 0 10px 24px rgba(79, 70, 229, 0.16);
	}

	.quick-repairs-mobile__icon svg {
		width: 28px;
		height: 28px;
		display: block;
	}

	.quick-repairs-mobile__card-title {
		margin: 0 0 6px;
		font-size: 24px;
		font-weight: 800;
		line-height: 1.02;
		letter-spacing: -0.03em;
		background: linear-gradient(135deg, #f0abfc, #60a5fa);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

	.quick-repairs-mobile__card-text {
		margin: 0 0 14px;
		color: rgba(226, 232, 240, 0.86);
		font-size: 14px;
		line-height: 1.55;
	}

	.quick-repairs-mobile__chips {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-bottom: 14px;
	}

	.quick-repairs-mobile__chip {
		padding: 7px 10px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.08);
		color: #dbeafe;
		font-size: 12px;
		font-weight: 700;
	}

	.quick-repairs-mobile__cta {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: #ffffff;
		font-size: 14px;
		font-weight: 800;
	}

	.quick-repairs-mobile__cta::after {
		content: "→";
	}

	.quick-repairs-mobile__hint {
		margin-top: 14px;
		text-align: center;
		color: #64748b;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}
}
/* components/growth-sections.css */
/* ==========================================
   TECHHELP Ireland-ready growth sections
========================================== */
.th-process__grid,
.th-proof__grid,
.th-business__cards,
.th-areas__grid {
	display: grid;
	gap: 1rem;
}

.th-process__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	counter-reset: process;
}

.th-process-card,
.th-proof-card,
.th-business-card,
.th-area-card {
	position: relative;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
	backdrop-filter: blur(14px);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base),
		background var(--transition-base);
}

.th-process-card:hover,
.th-proof-card:hover,
.th-business-card:hover,
.th-area-card:hover {
	transform: translateY(-5px);
	border-color: rgba(37, 99, 235, 0.18);
	box-shadow: 0 24px 52px rgba(15, 23, 42, 0.11);
	background: rgba(255, 255, 255, 0.96);
}

.th-process-card {
	padding: 1.45rem 1.25rem;
	overflow: hidden;
}

.th-process-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--gradient-accent);
}

.th-process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1rem;
	border-radius: 16px;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	color: #ffffff;
	font-weight: 900;
	letter-spacing: -0.03em;
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.th-process-card h3,
.th-proof-card h3,
.th-business-card h3 {
	font-size: 1.08rem;
	letter-spacing: -0.025em;
	margin-bottom: 0.55rem;
}

.th-process-card p,
.th-proof-card p,
.th-business-card p {
	margin: 0;
	color: var(--color-text-soft);
	font-size: 0.95rem;
	line-height: 1.72;
}

.th-proof__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.th-proof-card {
	padding: 1.35rem;
}

.th-proof-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: rgba(22, 163, 74, 0.1);
	color: var(--color-success);
	font-weight: 900;
}

.th-business {
	background:
		radial-gradient(circle at 0% 20%, rgba(34, 211, 238, 0.08), transparent 28%),
		radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.08), transparent 24%),
		linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.th-business__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 4rem);
}

.th-business__copy {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.th-business__copy h2 {
	margin-top: 0.8rem;
	font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.th-business__copy p {
	max-width: 62ch;
	color: var(--color-text-soft);
	font-size: 1.02rem;
	line-height: 1.8;
}

.th-business__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.4rem;
}

.th-business__cards {
	grid-template-columns: 1fr;
}

.th-business-card {
	padding: 1.35rem 1.45rem;
}

.th-business-card::before {
	content: "";
	position: absolute;
	inset: 16px auto 16px 0;
	width: 4px;
	border-radius: 999px;
	background: var(--gradient-accent);
	opacity: 0.85;
}

.th-business-card h3,
.th-business-card p {
	padding-left: 0.5rem;
}

.th-areas__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.th-area-card {
	display: grid;
	gap: 0.2rem;
	padding: 1.05rem 1rem;
	text-decoration: none;
}

.th-area-card strong {
	color: var(--color-primary);
	font-size: 1.02rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.th-area-card span {
	color: var(--color-text-soft);
	font-size: 0.9rem;
	line-height: 1.45;
}

@media (max-width: 1100px) {
	.th-process__grid,
	.th-proof__grid,
	.th-areas__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.th-business__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.th-process__grid,
	.th-proof__grid,
	.th-areas__grid {
		grid-template-columns: 1fr;
	}

	.th-business__copy {
		padding: 1.35rem;
		border-radius: 24px;
	}

	.th-business__actions {
		flex-direction: column;
	}

	.th-business__actions .btn {
		width: 100%;
	}
}

/* ==========================================
   TECHHELP v2.9 mobile business/support section balance
========================================== */
@media (max-width: 767px) {
	.th-business__grid {
		gap: 1.25rem;
	}

	.th-business__copy {
		width: 100%;
		padding: 1.55rem 1rem;
		border-radius: 26px;
		overflow: hidden;
	}

	.th-business__copy h2 {
		font-size: clamp(2rem, 9.5vw, 3.05rem);
		line-height: 1.02;
		letter-spacing: -0.055em;
		text-wrap: balance;
	}

	.th-business__copy p {
		font-size: 0.98rem;
		line-height: 1.72;
	}

	.th-business__actions {
		justify-content: center;
		align-items: center;
		width: 100%;
		gap: 0.7rem;
		margin-top: 1.15rem;
	}

	.th-business__actions .btn {
		width: min(100%, 340px);
		max-width: 340px;
		min-width: 0;
		min-height: 56px;
		margin-left: auto;
		margin-right: auto;
	}

	.th-business-card {
		padding: 1.2rem 1.1rem;
		border-radius: 22px;
	}
}

/* components/ai-seo.css */
.techhelp-ai-answers{
	padding:clamp(36px,5vw,76px) 0;
	background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
}
.techhelp-ai-answers__inner{
	width:min(1180px,calc(100% - 40px));
	margin:0 auto;
}
.techhelp-ai-answers__eyebrow{
	display:inline-flex;
	align-items:center;
	gap:8px;
	margin:0 0 12px;
	padding:7px 13px;
	border:1px solid rgba(37,99,235,.18);
	border-radius:999px;
	background:#fff;
	color:#2563eb;
	font-size:12px;
	font-weight:900;
	letter-spacing:.08em;
	text-transform:uppercase;
}
.techhelp-ai-answers h2{
	max-width:760px;
	margin:0 0 22px;
	color:#071329;
	font-size:clamp(30px,4vw,52px);
	line-height:.98;
	letter-spacing:-.05em;
}
.techhelp-ai-answers__grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:16px;
}
.techhelp-ai-answer-card{
	min-height:100%;
	padding:22px;
	border:1px solid rgba(15,23,42,.09);
	border-radius:22px;
	background:#fff;
	box-shadow:0 18px 45px rgba(15,23,42,.07);
}
.techhelp-ai-answer-card h3{
	margin:0 0 10px;
	color:#071329;
	font-size:20px;
	line-height:1.15;
	letter-spacing:-.02em;
}
.techhelp-ai-answer-card p{
	margin:0;
	color:#53627a;
	font-size:16px;
	line-height:1.6;
}
@media (max-width: 820px){
	.techhelp-ai-answers{padding:28px 0;background:#fff;}
	.techhelp-ai-answers__inner{width:min(100% - 28px,620px);}
	.techhelp-ai-answers__grid{grid-template-columns:1fr;gap:12px;}
	.techhelp-ai-answer-card{padding:18px;border-radius:18px;box-shadow:0 10px 28px rgba(15,23,42,.06);}
	.techhelp-ai-answers h2{font-size:30px;line-height:1.05;margin-bottom:16px;}
	.techhelp-ai-answer-card h3{font-size:18px;}
	.techhelp-ai-answer-card p{font-size:15px;}
}
