/* ==========================================================================
   WA CENTRAL SECURITY — WORDPRESS INTEGRATION

   theme-styles.css is a byte-for-byte copy of the design's stylesheet and is
   never edited, so everything WordPress needs that the static page did not —
   admin-bar clearance, inner page templates, comments, pagination — lives here
   and is loaded after it.

   Built on the design's own tokens: navy #041c3b, cyan #00a2e8, a 1280px
   container with 30px gutters, and the same breakpoints.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. WordPress chrome
   -------------------------------------------------------------------------- */

/* Universal Sticky Header on all pages (Home, About, Services, Contact, etc.) */
html {
	overflow-x: clip;
}

body,
.about-page,
.contact-page,
.services-page,
.page-template-template-about,
.page-template-template-services,
.page-template-template-contact {
	overflow-x: clip !important;
}

.navbar-header {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 1000 !important;
}

/* The sticky navbar has to clear the admin bar for logged-in users. */
body.admin-bar .navbar-header {
	top: 32px !important;
}

@media screen and (max-width: 782px) {
	body.admin-bar .navbar-header {
		top: 46px !important;
	}
}

/* The drawer takes over the viewport, so the admin bar must not offset it. */
body.admin-bar.mobile-menu-open .navbar-header {
	top: 0 !important;
}

/* Honeypot: off-screen rather than display:none, which bots skip. */
.wacs-hp {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	overflow: hidden;
}

/* Brands added from the admin as an uploaded logo rather than a built-in vector. */
.brand-logo-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.brand-logo-image img {
	max-height: 44px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* The header and footer are shared by every page, so their typography must not
   depend on which page they happen to be on.

   style.css sets `.about-page, .contact-page { font-family: 'Inter', … }` on the
   body, and the header sets no font of its own — so on those two pages the nav
   inherited Inter. Inter is never loaded (index.html does not request it, and
   adding it would change the brand marquee), so it fell back to the system UI
   font. Different letterforms, different widths: the menu items visibly jumped
   as you moved between the home page and an inner page.

   Pinning the shared chrome to the site font keeps it identical everywhere.
   Page content is untouched, so the inner pages still read as designed. */
.navbar-header,
.navbar-header input,
.navbar-header button,
.navbar-header select,
.site-footer,
.modal-backdrop,
.modal-backdrop input,
.modal-backdrop button,
.modal-backdrop select,
.modal-backdrop textarea,
.toast-notification,
.floating-chat-btn,
.back-to-top-btn {
	font-family: var(--font-primary);
}

/* --------------------------------------------------------------------------
   2. Inner page shell
   -------------------------------------------------------------------------- */

.wacs-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
}

.wacs-main {
	display: block;
	background: #ffffff;
	padding: 72px 0 96px;
}

.wacs-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 56px;
	align-items: start;
}

.wacs-content-col {
	min-width: 0;
}

/* --------------------------------------------------------------------------
   3. Page banner
   -------------------------------------------------------------------------- */

.wacs-page-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #020b17 0%, #041c3b 46%, #0a2e5c 100%);
	padding: 84px 0 76px;
}

.wacs-page-hero-glow {
	position: absolute;
	top: -180px;
	right: -140px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 162, 232, 0.26) 0%, rgba(0, 162, 232, 0) 68%);
	pointer-events: none;
}

.wacs-page-hero-inner {
	position: relative;
	z-index: 2;
}

.wacs-page-hero .hero-eyebrow {
	margin-bottom: 18px;
}

.wacs-page-title {
	margin: 0;
	color: #ffffff;
	font-family: var(--font-primary);
	font-size: clamp(32px, 4.4vw, 52px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.02em;
}

.wacs-page-sub {
	margin: 18px 0 0;
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.76);
	font-size: 17px;
	line-height: 1.68;
}

.wacs-breadcrumb {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wacs-breadcrumb a {
	color: var(--cyan-500);
	transition: color var(--transition-fast);
}

.wacs-breadcrumb a:hover {
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   4. Post listings
   -------------------------------------------------------------------------- */

.wacs-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 34px;
}

.wacs-post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--slate-200);
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.wacs-post-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 162, 232, 0.4);
	box-shadow: var(--shadow-lg);
}

.wacs-post-thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--slate-100);
}

.wacs-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.wacs-post-card:hover .wacs-post-thumb img {
	transform: scale(1.06);
}

.wacs-post-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px 28px 28px;
}

.wacs-post-title {
	margin: 12px 0 0;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.32;
	letter-spacing: -0.01em;
	color: var(--navy-heading);
}

.wacs-post-title a {
	transition: color var(--transition-fast);
}

.wacs-post-title a:hover {
	color: var(--cyan-500);
}

.wacs-post-excerpt {
	margin: 12px 0 22px;
	flex: 1;
	color: var(--slate-600);
	font-size: 15px;
	line-height: 1.72;
}

.wacs-post-body .article-read-more {
	align-self: flex-start;
}

/* --------------------------------------------------------------------------
   5. Single post / page body
   -------------------------------------------------------------------------- */

.wacs-single-meta {
	margin-bottom: 24px;
}

.wacs-single-thumb {
	margin-bottom: 36px;
	overflow: hidden;
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
}

.wacs-single-thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.wacs-entry-content {
	color: var(--slate-700);
	font-size: 17px;
	line-height: 1.82;
}

.wacs-entry-content > * + * {
	margin-top: 1.35em;
}

.wacs-entry-content h1,
.wacs-entry-content h2,
.wacs-entry-content h3,
.wacs-entry-content h4 {
	margin-top: 1.9em;
	color: var(--navy-heading);
	font-weight: 800;
	line-height: 1.26;
	letter-spacing: -0.015em;
}

.wacs-entry-content h2 {
	font-size: 30px;
}

.wacs-entry-content h3 {
	font-size: 23px;
}

.wacs-entry-content h4 {
	font-size: 19px;
}

.wacs-entry-content a {
	color: var(--cyan-600);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wacs-entry-content a:hover {
	color: var(--navy-900);
}

.wacs-entry-content ul,
.wacs-entry-content ol {
	padding-left: 1.4em;
}

.wacs-entry-content li + li {
	margin-top: 0.55em;
}

.wacs-entry-content blockquote {
	margin-left: 0;
	padding: 20px 26px;
	border-left: 4px solid var(--cyan-500);
	border-radius: 0 12px 12px 0;
	background: var(--cyan-50);
	color: var(--navy-900);
	font-size: 18px;
	font-style: italic;
}

.wacs-entry-content img,
.wacs-entry-content iframe,
.wacs-entry-content video {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.wacs-entry-content code,
.wacs-entry-content pre {
	background: var(--slate-100);
	border-radius: 8px;
	font-size: 14px;
}

.wacs-entry-content code {
	padding: 2px 7px;
}

.wacs-entry-content pre {
	overflow-x: auto;
	padding: 18px 20px;
}

.wacs-entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.wacs-entry-content th,
.wacs-entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--slate-200);
	text-align: left;
}

.wacs-entry-content th {
	background: var(--slate-50);
	color: var(--navy-heading);
	font-weight: 700;
}

.wacs-tags {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wacs-tags a {
	padding: 7px 15px;
	border: 1px solid var(--slate-200);
	border-radius: 999px;
	background: var(--slate-50);
	color: var(--slate-600);
	font-size: 13px;
	font-weight: 600;
	transition: all var(--transition-fast);
}

.wacs-tags a:hover {
	border-color: var(--cyan-500);
	background: var(--cyan-50);
	color: var(--cyan-600);
}

.wacs-link-pages {
	margin-top: 26px;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   6. In-page conversion blocks
   -------------------------------------------------------------------------- */

.wacs-post-cta,
.wacs-detail-cta {
	margin-top: 48px;
	padding: 38px 40px;
	border-radius: 18px;
	background: linear-gradient(135deg, #041c3b 0%, #0a2e5c 100%);
	color: #ffffff;
	box-shadow: var(--shadow-lg);
}

.wacs-post-cta h2,
.wacs-detail-cta h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -0.015em;
}

.wacs-post-cta p,
.wacs-detail-cta p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15.5px;
	line-height: 1.7;
}

.wacs-detail-phone {
	display: inline-block;
	margin-top: 18px;
	color: var(--cyan-500);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.wacs-detail-phone:hover {
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   7. Post navigation & pagination
   -------------------------------------------------------------------------- */

.wacs-post-nav {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.wacs-post-nav a {
	display: block;
	padding: 20px 24px;
	border: 1px solid var(--slate-200);
	border-radius: 14px;
	background: var(--slate-50);
	color: var(--navy-heading);
	font-weight: 700;
	line-height: 1.45;
	transition: all var(--transition-fast);
}

.wacs-post-nav a:hover {
	border-color: var(--cyan-500);
	background: #ffffff;
	box-shadow: var(--shadow-md);
}

.wacs-post-nav a span {
	display: block;
	margin-bottom: 6px;
	color: var(--cyan-600);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wacs-pagination {
	margin-top: 48px;
}

.wacs-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.wacs-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--slate-200);
	border-radius: 10px;
	background: #ffffff;
	color: var(--slate-700);
	font-weight: 700;
	transition: all var(--transition-fast);
}

.wacs-pagination .page-numbers:hover {
	border-color: var(--cyan-500);
	color: var(--cyan-600);
}

.wacs-pagination .page-numbers.current {
	border-color: transparent;
	background: var(--cyan-500);
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   8. Sidebar & widgets
   -------------------------------------------------------------------------- */

.wacs-sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: sticky;
	top: 124px;
}

.wacs-widget {
	padding: 26px 26px 28px;
	border: 1px solid var(--slate-200);
	border-radius: 16px;
	background: var(--slate-50);
}

.wacs-widget-title {
	margin: 0 0 16px;
	color: var(--navy-heading);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wacs-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wacs-widget li + li {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--slate-200);
}

.wacs-widget a {
	color: var(--slate-600);
	font-size: 15px;
	transition: color var(--transition-fast);
}

.wacs-widget a:hover {
	color: var(--cyan-600);
}

/* --------------------------------------------------------------------------
   9. Search
   -------------------------------------------------------------------------- */

.wacs-search-form {
	display: flex;
	gap: 10px;
}

.wacs-search-input {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 18px;
	border: 1.5px solid var(--slate-200);
	border-radius: 10px;
	background: #ffffff;
	color: var(--slate-900);
	font-family: var(--font-primary);
	font-size: 15px;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.wacs-search-input:focus {
	outline: none;
	border-color: var(--cyan-500);
	box-shadow: 0 0 0 4px rgba(0, 162, 232, 0.14);
}

.wacs-search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 10px;
	background: var(--cyan-500);
	color: #ffffff;
	cursor: pointer;
	transition: background var(--transition-fast);
}

.wacs-search-submit:hover {
	background: var(--cyan-600);
}

.wacs-search-submit svg {
	width: 20px;
	height: 20px;
}

.wacs-search-top {
	margin-bottom: 36px;
	max-width: 520px;
}

/* --------------------------------------------------------------------------
   10. Empty states & 404
   -------------------------------------------------------------------------- */

.wacs-empty {
	padding: 56px 40px;
	border: 1px dashed var(--slate-200);
	border-radius: 18px;
	background: var(--slate-50);
	text-align: center;
}

.wacs-empty h2 {
	margin: 0 0 12px;
	color: var(--navy-heading);
	font-size: 26px;
	font-weight: 800;
}

.wacs-empty p {
	margin: 0 auto 26px;
	max-width: 46ch;
	color: var(--slate-600);
	line-height: 1.7;
}

.wacs-empty .wacs-search-form {
	margin: 0 auto 26px;
	max-width: 420px;
}

.wacs-404 {
	text-align: center;
}

.wacs-404-search {
	margin: 0 auto 34px;
	max-width: 480px;
}

.wacs-404-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

/* --------------------------------------------------------------------------
   11. Comments
   -------------------------------------------------------------------------- */

.wacs-comments {
	margin-top: 56px;
	padding-top: 48px;
	border-top: 1px solid var(--slate-200);
}

.wacs-comments-title {
	margin: 0 0 26px;
	color: var(--navy-heading);
	font-size: 24px;
	font-weight: 800;
}

.wacs-comment-list,
.wacs-comment-list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wacs-comment-list .children {
	margin-top: 20px;
	padding-left: 32px;
	border-left: 2px solid var(--slate-200);
}

.wacs-comment-list li article,
.wacs-comment-list li .comment-body {
	margin-bottom: 22px;
	padding: 22px 24px;
	border: 1px solid var(--slate-200);
	border-radius: 14px;
	background: var(--slate-50);
}

.wacs-comment-list .avatar {
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 12px;
}

.wacs-comment-list .comment-meta {
	margin-bottom: 12px;
	font-size: 14px;
}

.wacs-comment-form label {
	display: block;
	margin-bottom: 6px;
	color: var(--navy-heading);
	font-size: 14px;
	font-weight: 700;
}

.wacs-comment-form input[type="text"],
.wacs-comment-form input[type="email"],
.wacs-comment-form input[type="url"],
.wacs-comment-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--slate-200);
	border-radius: 10px;
	background: #ffffff;
	font-family: var(--font-primary);
	font-size: 15px;
}

.wacs-comment-form input:focus,
.wacs-comment-form textarea:focus {
	outline: none;
	border-color: var(--cyan-500);
	box-shadow: 0 0 0 4px rgba(0, 162, 232, 0.14);
}

.wacs-comments-closed {
	color: var(--slate-500);
	font-style: italic;
}

/* --------------------------------------------------------------------------
   12. Service & product archives / detail pages
   -------------------------------------------------------------------------- */

.wacs-archive-section {
	padding-top: 0;
	padding-bottom: 0;
}

.wacs-card-link {
	display: block;
}

.wacs-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.wacs-product-grid .product-card {
	width: auto;
	flex: none;
}

.wacs-detail {
	display: grid;
	grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.wacs-detail-media {
	position: sticky;
	top: 124px;
}

.wacs-detail-image {
	position: relative;
	overflow: visible;
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
}

.wacs-detail-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.wacs-detail-icon {
	position: absolute;
	right: 24px;
	bottom: -26px;
}

.wacs-detail-cta {
	margin-top: 44px;
}

/* --------------------------------------------------------------------------
   13. Contact template
   -------------------------------------------------------------------------- */

.wacs-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
	gap: 56px;
	align-items: start;
}

.wacs-contact-list {
	margin-top: 32px;
	display: grid;
	gap: 22px;
}

.wacs-contact-list .footer-contact-item {
	align-items: flex-start;
}

.wacs-contact-list .footer-contact-icon {
	color: var(--cyan-600);
}

.wacs-contact-list .footer-contact-text strong {
	display: block;
	margin-bottom: 4px;
	color: var(--navy-heading);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.wacs-contact-list .footer-contact-text a,
.wacs-contact-list .footer-contact-text span {
	color: var(--slate-600);
	font-size: 16px;
	line-height: 1.6;
}

.wacs-contact-list .footer-contact-text a:hover {
	color: var(--cyan-600);
}

.wacs-contact-cta {
	position: sticky;
	top: 124px;
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 992px) {
	.wacs-layout,
	.wacs-detail,
	.wacs-contact-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 44px;
	}

	.wacs-sidebar,
	.wacs-detail-media,
	.wacs-contact-cta {
		position: static;
	}
}

@media (max-width: 768px) {
	.wacs-page-hero {
		padding: 62px 0 54px;
	}

	.wacs-main {
		padding: 52px 0 68px;
	}

	.wacs-post-cta,
	.wacs-detail-cta {
		padding: 30px 26px;
	}
}

@media (max-width: 600px) {
	.wacs-container {
		padding: 0 20px;
	}

	.wacs-post-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.wacs-comment-list .children {
		padding-left: 16px;
	}
}

/* --------------------------------------------------------------------------
   15. Services page template & interactive grid
   -------------------------------------------------------------------------- */

.services-page-grid-section {
	padding: 90px 24px 96px;
}

/* Category Filter Bar (Single Row Desktop with Card-Style Border Radius) */
.services-filter-bar {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	gap: 8px;
	margin: 0 auto 48px;
	max-width: 1240px;
	width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	padding: 4px 0;
}

.services-filter-bar::-webkit-scrollbar {
	display: none;
}

.services-filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	white-space: nowrap;
	padding: 13px 12px;
	border-radius: 8px !important;
	border: 1.5px solid rgba(226, 232, 240, 0.95);
	background: #ffffff;
	color: var(--slate-700);
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 1px 3px rgba(4, 28, 59, 0.04);
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-filter-btn:hover {
	border-color: var(--cyan-500);
	background: var(--cyan-50);
	color: var(--cyan-700);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 162, 232, 0.12);
}

.services-filter-btn.active {
	border-color: #041c3b;
	background: linear-gradient(135deg, #041c3b 0%, #0a2e5c 100%);
	color: #ffffff;
	box-shadow: 0 4px 16px rgba(4, 28, 59, 0.22);
}

/* Service Card Tagline */
.service-card-tagline {
	display: block;
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cyan-600);
	margin-bottom: 6px;
	line-height: 1.35;
}

/* Service Card Description: Strictly 2 lines */
.popular-service-card .ref-card-desc,
.services-showcase-card .ref-card-desc {
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	line-height: 1.55 !important;
	min-height: 3.1em !important;
	max-height: 3.1em !important;
	color: #64748b;
	margin-bottom: 0;
}

.service-tag-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 9px;
	border-radius: 6px;
	background: rgba(0, 162, 232, 0.08);
	border: 1px solid rgba(0, 162, 232, 0.2);
	color: var(--cyan-700);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* ==========================================================================
   Services Page Toolbar (Search + View Switcher)
   ========================================================================== */
.services-toolbar-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 auto 24px;
	max-width: 1240px;
	width: 100%;
}

.services-search-wrapper {
	position: relative;
	flex: 1;
	max-width: 720px;
}

.services-search-wrapper .search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--cyan-600);
	pointer-events: none;
}

.services-search-input {
	width: 100%;
	height: 48px;
	padding: 0 42px 0 46px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	color: #041c3b;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	outline: none;
	box-shadow: 0 1px 3px rgba(4, 28, 59, 0.04);
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-search-input:focus {
	border-color: #0096c7;
	box-shadow: 0 0 0 3px rgba(0, 150, 199, 0.15);
}

.services-search-clear {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: none;
	background: #f1f5f9;
	color: #64748b;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.services-search-clear:hover {
	background: #041c3b;
	color: #ffffff;
}

.services-toolbar-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.services-results-count {
	font-family: var(--font-primary);
	font-size: 12.5px;
	font-weight: 700;
	color: #64748b;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.services-view-switcher {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px;
	background: #f1f5f9;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
}

.view-switch-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: none;
	background: transparent;
	color: #64748b;
	font-family: var(--font-primary);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-switch-btn:hover {
	color: #041c3b;
}

.view-switch-btn.active {
	background: #041c3b;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(4, 28, 59, 0.2);
}



/* ==========================================================================
   List View Mode (2-Column Responsive Card Grid)
   ========================================================================== */
#servicesListView,
.services-list-wrapper {
	/* Not !important: the view switcher hides the inactive view with an inline
	   display:none, and an !important declaration here would outrank it — which
	   is why the list stayed visible underneath the grid. */
	display: grid;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 24px !important;
	max-width: 1240px;
	margin: 0 auto;
	width: 100%;
}

.service-list-card {
	display: flex;
	align-items: stretch;
	gap: 22px;
	padding: 22px;
	height: 100%;
	min-height: 232px;
	background: #ffffff;
	border: 1.5px solid #e8eef5;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(4, 28, 59, 0.04);
	cursor: pointer;
	transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.service-list-card:hover {
	border-color: rgba(0, 150, 199, 0.45);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 150, 199, 0.12), 0 2px 8px rgba(4, 28, 59, 0.04);
}

.service-list-card .list-media {
	position: relative;
	width: 210px;
	min-height: 100%;
	flex-shrink: 0;
	overflow: hidden;
	background: #07172c;
	border-radius: 10px;
}

.service-list-card .list-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
	transition: transform 0.45s ease;
}

.service-list-card:hover .list-img {
	transform: scale(1.08);
}

.list-floating-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #041c3b;
	color: #38bdf8;
	font-family: var(--font-primary);
	font-size: 12.5px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-list-card .list-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-list-card .list-content-top {
	display: flex;
	flex-direction: column;
}

.service-list-card .list-tagline {
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0096c7;
	margin-bottom: 4px;
	line-height: 1.3;
}

.service-list-card .list-title {
	font-size: 20px;
	font-weight: 800;
	color: #041c3b;
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin: 2px 0 8px;
	min-height: 50px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-list-card .list-desc {
	font-size: 13.5px;
	color: #55687d;
	line-height: 1.55;
	margin: 0 0 14px;
	min-height: 42px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-list-card .list-tags-row {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
	margin-top: auto;
}

.service-list-card .list-tag-pill {
	display: inline-flex;
	align-items: center;
	padding: 3px 9px;
	font-size: 11.5px;
	font-weight: 700;
	color: #0369a1;
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	border-radius: 6px;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.service-list-card:hover .list-tag-pill {
	background: #e0f2fe;
	border-color: #7dd3fc;
	color: #0284c7;
}

@media (max-width: 1100px) {
	#servicesListView,
	.services-list-wrapper {
		gap: 16px !important;
	}
}

@media (max-width: 720px) {
	#servicesListView,
	.services-list-wrapper {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	/* Stack on a phone: a 210px column beside the text would leave the copy in a
	   sliver, so the image becomes a banner across the top instead. */
	.service-list-card {
		flex-direction: column;
		gap: 16px;
		padding: 16px;
		min-height: 0;
	}

	.service-list-card .list-media {
		width: 100%;
		min-height: 170px;
	}

	.service-list-card .list-title {
		font-size: 19px;
	}
}

@media (max-width: 440px) {
	.service-list-card {
		flex-direction: column;
		gap: 12px;
	}
	.service-list-card .list-media {
		width: 100%;
		height: 140px;
	}
}

/* ==========================================================================
   Empty State
   ========================================================================== */
.services-empty-state {
	text-align: center;
	padding: 64px 24px;
	background: #ffffff;
	border: 1.5px dashed #cbd5e1;
	border-radius: 12px;
	max-width: 680px;
	margin: 0 auto;
}

.empty-state-icon {
	font-size: 42px;
	margin-bottom: 16px;
}

.services-empty-state h3 {
	font-size: 22px;
	font-weight: 800;
	color: #041c3b;
	margin-bottom: 8px;
}

.services-empty-state p {
	font-size: 14.5px;
	color: #64748b;
	margin-bottom: 24px;
	line-height: 1.6;
}

.btn-reset-search {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 8px;
}

/* Service Card Action Bar */
.service-card-action-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.service-action-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--cyan-600);
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color var(--transition-fast), transform var(--transition-fast);
}

.popular-service-card:hover .service-action-trigger {
	color: var(--navy-900);
	transform: translateX(3px);
}

.service-action-link {
	color: var(--slate-500);
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.service-action-link:hover {
	color: var(--cyan-600);
}

/* Trust Guarantee Banner below Services Grid */
.services-trust-banner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 64px;
	padding: 32px 36px;
	background: linear-gradient(135deg, #041c3b 0%, #0a2e5c 100%);
	border: 1px solid rgba(0, 162, 232, 0.25);
	border-radius: 16px;
	box-shadow: 0 12px 36px rgba(4, 28, 59, 0.25);
}

.trust-banner-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.trust-banner-icon {
	font-size: 28px;
	line-height: 1;
	flex-shrink: 0;
}

.trust-banner-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.trust-banner-text strong {
	color: #ffffff;
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.trust-banner-text span {
	color: #94a3b8;
	font-size: 13px;
	line-height: 1.4;
}

@media (max-width: 992px) {
	/* Hide Services Section Title / Heading / Quote button on Mobile & Tablet */
	.services-page-grid-section .services-header-row {
		display: none !important;
	}

	/* Hide Search Box, Results Count & View Switcher Toolbar on Mobile & Tablet */
	.services-page-grid-section .services-toolbar-row,
	.services-view-switcher {
		display: none !important;
	}

	.services-page-grid-section {
		padding: 28px 16px 48px 16px !important;
	}

	.services-page-grid-section .services-container-wrap {
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	/* Default to List View on Tablet & Mobile */
	.services-main-container #servicesGridView {
		display: none !important;
	}

	.services-main-container #servicesListView {
		display: grid !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
	}

	.services-trust-banner {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 20px;
		padding: 28px 20px;
	}
	.services-filter-bar {
		justify-content: flex-start;
		gap: 6px;
		padding: 4px 0 16px 0 !important;
		margin-bottom: 20px;
		width: 100% !important;
	}
	.services-filter-btn {
		flex: 0 0 auto;
		padding: 10px 16px;
		font-size: 12.5px;
		border-radius: 8px !important;
	}
}

@media (max-width: 600px) {
	.services-page-grid-section {
		padding: 16px 8px 32px 8px !important;
	}
	.services-page-grid-section .services-container-wrap {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.services-trust-banner {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px 14px;
	}
	.services-filter-bar {
		gap: 6px;
		padding: 4px 0 12px 0 !important;
		margin-bottom: 14px;
	}
	.services-filter-btn {
		font-size: 12px;
		padding: 8px 12px;
		border-radius: 8px !important;
	}
}

@media (max-width: 440px) {
	.services-page-grid-section {
		padding: 12px 4px 28px 4px !important;
	}
	.service-list-card {
		padding: 12px !important;
		border-radius: 12px !important;
	}
}




/* ==========================================================================
   SERVICES PAGE — LINE EVERYTHING UP WITH THE HEADER
   ========================================================================== */

.services-page-grid-section .services-container-wrap {
	max-width: 1360px;
	padding-left: 30px;
	padding-right: 30px;
}

.services-page-grid-section .services-toolbar-row,
.services-page-grid-section .services-filter-bar,
.services-page-grid-section #servicesListView,
.services-page-grid-section .services-list-wrapper {
	max-width: 100%;
}

/* The search field takes whatever width the view switcher beside it leaves. */
.services-page-grid-section .services-search-wrapper {
	max-width: none;
}

/* ==========================================================================
   SINGLE SERVICE HERO SECTION (Matches About/Services Hero)
   ========================================================================== */
.service-single-hero-section {
	position: relative;
	min-height: auto;
	background-color: #041322;
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	padding: 56px 0 50px 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-single-hero-section .about-hero-title {
	font-size: clamp(32px, 4.4vw, 48px);
	font-weight: 850;
	line-height: 1.16;
	letter-spacing: -0.025em;
	color: #ffffff;
	margin: 0 0 22px 0;
}

.service-single-hero-section .about-hero-title .headline-peace,
.service-single-hero-section .about-hero-title .highlight-cyan,
.service-single-hero-section .about-hero-title .highlight-cyan-gradient {
	background: linear-gradient(135deg, #00d2ff 0%, #00a2e8 50%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.service-single-hero-section .about-hero-actions {
	margin-top: 4px;
	gap: 16px;
}

.service-single-hero-section .about-breadcrumb {
	margin-bottom: 14px;
}

.service-single-hero-section .about-hero-eyebrow {
	margin-bottom: 10px;
}



/* ==========================================================================
   SERVICE DETAIL — CLEAN BOX STICKY SECTION NAV
   ========================================================================== */

.service-subnav {
	position: sticky;
	top: 96px;
	z-index: 950;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1.5px solid #e2e8f0;
	box-shadow: 0 4px 16px rgba(4, 28, 59, 0.04);
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

body.admin-bar .service-subnav {
	top: 128px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .service-subnav {
		top: 142px;
	}
}

.service-subnav-inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 10px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.service-subnav-track {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	padding: 2px 0;
	flex: 1;
	min-width: 0;
}

.service-subnav-track::-webkit-scrollbar {
	display: none;
}

/* Clean Box Tabs with 8px Border Radius & Crisp Lines */
.service-subnav-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 9px 16px;
	border-radius: 8px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #475569;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.service-subnav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #0284c7;
	transition: color 0.2s ease;
}

.service-subnav-icon svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.service-subnav-link:hover {
	background: #f0f9ff;
	color: #041c3b;
	border-color: #00a2e8;
}

.service-subnav-link:hover .service-subnav-icon {
	color: #00a2e8;
}

.service-subnav-link.active {
	background: #041c3b;
	border-color: #041c3b;
	color: #ffffff !important;
	box-shadow: 0 2px 8px rgba(4, 28, 59, 0.15);
}

.service-subnav-link.active .service-subnav-icon {
	color: #38bdf8 !important;
}

.service-subnav-actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.btn-subnav-quote {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 18px;
	background: linear-gradient(135deg, #00a2e8 0%, #0075d9 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-family: var(--font-primary);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.04em;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 162, 232, 0.25);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-subnav-quote:hover {
	background: linear-gradient(135deg, #0090d0 0%, #0065be 100%);
	box-shadow: 0 4px 12px rgba(0, 162, 232, 0.35);
}

.subnav-quote-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 6px #4ade80;
	animation: subnavDotPulse 2s infinite ease-in-out;
}

@keyframes subnavDotPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.35);
		opacity: 0.75;
	}
}

.subnav-arrow-icon {
	width: 12px;
	height: 12px;
	stroke-width: 2.4;
	transition: transform 0.2s ease;
}

.btn-subnav-quote:hover .subnav-arrow-icon {
	transform: translateX(3px);
}

/* --- sections ------------------------------------------------------------ */

.service-single-main {
	display: block;
	background: #ffffff;
}

.service-body-inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 64px 30px 88px;
}

.service-section + .service-section {
	margin-top: 64px;
}

/* Scrolled-to headings must clear the header and this bar. */
.service-section {
	scroll-margin-top: 190px;
}

.service-section-title {
	margin: 0 0 18px;
	color: var(--navy-heading);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.service-section-title .highlight-cyan,
.service-section-title .headline-peace,
.svc-included-title .highlight-cyan,
.svc-included-title .headline-peace {
	background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.service-section-lead {
	margin: 0 0 24px;
	max-width: 68ch;
	color: var(--slate-600);
	font-size: 16.5px;
	line-height: 1.72;
}

.service-section-body {
	max-width: 72ch;
}

/* ==========================================================================
   Already Have a System? — Panoramic Visual Banner (Reference Design)
   ========================================================================== */

.svc-existing-banner {
	position: relative;
	border-radius: 20px;
	background: #021226;
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(2, 18, 38, 0.32);
	border: 1px solid rgba(56, 189, 248, 0.20);
	margin-top: 64px;
}

.svc-existing-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.svc-existing-tech-img {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	object-fit: cover;
	object-position: right center;
}

.svc-existing-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, 
		#021226 0%, 
		#021226 38%, 
		rgba(2, 18, 38, 0.95) 54%, 
		rgba(2, 18, 38, 0.58) 72%, 
		rgba(2, 18, 38, 0.14) 100%);
}

.svc-existing-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.98fr) minmax(0, 0.74fr);
	gap: 36px;
	align-items: center;
	padding: 52px 48px;
}

/* Left Column */
.svc-existing-copy {
	display: flex;
	flex-direction: column;
}

.svc-existing-copy .hero-eyebrow {
	margin-bottom: 12px;
}

.svc-existing-copy .eyebrow-text {
	color: #38bdf8;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.svc-existing-title {
	font-size: clamp(26px, 2.9vw, 38px);
	font-weight: 900;
	color: #ffffff;
	line-height: 1.14;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
}

.svc-existing-title .highlight-cyan {
	color: #00d2ff;
	background: linear-gradient(135deg, #00d2ff 0%, #00a2e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.svc-existing-lede p {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
	margin: 0;
}

.svc-existing-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 26px;
}

.svc-existing-btn {
	background: #0072ce;
	color: #ffffff !important;
	font-weight: 700;
	font-size: 14px;
	padding: 13px 22px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 16px rgba(0, 114, 206, 0.4);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	border: none;
	cursor: pointer;
}

.svc-existing-btn:hover {
	background: #0088f0;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 114, 206, 0.55);
}

.svc-existing-phone {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.svc-existing-phone:hover {
	transform: translateX(3px);
}

.svc-existing-phone-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #38bdf8;
	flex-shrink: 0;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.svc-existing-phone:hover .svc-existing-phone-icon {
	border-color: #38bdf8;
	background: rgba(56, 189, 248, 0.12);
}

.svc-existing-phone-icon svg {
	width: 17px;
	height: 17px;
}

.svc-existing-phone-info {
	display: flex;
	flex-direction: column;
}

.svc-existing-phone-sub {
	font-size: 11.5px;
	color: #94a3b8;
	line-height: 1.2;
}

.svc-existing-phone-num {
	font-size: 15px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.01em;
}

/* Center Checklist Card: Glassmorphic Panel */
.svc-existing-assess-card {
	background: rgba(3, 21, 45, 0.82);
	border: 1px solid rgba(56, 189, 248, 0.22);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 14px;
	padding: 24px 26px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.svc-assess-kicker {
	font-size: 14.5px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}

.svc-assess-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.svc-assess-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.4;
}

.svc-assess-check {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #0072ce;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(0, 114, 206, 0.45);
}

.svc-assess-check svg {
	width: 11px;
	height: 11px;
}

/* Responsive Rules for Banner */
@media (max-width: 1180px) {
	.svc-existing-grid {
		grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
		padding: 40px 32px;
	}

	.svc-existing-visual-spacer {
		display: none;
	}

	.svc-existing-tech-img {
		width: 48%;
		opacity: 0.65;
	}
}

@media (max-width: 768px) {
	.svc-existing-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px 24px;
	}

	.svc-existing-tech-img {
		width: 100%;
		height: 40%;
		top: auto;
		bottom: 0;
		opacity: 0.35;
	}

	.svc-existing-overlay {
		background: #021226;
		opacity: 0.92;
	}

	.svc-existing-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

/* What's included ---------------------------------------------------------- */

.service-include-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 14px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-include-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 18px;
	border: 1px solid var(--slate-200);
	border-radius: 12px;
	background: var(--slate-50);
	color: var(--navy-heading);
	font-size: 15.5px;
	font-weight: 600;
}

.service-include-list svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--cyan-500);
}

/* Who it's for ------------------------------------------------------------- */

.service-sector-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 18px;
}

.service-sector-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	border: 1px solid var(--slate-200);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: var(--shadow-sm);
	color: var(--navy-heading);
	font-size: 16px;
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-sector-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 162, 232, 0.4);
	box-shadow: var(--shadow-md);
}

.service-sector-icon svg {
	width: 26px;
	height: 26px;
	color: var(--cyan-600);
}

/* ==========================================================================
   How It Works — Horizontal Process Flow & 24/7 Monitoring
   ========================================================================== */

.svc-how-section {
	position: relative;
	padding: 76px 0 84px;
	background: #ffffff;
	border-bottom: 1px solid #edf2f7;
	overflow: hidden;
}

.svc-how-inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Header Area: Headline & Lede Copy (Centered per user request) */
.svc-how-header {
	display: flex;
	justify-content: center;
	text-align: center;
	margin-bottom: 52px;
}

.svc-how-head-copy {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.svc-how-head-copy .hero-eyebrow {
	justify-content: center;
	margin-bottom: 12px;
}

.svc-how-title {
	margin: 0 auto;
	color: var(--navy-heading);
	font-size: clamp(26px, 3.1vw, 38px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.026em;
	text-align: center;
}

.svc-how-title .highlight-blue {
	color: #0072ce;
}

.svc-how-lede {
	margin: 16px auto 0;
	max-width: 680px;
	color: var(--slate-600);
	font-size: 15.5px;
	line-height: 1.75;
	text-align: center;
}

/* Process Timeline Flow */
.svc-how-timeline {
	display: grid;
	grid-template-columns: repeat(var(--svc-how-cols, 4), minmax(0, 1fr));
	gap: 28px;
	position: relative;
}

.svc-how-step {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-right: 10px;
}

/* Node Wrap: Top Icon Pod + Dashed Connector to Next Step */
.svc-how-node-wrap {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 24px;
}

.svc-how-icon-pod {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #f8fbff;
	border: 1.5px solid #ddecfa;
	box-shadow: 0 4px 14px rgba(4, 28, 59, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0072ce;
	flex-shrink: 0;
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
	            border-color 0.4s ease,
	            background 0.4s ease;
}

.svc-how-icon-pod svg {
	width: 27px;
	height: 27px;
	stroke-width: 2.1;
}

.svc-how-step:hover .svc-how-icon-pod {
	transform: translateY(-4px) scale(1.08);
	background: #ffffff;
	border-color: #0072ce;
	box-shadow: 0 8px 24px rgba(0, 114, 206, 0.22);
}

/* Dashed Connector with Arrow */
.svc-how-connector {
	flex: 1;
	display: flex;
	align-items: center;
	position: relative;
	margin-left: 14px;
	margin-right: 4px;
	min-width: 20px;
}

@keyframes wacs-connector-flow {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 24px 0;
	}
}

.svc-how-connector-line {
	flex: 1;
	height: 2px;
	background-image: linear-gradient(to right, #0072ce 55%, rgba(255, 255, 255, 0) 0%);
	background-position: top;
	background-size: 8px 2px;
	background-repeat: repeat-x;
	opacity: 0.65;
	animation: wacs-connector-flow 1.8s linear infinite;
}

.svc-how-connector-arrow {
	width: 8px;
	height: 12px;
	color: #0072ce;
	flex-shrink: 0;
	margin-left: -2px;
}

/* Step Content */
.svc-how-step-content {
	display: flex;
	flex-direction: column;
}

/* 01, 02 Button Badge above the Title */
.svc-how-num-badge {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #0072ce;
	color: #ffffff;
	font-size: 12.5px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 114, 206, 0.28);
	margin-bottom: 14px;
	align-self: flex-start;
	letter-spacing: -0.01em;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.35s ease,
	            box-shadow 0.35s ease;
}

.svc-how-step:hover .svc-how-num-badge {
	background: #041c3b;
	box-shadow: 0 5px 14px rgba(4, 28, 59, 0.35);
	transform: translateY(-2px) scale(1.08);
}

.svc-how-step-title {
	font-size: 16.5px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 8px;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.svc-how-step-desc {
	font-size: 13.5px;
	color: #475569;
	line-height: 1.58;
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 1080px) {
	.svc-how-header {
		margin-bottom: 40px;
	}

	.svc-how-timeline {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 32px 24px;
	}

	.svc-how-step:nth-child(3) .svc-how-connector {
		display: none;
	}
}

@media (max-width: 768px) {
	.svc-how-section {
		padding: 54px 0 60px;
	}

	.svc-how-inner {
		padding: 0 16px;
	}

	.svc-how-header {
		margin-bottom: 28px;
	}

	.svc-how-title {
		font-size: 25px;
		line-height: 1.25;
	}

	.svc-how-lede {
		font-size: 14.5px;
		line-height: 1.65;
	}

	.svc-how-timeline {
		display: flex;
		flex-direction: column;
		gap: 14px;
		padding-left: 0;
	}

	.svc-how-step {
		background: #ffffff;
		border: 1.5px solid #e2e8f0;
		border-radius: 14px;
		padding: 20px 18px;
		box-shadow: 0 4px 16px rgba(4, 28, 59, 0.04);
		position: relative;
		display: flex;
		flex-direction: column;
		padding-right: 20px;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.svc-how-step:hover {
		border-color: #0072ce;
		box-shadow: 0 8px 24px rgba(0, 114, 206, 0.12);
		transform: translateY(-2px);
	}

	.svc-how-node-wrap {
		margin-bottom: 12px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.svc-how-icon-pod {
		width: 48px;
		height: 48px;
		border-radius: 12px;
		background: #f0f7ff;
		border: 1.5px solid #ddecfa;
		color: #0072ce;
	}

	.svc-how-icon-pod svg {
		width: 23px;
		height: 23px;
	}

	.svc-how-connector {
		display: none;
	}

	.svc-how-num-badge {
		position: absolute;
		top: 20px;
		right: 18px;
		margin-bottom: 0;
		width: 32px;
		height: 32px;
		font-size: 12.5px;
		font-weight: 800;
		background: linear-gradient(135deg, #0072ce 0%, #0284c7 100%);
		box-shadow: 0 3px 10px rgba(0, 114, 206, 0.25);
	}

	.svc-how-step-title {
		font-size: 17px;
		font-weight: 800;
		color: #041c3b;
		margin: 0 0 6px;
		line-height: 1.32;
	}

	.svc-how-step-desc {
		font-size: 14px;
		color: #475569;
		line-height: 1.62;
		margin: 0;
	}
}

/* Why choose us ------------------------------------------------------------ */

.service-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}

.service-why-card {
	padding: 26px 24px;
	border: 1px solid var(--slate-200);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: var(--shadow-sm);
}

.service-why-icon svg {
	width: 30px;
	height: 30px;
	margin-bottom: 14px;
	color: var(--cyan-600);
}

.service-why-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--navy-heading);
	font-size: 17px;
	font-weight: 800;
}

.service-why-card p {
	margin: 0;
	color: var(--slate-600);
	font-size: 15px;
	line-height: 1.65;
}

/* FAQs Section (Service Detail Page) --------------------------------------- */

.svc-faqs-section {
	position: relative;
	padding: 88px 0 96px;
	background: #ffffff;
	border-top: 1px solid #edf2f7;
	scroll-margin-top: 160px; /* Clears sticky header and sticky subnav */
	overflow: hidden;
}

.svc-faqs-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1000px;
	height: 380px;
	background: radial-gradient(50% 50% at 50% 0%, rgba(0, 162, 232, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	z-index: 0;
}

.svc-faqs-container {
	position: relative;
	z-index: 1;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Header Area: Headline & Lede Copy (Matches .svc-how, .svc-who, .svc-intro) */
.svc-faq-header {
	display: block;
	margin-bottom: 48px;
	text-align: left;
}

.svc-faq-head-copy {
	max-width: 70ch;
}

.svc-faq-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.svc-faq-eyebrow .eyebrow-line {
	width: 36px;
	height: 3.5px;
	background: #00a2e8;
	border-radius: 2px;
}

.svc-faq-eyebrow .eyebrow-text {
	font-size: 13.5px;
	font-weight: 800;
	color: #00a2e8;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.svc-faq-title {
	margin: 0;
	color: var(--navy-heading, #041c3b);
	font-size: clamp(26px, 3.1vw, 38px);
	font-weight: 800;
	line-height: 1.17;
	letter-spacing: -0.026em;
}

.svc-faq-title .highlight-cyan,
.svc-faq-title .highlight-cyan-gradient {
	background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.svc-faq-lede {
	margin: 16px 0 0;
	max-width: 70ch;
	color: var(--slate-600, #64748b);
	font-size: 15.5px;
	line-height: 1.75;
}

/* 2-Column Full-Width FAQ Accordion Grid */
.svc-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
	width: 100%;
	margin-bottom: 40px;
	align-items: start;
}

.svc-faq-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Modern Card Accordion Item */
.service-faq-item {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(4, 28, 59, 0.025);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-faq-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 6px 18px rgba(4, 28, 59, 0.06);
}

.service-faq-item.active {
	border-color: #00a2e8;
	box-shadow: 0 8px 24px rgba(0, 162, 232, 0.12);
}

.service-faq-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 24px;
	border: none;
	background: #ffffff;
	color: var(--navy-heading, #041c3b);
	font-family: var(--font-primary, inherit);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.service-faq-btn:hover {
	background: #f8fafc;
	color: #0077b6;
}

.service-faq-item.active .service-faq-btn {
	background: #f8fbfe;
	color: #0077b6;
}

.svc-faq-q-text {
	flex: 1;
}

.svc-faq-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f1f5f9;
	color: #0096c7;
	flex-shrink: 0;
	transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease;
}

.service-faq-item.active .svc-faq-icon-wrap {
	transform: rotate(180deg);
	background: #00a2e8;
	color: #ffffff;
}

.svc-faq-icon-wrap svg {
	width: 16px;
	height: 16px;
	display: block;
	stroke-width: 2.5;
}

.service-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
	background: #f8fbfe;
}

.service-faq-item.active .service-faq-answer {
	grid-template-rows: 1fr;
}

.service-faq-answer > p {
	overflow: hidden;
	margin: 0;
	padding: 0 24px;
	color: #475569;
	font-size: 15px;
	line-height: 1.72;
	transition: padding 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-faq-item.active .service-faq-answer > p {
	padding: 4px 24px 22px;
	border-top: 1px solid rgba(0, 162, 232, 0.08);
}

/* Service Detail — Full Width FAQ Conversion Banner */
.service-faq-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
	max-width: 100%;
	margin-top: 24px;
	padding: 28px 36px;
	background: linear-gradient(135deg, #041c3b 0%, #062854 100%);
	border: 1px solid rgba(0, 162, 232, 0.28);
	border-radius: 16px;
	box-shadow: 0 12px 36px rgba(4, 28, 59, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.service-faq-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 162, 232, 0.18) 0%, transparent 70%);
	pointer-events: none;
}

.service-faq-cta-left {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.service-faq-cta-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: rgba(0, 162, 232, 0.14);
	border: 1px solid rgba(0, 162, 232, 0.3);
	color: #00a2e8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.service-faq-cta-icon svg {
	width: 24px;
	height: 24px;
}

.service-faq-cta-text strong {
	display: block;
	color: #ffffff;
	font-family: var(--font-primary, inherit);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin-bottom: 4px;
}

.service-faq-cta-text p {
	margin: 0;
	color: #94a3b8;
	font-size: 14.5px;
	line-height: 1.5;
}

.service-faq-cta-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.btn-faq-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-faq-phone:hover {
	background: rgba(0, 162, 232, 0.2);
	border-color: #00a2e8;
	color: #38bdf8;
	transform: translateY(-2px);
}

.btn-faq-phone svg {
	width: 17px;
	height: 17px;
	color: #00a2e8;
}

.service-faq-cta .btn.btn-hero-primary {
	box-shadow: 0 4px 18px rgba(0, 162, 232, 0.35);
	padding: 13px 26px;
	font-size: 13.5px;
	border-radius: 8px;
}

/* ==========================================================================
   Embedded Full-Screen Service Single Quote & Consultation Section
   ========================================================================== */

.svc-quote-section {
	position: relative;
	padding: 100px 0 110px;
	background: radial-gradient(circle at 50% 0%, #08244d 0%, #03142c 55%, #010a17 100%);
	border-top: 1px solid rgba(0, 162, 232, 0.32);
	scroll-margin-top: 150px;
	overflow: hidden;
}

.svc-quote-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 12% 20%, rgba(0, 162, 232, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 88% 80%, rgba(14, 165, 233, 0.12) 0%, transparent 45%),
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: auto, auto, 28px 28px, 28px 28px;
	pointer-events: none;
	z-index: 0;
}

.svc-quote-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(0, 162, 232, 0.9) 50%, transparent 100%);
	box-shadow: 0 0 15px rgba(0, 162, 232, 0.7);
	pointer-events: none;
	z-index: 1;
}

.svc-quote-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Centered Quote Section Wrapper */
.svc-quote-center-wrap {
	max-width: 1040px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.svc-quote-header {
	text-align: center;
	margin-bottom: 36px;
}

.svc-quote-header .svc-quote-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 14px;
}

.svc-quote-eyebrow .eyebrow-text {
	color: #38bdf8;
	font-weight: 700;
	letter-spacing: 0.15em;
	font-size: 11px;
}

.svc-quote-headline {
	font-size: clamp(27px, 3.2vw, 38px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin: 0 auto 14px;
	font-family: var(--font-heading, "Montserrat", sans-serif);
	letter-spacing: -0.015em;
	max-width: 860px;
}

.svc-quote-headline .highlight-cyan {
	color: #38bdf8;
	text-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
}

.svc-quote-desc {
	font-size: 15.5px;
	line-height: 1.65;
	color: #94a3b8;
	margin: 0 auto;
	max-width: 700px;
}

/* Luxury Centered Form Card */
.svc-quote-form-card,
.svc-quote-form-col {
	background: rgba(4, 18, 38, 0.85);
	border: 1px solid rgba(0, 162, 232, 0.28);
	border-radius: 12px;
	padding: 44px 48px;
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 162, 232, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	position: relative;
	text-align: left;
	opacity: 1 !important;
	visibility: visible !important;
}

.svc-quote-form-card::before,
.svc-quote-form-col::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.85), transparent);
	pointer-events: none;
}

.svc-form-header {
	margin-bottom: 22px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-form-title {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 6px;
	font-family: var(--font-heading, "Montserrat", sans-serif);
	letter-spacing: -0.01em;
}

.svc-form-subtitle {
	font-size: 13.5px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.5;
}

.svc-single-quote-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.svc-form-row {
	width: 100%;
}

.svc-form-row-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.svc-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.svc-input-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: #64748b;
	pointer-events: none;
	transition: color 0.25s ease;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.svc-input-icon svg {
	width: 17px;
	height: 17px;
}

.svc-input-wrap:focus-within .svc-input-icon {
	color: #38bdf8;
}

.svc-form-input {
	width: 100%;
	background: rgba(1, 9, 19, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 13px 16px 13px 44px;
	color: #ffffff;
	font-size: 14px;
	font-family: inherit;
	transition: all 0.25s ease;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
}

.svc-form-input::placeholder {
	color: #64748b;
	opacity: 1;
}

.svc-form-input:focus {
	outline: none;
	border-color: #00a2e8;
	background: rgba(2, 14, 30, 0.95);
	box-shadow: 0 0 0 3px rgba(0, 162, 232, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.35);
}

.svc-select-wrap {
	position: relative;
}

.svc-form-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	padding-right: 38px;
}

.svc-form-select option {
	background: #031326;
	color: #ffffff;
	padding: 10px;
}

.svc-select-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	color: #64748b;
	pointer-events: none;
	transition: color 0.25s ease;
}

.svc-select-wrap:focus-within .svc-select-arrow {
	color: #38bdf8;
}

.svc-select-arrow svg {
	width: 16px;
	height: 16px;
	display: block;
}

.svc-textarea-wrap {
	align-items: flex-start;
}

.svc-form-textarea {
	min-height: 88px;
	resize: vertical;
	padding: 12px 16px;
	line-height: 1.55;
}

.svc-form-checkbox-wrap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	user-select: none;
	padding: 4px 0;
}

.svc-form-checkbox {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	accent-color: #00a2e8;
	cursor: pointer;
	flex-shrink: 0;
}

.svc-checkbox-label-text {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.45;
}

.svc-input-group {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
}

.svc-field-error {
	display: block;
	color: #f87171;
	font-size: 11.5px;
	font-weight: 600;
	margin-top: 6px;
	padding-left: 4px;
	line-height: 1.35;
	animation: svcErrFade 0.2s ease-out;
}

@keyframes svcErrFade {
	from { opacity: 0; transform: translateY(-3px); }
	to { opacity: 1; transform: translateY(0); }
}

.svc-input-wrap.is-invalid .svc-form-input,
.svc-form-input.is-invalid {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.35) !important;
}

.svc-input-wrap.is-invalid .svc-input-icon {
	color: #ef4444 !important;
}

.svc-form-checkbox-wrap.is-invalid {
	padding: 8px 12px;
	border-radius: 8px;
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.4);
}

.svc-input-wrap.is-valid .svc-form-input,
.svc-form-input.is-valid {
	border-color: #10b981 !important;
	box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.35) !important;
}

.svc-input-wrap.is-valid .svc-input-icon {
	color: #10b981 !important;
}

/* Toast Notifications (Upper Side) */
.svc-toast-container {
	position: fixed;
	top: 32px;
	right: 32px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 440px;
	width: calc(100% - 40px);
	pointer-events: none;
}

.svc-toast {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 20px;
	border-radius: 14px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.35);
	pointer-events: auto;
	animation: svcToastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	transition: all 0.3s ease;
}

@keyframes svcToastSlideIn {
	from { opacity: 0; transform: translateY(-20px) scale(0.95); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.svc-toast-warning {
	background: rgba(26, 20, 10, 0.96);
	border: 1px solid #f59e0b;
	color: #fef3c7;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.25);
}

.svc-toast-warning .svc-toast-icon {
	background: rgba(245, 158, 11, 0.2);
	color: #f59e0b;
}

.svc-toast-success {
	background: rgba(4, 26, 20, 0.96);
	border: 1px solid #10b981;
	color: #d1fae5;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.25);
}

.svc-toast-success .svc-toast-icon {
	background: rgba(16, 185, 129, 0.2);
	color: #34d399;
}

.svc-toast-error {
	background: rgba(30, 10, 10, 0.96);
	border: 1px solid #ef4444;
	color: #fee2e2;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(239, 68, 68, 0.25);
}

.svc-toast-error .svc-toast-icon {
	background: rgba(239, 68, 68, 0.2);
	color: #f87171;
}

.svc-toast-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	flex-shrink: 0;
}

.svc-toast-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.svc-toast-content strong {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.svc-toast-content p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.45;
	opacity: 0.9;
}

.svc-toast-close {
	background: none;
	border: none;
	color: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.6;
	padding: 0 4px;
	transition: opacity 0.2s;
}

.svc-toast-close:hover {
	opacity: 1;
}

.svc-form-error-box {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #fca5a5;
	padding: 12px 16px;
	border-radius: 9px;
	font-size: 13px;
	line-height: 1.5;
}

.svc-form-submit-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 4px;
}

.svc-quote-submit-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 15px 28px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 162, 232, 0.45);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-quote-submit-btn:hover {
	background: linear-gradient(135deg, #38bdf8 0%, #00a2e8 100%);
	box-shadow: 0 6px 28px rgba(0, 162, 232, 0.65);
	transform: translateY(-2px);
}

.svc-quote-submit-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.svc-quote-submit-btn .subnav-quote-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 0 8px #ffffff;
}

.svc-quote-submit-btn .btn-arrow-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.25s ease;
}

.svc-quote-submit-btn:hover .btn-arrow-icon {
	transform: translateX(4px);
}

.svc-submit-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-size: 12px;
	color: #64748b;
}

.svc-submit-guarantee svg {
	width: 14px;
	height: 14px;
	color: #00a2e8;
	flex-shrink: 0;
}

/* Success Confirmation Panel */
.svc-quote-success-panel {
	text-align: center;
	padding: 36px 16px;
	animation: svcQuoteFadeIn 0.45s ease-out;
}

@keyframes svcQuoteFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.svc-success-check-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.35) 100%);
	border: 2px solid #10b981;
	color: #34d399;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	box-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
}

.svc-success-check-circle svg {
	width: 30px;
	height: 30px;
}

.svc-success-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px;
	font-family: var(--font-heading, "Montserrat", sans-serif);
	letter-spacing: -0.01em;
}

.svc-success-desc {
	font-size: 14.5px;
	color: #94a3b8;
	line-height: 1.6;
	max-width: 440px;
	margin: 0 auto 24px;
}

.svc-success-details-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 13px;
	color: #94a3b8;
}

.svc-success-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #38bdf8;
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s ease;
}

.svc-success-phone-link:hover {
	color: #ffffff;
}

.svc-success-phone-link svg {
	width: 14px;
	height: 14px;
	color: #38bdf8;
}

/* Responsive Rules for FAQ & Embedded Quote Card */
@media (max-width: 991px) {
	.svc-faq-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.service-faq-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
		padding: 24px;
	}
	.service-faq-cta-actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}
	.btn-faq-phone,
	.service-faq-cta .btn.btn-hero-primary {
		width: 100%;
		justify-content: center;
	}

	/* Embedded Full-Screen Quote Section Tablet */
	.svc-quote-section {
		padding: 72px 0 80px;
	}
	.svc-quote-form-card,
	.svc-quote-form-col {
		padding: 34px 28px;
	}
}

@media (max-width: 640px) {
	.svc-faqs-section {
		padding: 60px 0 72px;
	}
	.svc-faqs-container {
		padding: 0 20px;
	}
	.svc-faq-header {
		margin-bottom: 32px;
	}
	.service-faq-btn {
		padding: 16px 18px;
		font-size: 15px;
	}
	.service-faq-answer > p {
		padding: 0 18px;
		font-size: 14.5px;
	}
	.service-faq-item.active .service-faq-answer > p {
		padding: 4px 18px 18px;
	}
	.service-faq-cta-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	/* Embedded Full-Screen Quote Section Mobile */
	.svc-quote-section {
		padding: 56px 0 68px;
	}
	.svc-quote-container {
		padding: 0 18px;
	}
	.svc-quote-headline {
		font-size: 24px;
		line-height: 1.3;
	}
	.svc-quote-desc {
		font-size: 14px;
	}
	.svc-form-row-2col {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.svc-quote-form-card,
	.svc-quote-form-col {
		padding: 24px 16px;
		border-radius: 10px;
	}
	.svc-phone-cta {
		font-size: 18px;
	}
	.svc-success-details-pill {
		flex-direction: column;
		gap: 6px;
		padding: 12px 16px;
		border-radius: 16px;
	}
}

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.service-subnav {
		top: 76px;
	}

	body.admin-bar .service-subnav {
		top: 108px;
	}

	.service-section {
		scroll-margin-top: 168px;
	}
}

@media (max-width: 768px) {
	.service-subnav-inner {
		padding: 8px 16px;
		gap: 10px;
	}

	.btn-subnav-quote {
		padding: 0 12px;
		font-size: 11.5px;
		height: 34px;
		border-radius: 6px;
	}

	.service-subnav-link {
		padding: 7px 12px;
		font-size: 12.5px;
		border-radius: 6px;
		gap: 6px;
	}

	.service-subnav-icon {
		width: 16px;
		height: 16px;
	}

	.service-subnav-icon svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 540px) {
	.service-subnav-actions {
		display: none;
	}
}

@media (max-width: 640px) {
	.service-body-inner {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 44px;
		padding-bottom: 60px;
	}

	.service-section + .service-section {
		margin-top: 48px;
	}

	.service-section-panel {
		padding: 28px 22px;
	}
}

/* ==========================================================================
   HOMEPAGE HERO FADE-IN-UP ENTRANCE ANIMATION & SCROLL TOP FIX
   ========================================================================== */
.hero-section {
	scroll-margin-top: 120px;
}

@keyframes homeHeroFadeInUp {
	0% {
		opacity: 0;
		transform: translateY(28px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-section .hero-eyebrow {
	animation: homeHeroFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero-section .hero-headline {
	animation: homeHeroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both;
}

.hero-section .hero-description {
	animation: homeHeroFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.hero-section .hero-cta-group {
	animation: homeHeroFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}

.hero-section .hero-services-header {
	animation: homeHeroFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.hero-section .hero-services-grid {
	animation: homeHeroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

/* ==========================================================================
   SERVICE DETAIL — INTRODUCTION BAND
   ========================================================================== */

.svc-intro {
	background: #ffffff;
	padding: 78px 0 66px;
	scroll-margin-top: 160px;
}

.svc-included {
	scroll-margin-top: 160px;
}

.svc-intro {
	background: #ffffff;
	padding: 72px 0 64px;
	scroll-margin-top: 160px;
}

.svc-intro-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

.svc-intro-top-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	gap: 52px;
	align-items: center;
}

.svc-intro-inner,
.svc-included-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
	gap: 56px;
	align-items: center;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

.svc-intro-title {
	margin: 14px 0 18px;
	color: #041c3b;
	font-size: clamp(28px, 3.2vw, 38px);
	font-weight: 850;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.svc-intro-title .highlight-cyan {
	color: #0096c7;
	background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.svc-intro-body .svc-lead-text {
	margin: 0 0 12px;
	color: #1e293b;
	font-size: 16.5px;
	font-weight: 600;
	line-height: 1.7;
}

.svc-intro-body .svc-desc-text {
	margin: 0 0 18px;
	color: #475569;
	font-size: 15px;
	line-height: 1.72;
}

/* Feature Capabilities 2x2 Box with Green/Cyan Tick Badges */
.svc-intro-features-box {
	margin: 22px 0 0;
	padding: 16px 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(4, 28, 59, 0.03);
}

.svc-intro-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
}

.svc-intro-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.svc-feature-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #ecfdf5;
	color: #059669;
	border: 1px solid rgba(16, 185, 129, 0.25);
	flex-shrink: 0;
}

.svc-feature-check svg {
	width: 13px;
	height: 13px;
	display: block;
}

.svc-feature-text {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 750;
	color: #0f172a;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

/* Service Points — 3 Full-Width High-Impact Cards Row */
.svc-intro-points-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.svc-intro-point-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(4, 28, 59, 0.04);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-intro-point-card:hover {
	border-color: #00a2e8;
	background: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 162, 232, 0.15);
}

.svc-point-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(0, 162, 232, 0.1);
	color: #0096c7;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.svc-intro-point-card:hover .svc-point-icon-box {
	background: linear-gradient(135deg, #00a2e8 0%, #0075d9 100%);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.35);
}

.svc-point-icon-box svg {
	width: 24px;
	height: 24px;
	display: block;
	flex-shrink: 0;
}

.svc-point-card-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.svc-point-card-title {
	display: block;
	color: #041c3b;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.svc-point-card-value {
	display: block;
	color: #64748b;
	font-size: 13.5px;
	line-height: 1.45;
}

/* --- the photo, and clean overlays ------------------------------ */

.svc-intro-media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	background: #07172c;
	box-shadow: 0 8px 30px rgba(4, 28, 59, 0.08);
	aspect-ratio: 16 / 10.5;
}

.svc-intro-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.svc-intro-scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(2, 11, 23, 0.38) 0%, rgba(2, 11, 23, 0.05) 45%),
		linear-gradient(0deg, rgba(2, 11, 23, 0.75) 0%, rgba(2, 11, 23, 0) 55%);
}

.svc-intro-steps {
	position: absolute;
	top: 20px;
	right: 22px;
	margin: 0;
	padding: 0 0 12px;
	list-style: none;
	text-align: right;
	border-bottom: 2px solid var(--cyan-500);
}

.svc-intro-steps li {
	color: #ffffff;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 2.05;
	text-transform: uppercase;
}

.svc-intro-brand {
	position: absolute;
	left: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.svc-intro-brand svg {
	width: 20px;
	height: 20px;
	color: var(--cyan-500);
}

.svc-intro-script {
	position: absolute;
	right: 22px;
	bottom: 22px;
	max-width: 48%;
	color: rgba(255, 255, 255, 0.94);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 19px;
	font-style: italic;
	line-height: 1.25;
	text-align: right;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.svc-intro-script::after {
	content: '';
	display: block;
	width: 64px;
	height: 2px;
	margin: 8px 0 0 auto;
	background: var(--cyan-500);
}

/* ==========================================================================
   SERVICE DETAIL — WHAT'S INCLUDED BAND (LUXURY DARK BLUE SECURITY THEME)
   ========================================================================== */

.svc-included {
	position: relative;
	background: #021226;
	background-image: 
		radial-gradient(circle at 10% 25%, rgba(0, 162, 232, 0.14) 0%, transparent 45%),
		radial-gradient(circle at 90% 75%, rgba(14, 165, 233, 0.10) 0%, transparent 45%),
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: auto, auto, 28px 28px, 28px 28px;
	padding: 84px 0;
	border-top: 1px solid rgba(0, 162, 232, 0.22);
	border-bottom: 1px solid rgba(0, 162, 232, 0.22);
	overflow: hidden;
}

.svc-included-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

/* 1. Upper Side Center Header */
.svc-included-header {
	text-align: center;
	max-width: 840px;
	margin: 0 auto 52px;
}

.svc-included-header .svc-included-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 14px;
}

.svc-included-eyebrow .eyebrow-text {
	color: #38bdf8;
	font-weight: 700;
	letter-spacing: 0.15em;
	font-size: 11px;
}

.svc-included-title {
	margin: 0 0 16px;
	color: #ffffff;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.02em;
	font-family: var(--font-heading, "Montserrat", sans-serif);
}

.svc-included-title .highlight-cyan {
	color: #38bdf8;
	text-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
}

.svc-included-body {
	margin: 0 auto;
	color: #94a3b8;
	font-size: 15.5px;
	line-height: 1.7;
	max-width: 740px;
}

/* 2. Middle Grid */
.svc-included-grid {
	display: grid;
	grid-template-columns: repeat(var(--svc-cols, 3), minmax(0, 1fr));
	gap: 26px;
	margin-bottom: 38px;
}

/* 3. Bottom Conversion & Trust Bar */
.svc-included-bottom-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background: rgba(4, 20, 44, 0.75);
	border: 1px solid rgba(0, 162, 232, 0.28);
	border-radius: 16px;
	padding: 24px 34px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	position: relative;
	overflow: hidden;
}

.svc-included-bottom-bar::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.8), transparent);
	pointer-events: none;
}

.svc-included-bottom-trust {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.svc-included-trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	font-weight: 700;
	color: #e2e8f0;
	letter-spacing: 0.01em;
}

.svc-included-trust-pill svg {
	width: 18px;
	height: 18px;
	color: #38bdf8;
	filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
	flex-shrink: 0;
}

.svc-included-bottom-cta {
	flex-shrink: 0;
}

.svc-included-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 10px;
	font-weight: 800;
	font-size: 13.5px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
	color: #ffffff;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 162, 232, 0.5);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
	cursor: pointer;
}

.svc-included-cta-btn:hover {
	background: linear-gradient(135deg, #38bdf8 0%, #00a2e8 100%);
	box-shadow: 0 6px 28px rgba(0, 162, 232, 0.7);
	transform: translateY(-2px);
	color: #ffffff;
}

.svc-included-cta-btn svg {
	width: 15px;
	height: 15px;
	transition: transform 0.25s ease;
}

.svc-included-cta-btn:hover svg {
	transform: translateX(4px);
}

/* Luxury Dark Glassmorphism Inclusion Card */
.svc-include-card {
	display: flex;
	flex-direction: column;
	background: rgba(4, 20, 44, 0.75);
	border: 1px solid rgba(0, 162, 232, 0.22);
	border-radius: 14px;
	overflow: visible;
	position: relative;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.svc-include-card:hover {
	transform: translateY(-6px);
	border-color: #00a2e8;
	box-shadow: 0 20px 45px rgba(0, 162, 232, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.svc-include-media {
	position: relative;
	overflow: visible;
	border-radius: 13px 13px 0 0;
	background: #031022;
}

.svc-include-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 13px 13px 0 0;
}

.svc-include-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-include-card:hover .svc-include-thumb img {
	transform: scale(1.06);
}

.svc-include-icon {
	position: absolute;
	left: 18px;
	bottom: -18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: #021226;
	color: #38bdf8;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 162, 232, 0.35);
	border: 2px solid #00a2e8;
	z-index: 10;
}

.svc-include-icon svg {
	width: 20px;
	height: 20px;
}

.svc-include-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 20px 20px;
}

.svc-include-title {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	font-family: var(--font-heading, "Montserrat", sans-serif);
	letter-spacing: -0.01em;
}

.svc-include-desc {
	margin: 0 0 16px;
	color: #94a3b8;
	font-size: 13.5px;
	line-height: 1.62;
}

.svc-include-tags {
	list-style: none;
	padding: 14px 0 0;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-include-tags li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: #cbd5e1;
	line-height: 1.4;
}

.svc-include-check {
	width: 14px;
	height: 14px;
	color: #38bdf8;
	flex-shrink: 0;
	margin-top: 2px;
}

.svc-include-action {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-include-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	border: none;
	background: none;
	color: #38bdf8;
	font-family: var(--font-primary);
	font-size: 12.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.svc-include-link svg {
	width: 13px;
	height: 13px;
	transition: transform 0.2s ease;
}

.svc-include-card:hover .svc-include-link {
	color: #ffffff;
}

.svc-include-card:hover .svc-include-link svg {
	transform: translateX(4px);
}

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.svc-intro-top-grid,
	.svc-intro-inner,
	.svc-included-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.svc-intro-points-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
		margin-top: 36px;
	}

	.svc-intro-point-card {
		padding: 18px 20px;
	}

	.svc-point-card-title {
		font-size: 15px;
	}

	.svc-point-card-value {
		font-size: 13px;
	}

	.svc-included-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.svc-included-bottom-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 22px;
		padding: 24px 26px;
		text-align: center;
	}

	.svc-included-bottom-trust {
		justify-content: center;
	}

	.svc-included-bottom-cta {
		display: flex;
		justify-content: center;
	}

	.svc-included-cta-btn {
		width: 100%;
		max-width: 520px;
		justify-content: center;
	}

	.svc-intro-script {
		font-size: 18px;
	}
}

@media (max-width: 860px) {
	.svc-intro-points-row {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 30px;
	}

	.svc-intro-point-card {
		padding: 16px 18px;
	}

	.svc-point-card-value {
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.svc-intro,
	.svc-included {
		padding: 40px 0;
	}

	.svc-intro-container,
	.svc-intro-inner,
	.svc-included-inner,
	.svc-included-container {
		padding: 0 16px;
	}

	.svc-included-header {
		margin-bottom: 32px;
	}

	.svc-included-title {
		font-size: 24px;
		line-height: 1.25;
	}

	.svc-included-body {
		font-size: 14.5px;
	}

	.svc-intro-title {
		font-size: 26px;
		margin-bottom: 14px;
	}

	.svc-intro-body .svc-lead-text {
		font-size: 15px;
	}

	.svc-intro-body .svc-desc-text {
		font-size: 14px;
	}

	.svc-intro-features-box {
		padding: 14px 16px;
		margin-top: 18px;
	}

	.svc-intro-features-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.svc-feature-text {
		font-size: 13.5px;
	}

	.svc-intro-points-row {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 24px;
	}

	.svc-intro-point-card {
		padding: 14px 16px;
		gap: 14px;
	}

	.svc-point-icon-box {
		width: 42px;
		height: 42px;
		border-radius: 10px;
	}

	.svc-point-icon-box svg {
		width: 20px;
		height: 20px;
	}

	.svc-point-card-title {
		font-size: 14.5px;
	}

	.svc-point-card-value {
		font-size: 12.5px;
	}

	.svc-included-grid {
		grid-template-columns: minmax(0, 1fr);
		margin-bottom: 24px;
	}

	.svc-included-bottom-bar {
		padding: 20px 16px;
		border-radius: 12px;
		gap: 18px;
	}

	.svc-included-bottom-trust {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		width: 100%;
	}

	.svc-included-trust-pill {
		font-size: 13px;
	}

	.svc-included-bottom-cta {
		width: 100%;
	}

	.svc-included-cta-btn {
		width: 100%;
		max-width: 100%;
		font-size: 12px;
		padding: 13px 16px;
		text-align: center;
		justify-content: center;
	}

	.svc-intro-script,
	.svc-intro-brand {
		display: none;
	}
}

/* ==========================================================================
   Service detail — "Who It's For"
   A card per audience: photo, badge, blurb and the points that matter to that
   kind of property. --who-cols is the four the design shows; auto-fit takes
   over below the desktop breakpoint so a fifth audience wraps onto a tidy new
   row instead of squeezing the others.
   ========================================================================== */

.svc-who {
	background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
	padding: 76px 0 84px;
}

.svc-who-inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

.svc-who-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.svc-who-top .hero-eyebrow {
	margin-bottom: 0;
}

.svc-who-meta {
	color: #9db0c5;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.svc-who-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	align-items: center;
	margin: 22px 0 46px;
}

.svc-who-title {
	margin: 0;
	color: var(--navy-heading);
	font-size: clamp(26px, 3.1vw, 38px);
	font-weight: 800;
	line-height: 1.17;
	letter-spacing: -0.026em;
}

.svc-who-title .highlight-cyan {
	color: #0096c7;
}

.svc-who-lede {
	margin: 16px 0 0;
	max-width: 70ch;
	color: var(--slate-600);
	font-size: 15.5px;
	line-height: 1.75;
}

.svc-who-map {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	color: var(--cyan-500);
}

.svc-who-map-shape {
	width: 96px;
	height: auto;
	opacity: 0.9;
}

.svc-who-map-label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: right;
}

.svc-who-map-line {
	color: #9db0c5;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.3;
	text-transform: uppercase;
}

.svc-who-map-line.is-lead {
	color: #6a7e94;
}

/* ==========================================================================
   SERVICE DETAIL — WHO IT'S FOR (INTERACTIVE TAB SHOWCASE)
   ========================================================================== */

.svc-who-showcase {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 36px;
	align-items: start;
	margin-top: 36px;
}

/* --- Left Nav Tabs -------------------------------------------------------- */

.svc-who-tabs-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: sticky;
	top: 120px;
}

.svc-who-tab-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px 18px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	text-align: left;
	width: 100%;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            border-color 0.35s ease,
	            background 0.35s ease,
	            box-shadow 0.35s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(4, 28, 59, 0.03);
}

.svc-tab-icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: #f1f5f9;
	color: #041c3b;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-tab-icon svg {
	width: 21px;
	height: 21px;
}

.svc-tab-text {
	flex: 1;
	min-width: 0;
}

.svc-tab-title {
	display: block;
	font-size: 15px;
	font-weight: 800;
	color: #041c3b;
	line-height: 1.25;
	margin-bottom: 2px;
	transition: color 0.35s ease;
}

.svc-tab-desc {
	display: block;
	font-size: 12px;
	color: #64748b;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.35s ease;
}

.svc-tab-indicator {
	width: 16px;
	height: 16px;
	color: #94a3b8;
	transition: all 0.35s ease;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.svc-tab-indicator svg {
	width: 14px;
	height: 14px;
}

/* Tab Progress Indicator Bar */
.svc-tab-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, #00a2e8, #38bdf8);
	border-radius: 0 0 8px 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.svc-who-tab-item.active .svc-tab-progress {
	opacity: 1;
}

/* Hover state */
.svc-who-tab-item:hover {
	border-color: #00a2e8;
	transform: translateX(4px);
	box-shadow: 0 6px 20px rgba(0, 162, 232, 0.1);
}

.svc-who-tab-item:hover .svc-tab-icon {
	background: #00a2e8;
	color: #ffffff;
	transform: scale(1.04);
}

.svc-who-tab-item:hover .svc-tab-indicator {
	color: #00a2e8;
	transform: translateX(3px);
}

/* Active state */
.svc-who-tab-item.active {
	background: #041c3b;
	border-color: #00a2e8;
	box-shadow: 0 10px 30px rgba(4, 28, 59, 0.22);
	transform: translateX(6px);
}

.svc-who-tab-item.active .svc-tab-icon {
	background: #00a2e8;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.4);
}

.svc-who-tab-item.active .svc-tab-title {
	color: #ffffff;
}

.svc-who-tab-item.active .svc-tab-desc {
	color: #94a3b8;
}

.svc-who-tab-item.active .svc-tab-indicator {
	color: #38bdf8;
	transform: translateX(4px);
}

/* --- Right Showcase Panel (Unboxed Architecture) ------------------------- */

.svc-who-panels-wrap {
	position: relative;
	min-width: 0;
}

.svc-who-panel {
	display: none;
}

.svc-who-panel.active {
	display: block;
}

/* Staggered Silky Keyframes (1.5s Smooth Fade In Up) */
@keyframes wacs-media-reveal {
	0% {
		opacity: 0;
		transform: scale(0.97) translateY(24px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes wacs-content-reveal {
	0% {
		opacity: 0;
		transform: translateY(28px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.svc-who-panel.is-animating-in .svc-who-card-media {
	animation: wacs-media-reveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.svc-who-panel.is-animating-in .svc-who-card-content {
	animation: wacs-content-reveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

/* Unboxed Grid (No wrapper box) */
.svc-who-unboxed-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
	gap: 36px;
	align-items: stretch;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

/* Standalone Framed Media Column */
.svc-who-card-media {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	background: #041c3b;
	height: 100%;
	min-height: 420px;
	box-shadow: 0 16px 36px rgba(4, 28, 59, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(4, 28, 59, 0.08);
}

.svc-who-card-media .svc-who-thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.svc-who-card-media .svc-who-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-who-card-media:hover .svc-who-thumb img {
	transform: scale(1.05);
}

.svc-who-media-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(4, 28, 59, 0.90);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(56, 189, 248, 0.35);
	border-radius: 6px;
	color: #ffffff;
	font-size: 11.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.svc-media-badge-icon {
	color: #38bdf8;
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
}

.svc-media-badge-icon svg {
	width: 15px;
	height: 15px;
}

/* Open Content Column (No box constraints) */
.svc-who-card-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px 0;
}

.svc-who-panel-title {
	font-size: clamp(22px, 2.3vw, 28px);
	font-weight: 800;
	color: #041c3b;
	line-height: 1.22;
	margin: 6px 0 12px;
	letter-spacing: -0.015em;
}

.svc-who-panel-lede {
	font-size: 14.5px;
	color: #475569;
	line-height: 1.65;
	margin: 0 0 20px;
}

/* Unboxed Clean Checklist */
.svc-who-features-wrap {
	background: transparent;
	border: none;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	border-radius: 0;
	padding: 16px 0;
	margin-bottom: 24px;
}

.svc-who-features-kicker {
	font-size: 11px;
	font-weight: 800;
	color: #0096c7;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.svc-who-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.svc-who-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.45;
}

.svc-who-check-icon {
	color: #00a2e8;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
}

.svc-who-check-icon svg {
	width: 16px;
	height: 16px;
}

.svc-who-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	border-radius: 8px;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	align-self: flex-start;
}

@media (max-width: 1080px) {
	.svc-who-showcase {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.svc-who-tabs-nav {
		flex-direction: row;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 10px;
		position: static;
		gap: 10px;
	}

	.svc-who-tab-item {
		min-width: 220px;
		flex: 1 0 auto;
		transform: none !important;
	}

	.svc-who-unboxed-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.svc-who-card-media {
		min-height: 280px;
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.svc-who-card-media .svc-who-thumb {
		position: absolute;
		inset: 0;
		min-height: 100%;
	}
}

@media (max-width: 640px) {
	.svc-who-tab-item {
		min-width: 170px;
		padding: 12px 14px;
	}

	.svc-tab-desc {
		display: none;
	}

	.svc-tab-icon {
		width: 36px;
		height: 36px;
		border-radius: 6px;
	}

	.svc-tab-icon svg {
		width: 18px;
		height: 18px;
	}

	.svc-tab-title {
		font-size: 13.5px;
	}

	.svc-who-features-wrap {
		padding: 14px 0;
		margin-bottom: 18px;
	}

	.svc-who-checklist li {
		font-size: 13px;
	}
}

@media (max-width: 560px) {
	.svc-who-inner,
	.svc-how-inner {
		padding: 0 20px;
	}

	.svc-who-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.svc-who-meta {
		font-size: 9.5px;
		letter-spacing: 0.12em;
	}
}

/* ==========================================================================
   SERVICE PAGE — SLOW, SMOOTH, SILKY ENTRANCE & SCROLL ANIMATIONS
   ========================================================================== */

/* Base state for revealable elements before they intersect viewport */
.js-ready .svc-intro-copy,
.js-ready .svc-intro-media,
.js-ready .svc-intro-media-col,
.js-ready .svc-intro-point-card,
.js-ready .svc-included-header,
.js-ready .svc-included-copy,
.js-ready .svc-include-card,
.js-ready .svc-included-bottom-bar,
.js-ready .svc-who-top,
.js-ready .svc-who-head,
.js-ready .svc-who-tab-item,
.js-ready .svc-who-panels-wrap,
.js-ready .svc-how-header,
.js-ready .svc-how-step,
.js-ready .why-content-col,
.js-ready .why-media-card,
.js-ready .why-feature-card,
.js-ready .svc-existing-copy,
.js-ready .svc-existing-assess-card,
.js-ready .svc-faq-header,
.js-ready .service-faq-item,
.js-ready .svc-quote-header,
.js-ready .cta-media-col,
.js-ready .cta-content-col,
.js-ready .services-header-row,
.js-ready .services-search-filter-wrap,
.js-ready .popular-service-card,
.js-ready .all-services-card,
.js-ready .service-step,
.js-ready .service-why-card,
.js-ready .svc-reveal:not(.svc-quote-form-card):not(.svc-quote-center-wrap) {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
	            border-color 0.45s ease;
	will-change: opacity, transform;
}

/* Revealed state triggered smoothly when entering viewport */
.js-ready .svc-intro-copy.is-revealed,
.js-ready .svc-intro-media.is-revealed,
.js-ready .svc-intro-media-col.is-revealed,
.js-ready .svc-intro-point-card.is-revealed,
.js-ready .svc-included-header.is-revealed,
.js-ready .svc-included-copy.is-revealed,
.js-ready .svc-include-card.is-revealed,
.js-ready .svc-included-bottom-bar.is-revealed,
.js-ready .svc-who-top.is-revealed,
.js-ready .svc-who-head.is-revealed,
.js-ready .svc-who-tab-item.is-revealed,
.js-ready .svc-who-panels-wrap.is-revealed,
.js-ready .svc-how-header.is-revealed,
.js-ready .svc-how-step.is-revealed,
.js-ready .why-content-col.is-revealed,
.js-ready .why-media-card.is-revealed,
.js-ready .why-feature-card.is-revealed,
.js-ready .svc-existing-copy.is-revealed,
.js-ready .svc-existing-assess-card.is-revealed,
.js-ready .svc-faq-header.is-revealed,
.js-ready .service-faq-item.is-revealed,
.js-ready .svc-quote-header.is-revealed,
.js-ready .svc-quote-form-card.is-revealed,
.js-ready .svc-quote-center-wrap.is-revealed,
.js-ready .svc-quote-center-wrap.is-revealed .svc-quote-form-card,
.js-ready .svc-quote-center-wrap.is-revealed .svc-quote-header,
.js-ready .cta-media-col.is-revealed,
.js-ready .cta-content-col.is-revealed,
.js-ready .services-header-row.is-revealed,
.js-ready .services-search-filter-wrap.is-revealed,
.js-ready .popular-service-card.is-revealed,
.js-ready .all-services-card.is-revealed,
.js-ready .service-step.is-revealed,
.js-ready .service-why-card.is-revealed,
.js-ready .svc-reveal.is-revealed,
.js-ready .is-revealed {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* Staggered transition delays for Introduction section */
.js-ready .svc-intro-copy.is-revealed {
	transition-delay: 0.08s;
}

.js-ready .svc-intro-media.is-revealed,
.js-ready .svc-intro-media-col.is-revealed {
	transition-delay: 0.22s;
}

.js-ready .svc-intro-point-card:nth-child(1).is-revealed {
	transition-delay: 0.12s;
}

.js-ready .svc-intro-point-card:nth-child(2).is-revealed {
	transition-delay: 0.26s;
}

.js-ready .svc-intro-point-card:nth-child(3).is-revealed {
	transition-delay: 0.40s;
}

/* Staggered transition delays for What's Included section */
.js-ready .svc-included-header.is-revealed {
	transition-delay: 0.08s;
}

.js-ready .svc-include-card:nth-child(1).is-revealed {
	transition-delay: 0.14s;
}

.js-ready .svc-include-card:nth-child(2).is-revealed {
	transition-delay: 0.28s;
}

.js-ready .svc-include-card:nth-child(3).is-revealed {
	transition-delay: 0.42s;
}

.js-ready .svc-include-card:nth-child(4).is-revealed {
	transition-delay: 0.56s;
}

.js-ready .svc-included-bottom-bar.is-revealed {
	transition-delay: 0.20s;
}

/* Staggered transition delays for Who It's For section */
.js-ready .svc-who-top.is-revealed {
	transition-delay: 0.05s;
}

.js-ready .svc-who-head.is-revealed {
	transition-delay: 0.10s;
}

.js-ready .svc-who-tab-item:nth-child(1).is-revealed {
	transition-delay: 0.12s;
}

.js-ready .svc-who-tab-item:nth-child(2).is-revealed {
	transition-delay: 0.22s;
}

.js-ready .svc-who-tab-item:nth-child(3).is-revealed {
	transition-delay: 0.32s;
}

.js-ready .svc-who-tab-item:nth-child(4).is-revealed {
	transition-delay: 0.42s;
}

.js-ready .svc-who-panels-wrap.is-revealed {
	transition-delay: 0.22s;
}

/* 1.2s Staggered Reveal for How It Works Timeline Steps */
.js-ready .svc-how-header.is-revealed {
	transition-delay: 0.08s;
}

.js-ready .svc-how-step:nth-child(1).is-revealed { transition-delay: 0.10s; }
.js-ready .svc-how-step:nth-child(2).is-revealed { transition-delay: 0.22s; }
.js-ready .svc-how-step:nth-child(3).is-revealed { transition-delay: 0.34s; }
.js-ready .svc-how-step:nth-child(4).is-revealed { transition-delay: 0.46s; }
.js-ready .svc-how-step:nth-child(5).is-revealed { transition-delay: 0.58s; }

/* Staggered transition delays for Why Choose Us section */
.js-ready .why-media-card.is-revealed { transition-delay: 0.12s; }
.js-ready .why-content-col.is-revealed { transition-delay: 0.18s; }
.js-ready .why-feature-card:nth-child(1).is-revealed { transition-delay: 0.14s; }
.js-ready .why-feature-card:nth-child(2).is-revealed { transition-delay: 0.26s; }
.js-ready .why-feature-card:nth-child(3).is-revealed { transition-delay: 0.38s; }
.js-ready .why-feature-card:nth-child(4).is-revealed { transition-delay: 0.50s; }

/* Staggered transition delays for Existing System Integration section */
.js-ready .svc-existing-copy.is-revealed { transition-delay: 0.10s; }
.js-ready .svc-existing-assess-card.is-revealed { transition-delay: 0.24s; }

/* Staggered transition delays for FAQs */
.js-ready .svc-faq-header.is-revealed { transition-delay: 0.08s; }
.js-ready .service-faq-item:nth-child(1).is-revealed { transition-delay: 0.10s; }
.js-ready .service-faq-item:nth-child(2).is-revealed { transition-delay: 0.18s; }
.js-ready .service-faq-item:nth-child(3).is-revealed { transition-delay: 0.26s; }
.js-ready .service-faq-item:nth-child(4).is-revealed { transition-delay: 0.34s; }
.js-ready .service-faq-item:nth-child(5).is-revealed { transition-delay: 0.42s; }
.js-ready .service-faq-item:nth-child(6).is-revealed { transition-delay: 0.50s; }
.js-ready .service-faq-item:nth-child(7).is-revealed { transition-delay: 0.58s; }
.js-ready .service-faq-item:nth-child(8).is-revealed { transition-delay: 0.66s; }

/* Staggered transition delays for Quote Form section */
.js-ready .svc-quote-header.is-revealed { transition-delay: 0.08s; }
.js-ready .svc-quote-center-wrap.is-revealed,
.js-ready .svc-quote-form-card.is-revealed { transition-delay: 0.20s; }

/* Staggered transition delays for Closing Pre-Footer CTA */
.js-ready .cta-media-col.is-revealed { transition-delay: 0.12s; }
.js-ready .cta-content-col.is-revealed { transition-delay: 0.24s; }

/* Micro-interaction hover states with slow luxurious easing */
.svc-intro-point-card:hover .svc-point-card-icon {
	transform: scale(1.08) rotate(3deg);
	background: #00a2e8;
	color: #ffffff;
}

.svc-point-card-icon {
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.45s ease,
	            color 0.45s ease;
}

.svc-include-card:hover .svc-include-icon {
	transform: translateY(-2px) scale(1.06);
	box-shadow: 0 6px 18px rgba(0, 162, 232, 0.4);
	color: #ffffff;
	background: linear-gradient(135deg, #041c3b 0%, #00a2e8 100%);
}

.svc-include-icon {
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.45s ease,
	            color 0.45s ease;
}

/* Image zoom on card hover */
.svc-include-thumb img,
.why-technician-img,
.cta-main-img {
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
}

.svc-include-card:hover .svc-include-thumb img {
	transform: scale(1.045);
}

/* Media & Image Boxes - Subtle initial scale with smooth bloom */
.js-ready .svc-intro-media,
.js-ready .svc-intro-media-col,
.js-ready .why-media-card,
.js-ready .cta-media-col,
.js-ready .svc-who-card-media {
	opacity: 0;
	transform: translateY(28px) scale(0.975);
	transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 1.0s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.5s ease;
	will-change: opacity, transform;
}

.js-ready .svc-intro-media.is-revealed,
.js-ready .svc-intro-media-col.is-revealed,
.js-ready .why-media-card.is-revealed,
.js-ready .cta-media-col.is-revealed,
.js-ready .svc-who-card-media.is-revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 0.28s;
}

/* Floating Badges & Icon Pods entrance */
.js-ready .why-floating-badge,
.js-ready .svc-point-icon-box,
.js-ready .svc-include-icon,
.js-ready .svc-who-media-badge {
	opacity: 0;
	transform: scale(0.88) rotate(-3deg);
	transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-revealed .why-floating-badge,
.is-revealed .svc-point-icon-box,
.is-revealed .svc-include-icon,
.is-revealed .svc-who-media-badge {
	opacity: 1;
	transform: scale(1) rotate(0deg);
	transition-delay: 0.38s;
}

.svc-intro-feature-item {
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.35s ease;
}

.svc-intro-feature-item:hover {
	transform: translateX(4px);
}

/* Ambient pulse animation on dots & badges */
@keyframes wacs-pulse-glow {
	0%, 100% {
		opacity: 0.75;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 162, 232, 0.4);
	}
	50% {
		opacity: 1;
		transform: scale(1.06);
		box-shadow: 0 0 0 6px rgba(0, 162, 232, 0);
	}
}

.subnav-quote-dot,
.svc-feature-check {
	animation: wacs-pulse-glow 3.5s ease-in-out infinite;
}

/* Accessibility: Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
	.js-ready .svc-intro-copy,
	.js-ready .svc-intro-media,
	.js-ready .svc-intro-media-col,
	.js-ready .svc-intro-point-card,
	.js-ready .svc-included-header,
	.js-ready .svc-included-copy,
	.js-ready .svc-include-card,
	.js-ready .svc-included-bottom-bar,
	.js-ready .svc-who-top,
	.js-ready .svc-who-head,
	.js-ready .svc-who-tab-item,
	.js-ready .svc-who-panels-wrap,
	.js-ready .svc-how-header,
	.js-ready .svc-how-step,
	.js-ready .why-content-col,
	.js-ready .why-media-card,
	.js-ready .why-feature-card,
	.js-ready .svc-existing-copy,
	.js-ready .svc-existing-assess-card,
	.js-ready .svc-faq-header,
	.js-ready .service-faq-item,
	.js-ready .svc-quote-header,
	.js-ready .svc-quote-form-card,
	.js-ready .svc-quote-center-wrap,
	.js-ready .cta-media-col,
	.js-ready .cta-content-col,
	.js-ready .services-header-row,
	.js-ready .services-search-filter-wrap,
	.js-ready .popular-service-card,
	.js-ready .all-services-card,
	.js-ready .service-step,
	.js-ready .service-why-card,
	.js-ready .svc-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.subnav-quote-dot,
	.svc-feature-check {
		animation: none !important;
	}
}

/* ==========================================================================
   Single Service: Why Choose WA Central Security (Modelled after Homepage)
   ========================================================================== */
.svc-why-section {
	position: relative;
	width: 100%;
	padding: 84px 0 92px;
	background: #020914;
	color: #ffffff;
	border-top: none;
	border-bottom: 1px solid rgba(0, 162, 232, 0.14);
	overflow: hidden;
}

.svc-why-section .why-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

.svc-why-section .why-main-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: center;
}

.svc-why-section .why-media-card {
	height: 560px;
}

/* 1.5s Staggered Reveal for Why Choose Us Feature Cards */
.js-ready .why-feature-card.svc-reveal {
	opacity: 0;
	transform: translateX(-24px);
	transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.32s ease,
	            border-color 0.32s ease,
	            box-shadow 0.32s ease;
	will-change: opacity, transform;
}

.js-ready .why-feature-card.svc-reveal.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

.js-ready .why-feature-card:nth-child(1).is-revealed { transition-delay: 0.15s; }
.js-ready .why-feature-card:nth-child(2).is-revealed { transition-delay: 0.30s; }
.js-ready .why-feature-card:nth-child(3).is-revealed { transition-delay: 0.45s; }
.js-ready .why-feature-card:nth-child(4).is-revealed { transition-delay: 0.60s; }

.why-feature-card:hover {
	transform: translateX(8px) !important;
}

@media (max-width: 1024px) {
	.svc-why-section .why-main-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}
	.svc-why-section .why-media-card {
		height: 460px;
	}
}

@media (max-width: 640px) {
	.svc-why-section {
		padding: 60px 0 68px;
	}
	.svc-why-section .why-container {
		padding: 0 20px;
	}
	.svc-why-section .why-media-card {
		height: 350px;
	}
	.svc-why-section .why-floating-badge {
		position: static;
		margin: -24px auto 0;
		max-width: 92%;
	}
	.svc-why-section .why-title {
		font-size: 32px;
	}
}

/* ==========================================================================
   SERVICE DETAIL — CLOSING PRE-FOOTER CTA SECTION
   ========================================================================== */
.services-cta-section .cta-actions-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	margin-top: 6px;
	margin-bottom: 0;
	flex-wrap: wrap;
}

.services-cta-section .btn-cta-primary,
.services-cta-section .btn-cta-phone {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	box-sizing: border-box;
	text-decoration: none;
	white-space: nowrap;
}

.services-cta-section .btn-cta-primary {
	padding: 14px 28px;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.services-cta-section .btn-cta-phone {
	padding: 10px 22px;
}

@media (max-width: 640px) {
	.services-cta-section .cta-actions-row {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.services-cta-section .btn-cta-primary,
	.services-cta-section .btn-cta-phone {
		width: 100%;
		justify-content: center;
		white-space: normal;
		text-align: center;
	}
}

/* ==========================================================================
   HOMEPAGE — 4-CARD POPULAR SERVICES SHOWCASE
   ========================================================================== */
.popular-services-section .popular-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
	margin-bottom: 0;
}

.popular-services-section .popular-service-card {
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            border-color 0.3s ease,
	            box-shadow 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
}

.popular-services-section .popular-service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 150, 199, 0.55);
	box-shadow: 0 16px 36px rgba(0, 150, 199, 0.15), 0 4px 12px rgba(4, 28, 59, 0.06);
}

.popular-services-section .ref-card-media {
	height: 222px !important;
}

.popular-services-section .ref-card-body {
	padding: 16px 22px 24px 22px !important;
}

.popular-services-section .ref-card-title {
	font-size: 18px !important;
	line-height: 1.3 !important;
	margin-bottom: 8px !important;
}

.popular-services-section .ref-card-desc {
	font-size: 14px !important;
	line-height: 1.55 !important;
	color: #64748b !important;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 1024px) and (min-width: 641px) {
	.popular-services-section .popular-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 20px !important;
	}
	.popular-services-section .ref-card-media {
		height: 200px !important;
	}
}

@media (max-width: 640px) {
	.popular-services-section .popular-services-grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}
	.popular-services-section .ref-card-media {
		height: 202px !important;
	}
}

/* ==========================================================================
   PRODUCTS PAGE — PROFESSIONAL SECURITY PRODUCTS CATALOGUE (MOCKUP STYLES)
   ========================================================================== */

.products-hero-section {
	background-color: #041322;
	background-image:
		radial-gradient(circle at 85% 30%, rgba(30, 182, 213, 0.22) 0%, rgba(13, 95, 168, 0.08) 45%, transparent 75%),
		linear-gradient(90deg, rgba(4, 19, 34, 0.98) 0%, rgba(4, 19, 34, 0.90) 38%, rgba(7, 27, 46, 0.45) 75%, rgba(7, 27, 46, 0.12) 100%),
		url('assets/hero-bg.webp');
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
}

.products-catalogue-section {
	background: #f8fafc;
	padding: 56px 0 88px;
	min-height: 80vh;
}

.products-catalogue-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 32px;
}

.products-catalogue-layout {
	display: flex;
	gap: 36px;
	align-items: flex-start;
}

/* 1. Left Sidebar */
.products-sidebar {
	width: 290px;
	flex-shrink: 0;
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sidebar-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 22px 18px;
	box-shadow: 0 4px 16px rgba(4, 28, 59, 0.03);
}

.categories-nav-box .sidebar-box-title {
	font-size: 18px;
	font-weight: 850;
	color: #041c3b;
	margin: 0 0 16px 6px;
	letter-spacing: -0.01em;
}

.category-nav-menu {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.cat-nav-item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	border-radius: 9px;
	border: 1px solid transparent;
	background: transparent;
	color: #334155;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-nav-item:hover {
	background: #f1f5f9;
	color: #041c3b;
}

.cat-nav-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	color: #64748b;
	transition: color 0.2s ease;
}

.cat-nav-chevron {
	margin-left: auto;
	font-size: 18px;
	line-height: 1;
	color: #94a3b8;
	font-weight: 700;
	transition: transform 0.2s ease, color 0.2s ease;
}

.cat-nav-item.active {
	background: #0066cc;
	color: #ffffff;
	font-weight: 750;
	border-color: #0066cc;
	box-shadow: 0 4px 14px rgba(0, 102, 204, 0.28);
}

.cat-nav-item.active .cat-nav-icon {
	color: #ffffff;
}

.cat-nav-item.active .cat-nav-chevron {
	color: #ffffff;
	transform: translateX(2px);
}

/* Card B: Need Help Choosing? */
.help-choosing-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px 20px;
}

.help-box-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.help-icon-bubble {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #eff6ff;
	border: 1px solid #dbeafe;
	color: #0066cc;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.help-title {
	font-size: 17px;
	font-weight: 850;
	color: #041c3b;
	margin: 0;
	letter-spacing: -0.01em;
}

.help-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin: 0 0 16px;
}

.btn-talk-expert {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #0066cc;
	color: #ffffff;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 750;
	padding: 11px 18px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 4px 12px rgba(0, 102, 204, 0.22);
}

.btn-talk-expert:hover {
	background: #0052a3;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 102, 204, 0.32);
}

.help-contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #f1f5f9;
}

.help-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.help-contact-item .contact-icon {
	color: #0066cc;
	margin-top: 2px;
	flex-shrink: 0;
}

.help-contact-item .contact-text {
	display: flex;
	flex-direction: column;
}

.help-contact-item .contact-val {
	font-size: 13px;
	color: #041c3b;
	text-decoration: none;
	line-height: 1.35;
	transition: color 0.2s ease;
}

.help-contact-item a.contact-val:hover {
	color: #0066cc;
}

.help-contact-item .font-bold {
	font-weight: 800;
	font-size: 14px;
}

.help-contact-item .contact-sub {
	font-size: 11.5px;
	color: #64748b;
	margin-top: 2px;
}

.help-contact-item .address-val {
	font-size: 12.5px;
	color: #475569;
	line-height: 1.45;
}

/* 2. Right Main Content Area */
.products-catalogue-main {
	flex: 1;
	min-width: 0;
}

.products-main-header {
	margin-bottom: 24px;
	text-align: left;
}

.products-header-eyebrow {
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	color: #0096c7;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.products-main-title {
	font-size: 32px;
	font-weight: 850;
	color: #041c3b;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.products-main-subtitle {
	font-size: 15px;
	color: #55687d;
	line-height: 1.6;
	max-width: 780px;
	margin: 0;
}

/* Toolbar: Search + Filter Pills + Counter */
.products-toolbar {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 18px;
	margin-bottom: 28px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
	flex-wrap: wrap;
}

.prod-search-box {
	position: relative;
	flex: 1;
	min-width: 220px;
	display: flex;
	align-items: center;
}

.prod-search-icon {
	position: absolute;
	left: 12px;
	width: 17px;
	height: 17px;
	color: #94a3b8;
	pointer-events: none;
}

.prod-search-input {
	width: 100%;
	height: 42px;
	padding: 0 34px 0 38px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	font-family: var(--font-primary);
	font-size: 13.5px;
	color: #041c3b;
	background: #f8fafc;
	transition: all 0.2s ease;
}

.prod-search-input:focus {
	border-color: #0066cc;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
	outline: none;
}

.prod-search-clear {
	position: absolute;
	right: 10px;
	background: none;
	border: none;
	font-size: 20px;
	color: #94a3b8;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}

.prod-search-clear:hover {
	color: #041c3b;
}

.prod-filter-pills {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.prod-pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-pill-btn .pill-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0066cc;
	transition: color 0.2s ease;
}

.prod-pill-btn:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	color: #041c3b;
}

.prod-pill-btn.active {
	background: #eff6ff;
	color: #0066cc;
	border-color: #93c5fd;
	font-weight: 750;
	box-shadow: 0 2px 8px rgba(0, 102, 204, 0.12);
}

.prod-results-counter {
	margin-left: auto;
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 650;
	color: #64748b;
	white-space: nowrap;
}

/* 3-Column Product Cards Grid */
.products-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.catalog-product-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 16px rgba(4, 28, 59, 0.03);
	cursor: pointer;
	position: relative;
}

.catalog-product-card.is-hidden {
	display: none !important;
}

.catalog-product-card:hover {
	transform: translateY(-5px);
	border-color: #93c5fd;
	box-shadow: 0 16px 36px rgba(0, 102, 204, 0.12), 0 4px 12px rgba(4, 28, 59, 0.04);
}

.catalog-card-media {
	background: #f6f8fc;
	height: auto;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	position: relative;
}

.catalog-product-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	transition: opacity 0.38s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-img-primary {
	opacity: 1;
	transform: scale(1);
	position: relative;
	z-index: 1;
}

.catalog-img-hover {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	margin: auto;
	opacity: 0;
	transform: scale(0.95);
	z-index: 2;
	pointer-events: none;
}

.catalog-product-card:hover .catalog-img-primary {
	opacity: 0;
	transform: scale(1.05);
}

.catalog-product-card:hover .catalog-img-hover {
	opacity: 1;
	transform: scale(1);
}

.catalog-card-body {
	padding: 22px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.catalog-cat-badge {
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 850;
	color: #0066cc;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 6px;
	line-height: 1.3;
}

.catalog-product-title {
	font-size: 17.5px;
	font-weight: 850;
	color: #041c3b;
	line-height: 1.3;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	min-height: 46px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.catalog-specs-list {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 72px;
}

.catalog-specs-list .spec-item {
	font-size: 12.5px;
	color: #475569;
	line-height: 1.5;
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.catalog-specs-list .spec-bullet {
	color: #0066cc;
	font-size: 14px;
	line-height: 1;
	flex-shrink: 0;
}

.catalog-action-row {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
}

.catalog-view-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 850;
	color: #0066cc;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.2s ease;
}

.catalog-view-link svg {
	transition: transform 0.2s ease;
}

.catalog-product-card:hover .catalog-view-link {
	color: #041c3b;
}

.catalog-product-card:hover .catalog-view-link svg {
	transform: translateX(4px);
}

/* Empty State */
.products-empty-state {
	text-align: center;
	padding: 64px 24px;
	background: #ffffff;
	border: 1.5px dashed #cbd5e1;
	border-radius: 14px;
	margin: 20px 0;
}

.products-empty-state .empty-state-icon {
	font-size: 42px;
	margin-bottom: 12px;
}

.products-empty-state h3 {
	font-size: 20px;
	font-weight: 800;
	color: #041c3b;
	margin-bottom: 8px;
}

.products-empty-state p {
	font-size: 14px;
	color: #64748b;
	max-width: 480px;
	margin: 0 auto 18px;
}

.btn-reset-filters {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 22px;
	background: #0066cc;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 750;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-reset-filters:hover {
	background: #0052a3;
	transform: translateY(-2px);
}

/* Products Catalogue Pagination */
.catalog-pagination-nav {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination-container {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 9999px;
	padding: 6px 14px;
	box-shadow: 0 4px 18px rgba(4, 28, 59, 0.06);
}

.pagination-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 9999px;
	background: transparent;
	border: 1px solid transparent;
	color: #334155;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 750;
	cursor: pointer;
	transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
	background: #f1f5f9;
	color: #0066cc;
}

.pagination-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.pagination-pages {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.pagination-page-btn {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid transparent;
	color: #334155;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.2s ease;
}

.pagination-page-btn:hover:not(.active) {
	background: #f8fafc;
	color: #0066cc;
	border-color: #cbd5e1;
}

.pagination-page-btn.active {
	background: #0066cc;
	color: #ffffff;
	border-color: #0066cc;
	box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Bottom Full-Width CTA Banner */
.products-bottom-cta-banner {
	background: linear-gradient(135deg, #031733 0%, #082852 100%);
	border: 1px solid rgba(0, 162, 232, 0.25);
	border-radius: 16px;
	padding: 28px 34px;
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	box-shadow: 0 12px 36px rgba(3, 23, 51, 0.25);
}

.cta-banner-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cta-shield-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(0, 162, 232, 0.15);
	border: 1.5px solid rgba(0, 162, 232, 0.35);
	color: #38bdf8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 20px rgba(0, 162, 232, 0.2);
}

.cta-banner-title {
	font-size: 20px;
	font-weight: 850;
	color: #ffffff;
	margin: 0 0 4px;
	letter-spacing: -0.01em;
}

.cta-banner-desc {
	font-size: 14px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.45;
}

.cta-banner-right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.btn-cta-quote {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 800;
	background: #0066cc;
	color: #ffffff;
	border-radius: 8px;
	text-decoration: none;
	border: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(0, 102, 204, 0.35);
}

.btn-cta-quote:hover {
	background: #0052a3;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0, 102, 204, 0.45);
	color: #ffffff;
}

.btn-cta-speak {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	font-family: var(--font-primary);
	font-size: 13.5px;
	font-weight: 800;
	background: transparent;
	color: #ffffff;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-cta-speak:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	transform: translateY(-2px);
	color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE ADAPTATIONS (100% Mobile & Tablet Perfection)
   ========================================================================== */

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

@media (max-width: 992px) {
	.products-catalogue-layout {
		flex-direction: column;
		gap: 32px;
		width: 100%;
		max-width: 100%;
		align-items: stretch;
	}

	.products-sidebar {
		width: 100%;
		position: static;
	}

	.products-catalogue-main {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.category-nav-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.products-bottom-cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 28px 24px;
	}

	.cta-banner-left {
		flex-direction: column;
		text-align: center;
	}

	.cta-banner-right {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.products-catalogue-section {
		padding: 24px 0 60px;
		overflow-x: hidden;
	}

	.products-catalogue-container {
		padding: 0 16px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.products-sidebar {
		width: 100% !important;
		position: static !important;
		margin-bottom: 0 !important;
	}

	.products-sidebar .categories-nav-box {
		background: transparent !important;
		border: none !important;
		border-radius: 0 !important;
		padding: 0 !important;
		box-shadow: none !important;
		margin: 0 !important;
		width: 100% !important;
	}

	.products-sidebar .categories-nav-box .sidebar-box-title {
		display: none !important;
	}

	.products-catalogue-main {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	/* Hide "Need Help Choosing?" box on mobile view only */
	.products-sidebar .help-choosing-box,
	.help-choosing-box {
		display: none !important;
	}

	/* Hide products main header and search/filter toolbar on mobile view only */
	.products-main-header,
	.products-toolbar {
		display: none !important;
	}

	.products-catalogue-layout {
		gap: 12px !important;
	}

	.products-main-title {
		font-size: 26px;
	}

	.products-toolbar {
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		gap: 12px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.prod-search-box {
		width: 100%;
	}

	.prod-filter-pills {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 8px;
		overflow-x: visible;
		flex-wrap: nowrap;
		padding-bottom: 0;
	}

	.prod-pill-btn {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
		padding: 11px 16px;
		border-radius: 9px;
		font-size: 14px;
		font-weight: 600;
		background: #f8fafc;
		border: 1px solid #e2e8f0;
		color: #334155;
		transition: all 0.2s ease;
	}

	.prod-pill-btn.active {
		background: #eff6ff;
		color: #0066cc;
		border-color: #93c5fd;
		font-weight: 750;
	}

	.prod-results-counter {
		margin-left: 0;
		text-align: left;
		padding: 4px 2px;
		font-size: 13px;
		color: #64748b;
	}

	.products-cards-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
		width: 100% !important;
	}

	.catalog-product-card {
		background: #ffffff !important;
		border: 1px solid rgba(226, 232, 240, 0.95) !important;
		border-radius: 14px !important;
		overflow: hidden !important;
		display: flex;
		flex-direction: column !important;
		box-shadow: 0 2px 10px rgba(4, 28, 59, 0.05) !important;
		transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
		cursor: pointer !important;
		-webkit-tap-highlight-color: transparent !important;
	}

	.catalog-product-card.is-hidden {
		display: none !important;
	}

	.catalog-product-card:active {
		transform: scale(0.97) !important;
		box-shadow: 0 1px 4px rgba(4, 28, 59, 0.08) !important;
	}

	.catalog-card-media {
		height: 140px !important;
		padding: 12px !important;
		background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
		border-bottom: 1px solid #edf2f7 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		position: relative !important;
	}

	.catalog-product-img {
		max-height: 100% !important;
		max-width: 100% !important;
		object-fit: contain !important;
		filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.06)) !important;
		transition: transform 0.25s ease !important;
	}

	.catalog-card-body {
		padding: 11px 9px 13px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 1 !important;
		background: #ffffff !important;
	}

	.catalog-product-title {
		font-size: 13.5px !important;
		font-weight: 750 !important;
		color: #041c3b !important;
		line-height: 1.35 !important;
		margin: 0 !important;
		min-height: 36px !important;
		text-align: center !important;
		display: -webkit-box !important;
		-webkit-line-clamp: 2 !important;
		line-clamp: 2 !important;
		-webkit-box-orient: vertical !important;
		overflow: hidden !important;
	}

	/* Strictly hide category badge, specs list, and view product button on mobile so only image and title show */
	.catalog-cat-badge,
	.catalog-specs-list,
	.catalog-action-row {
		display: none !important;
	}

	/* Category navigation menu styled as single-row horizontal swipeable pill bar (matches services-filter-bar) */
	.category-nav-menu {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: 6px !important;
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		touch-action: pan-x !important;
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
		padding: 4px 2px 14px 2px !important;
		margin: 0 !important;
	}

	.category-nav-menu::-webkit-scrollbar {
		display: none !important;
	}

	.cat-nav-item {
		flex: 0 0 auto !important;
		width: auto !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 7px !important;
		white-space: nowrap !important;
		padding: 10px 16px !important;
		border-radius: 8px !important;
		border: 1.5px solid rgba(226, 232, 240, 0.95) !important;
		background: #ffffff !important;
		color: #334155 !important;
		font-family: var(--font-primary) !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		letter-spacing: 0.01em !important;
		box-shadow: 0 1px 3px rgba(4, 28, 59, 0.04) !important;
		cursor: pointer !important;
		touch-action: manipulation !important;
		-webkit-tap-highlight-color: transparent !important;
		transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
	}

	.cat-nav-item:hover {
		border-color: var(--cyan-500) !important;
		background: var(--cyan-50) !important;
		color: var(--cyan-700) !important;
	}

	.cat-nav-item.active {
		border-color: #041c3b !important;
		background: linear-gradient(135deg, #041c3b 0%, #0a2e5c 100%) !important;
		color: #ffffff !important;
		box-shadow: 0 4px 16px rgba(4, 28, 59, 0.22) !important;
	}

	.cat-nav-item .cat-nav-chevron {
		display: none !important;
	}

	.cat-nav-item .cat-nav-icon {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 16px !important;
		height: 16px !important;
		color: #64748b !important;
		flex-shrink: 0 !important;
	}

	.cat-nav-item .cat-nav-icon svg {
		width: 15px !important;
		height: 15px !important;
	}

	.cat-nav-item.active .cat-nav-icon {
		color: #ffffff !important;
	}

	.cat-nav-label {
		font-size: 13px !important;
		font-weight: 700 !important;
		white-space: nowrap !important;
	}

	.products-bottom-cta-banner {
		padding: 24px 18px;
		margin-top: 36px;
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
	}

	.cta-banner-title {
		font-size: 19px;
		line-height: 1.35;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.cta-banner-desc {
		font-size: 13.5px;
		line-height: 1.45;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.cta-banner-right {
		flex-direction: column;
		width: 100%;
	}

	.btn-cta-quote,
	.btn-cta-speak {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
	}

	/* Strictly remove pagination on mobile */
	.catalog-pagination-nav {
		display: none !important;
	}
}

@media (max-width: 480px) {
	.products-cards-grid {
		gap: 10px !important;
	}

	.catalog-card-media {
		height: 120px !important;
		padding: 8px !important;
	}

	.catalog-card-body {
		padding: 8px 6px 10px !important;
	}

	.catalog-product-title {
		font-size: 12px !important;
		line-height: 1.3 !important;
		min-height: 32px !important;
	}
}

html, body {
	overflow-x: hidden;
}

.dropdown-card.dropdown-card-view-all {
	background: #f0f7ff;
	border-color: #bae6fd;
	color: #0066cc;
	font-weight: 750;
	margin-bottom: 8px;
	border-radius: 10px;
}

.dropdown-card.dropdown-card-view-all:hover {
	background: #0066cc;
	color: #ffffff;
}

.dropdown-card.dropdown-card-view-all .dropdown-card-arrow {
	color: #0066cc;
}

.dropdown-card.dropdown-card-view-all:hover .dropdown-card-arrow {
	color: #ffffff;
}




/* ==========================================================================
   SINGLE PRODUCT DETAILS PAGE (PIXEL-PERFECT MOCKUP ALIGNMENT)
   ========================================================================== */

/* Breadcrumbs Bar */
.single-product-breadcrumb-bar {
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	padding: 14px 0;
	margin-bottom: 24px;
}

.single-product-main,
.single-product-breadcrumb-bar {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.product-page-container {
	width: 100%;
	max-width: 1360px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 30px;
}

.single-product-layout-grid,
.single-product-sidebar-col,
.single-product-content-col,
.product-hero-stage,
.product-gallery-col,
.product-summary-col,
.product-tabs-wrapper {
	box-sizing: border-box;
	min-width: 0;
}

.wacs-breadcrumbs .breadcrumb-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13.5px;
	font-weight: 500;
	color: #64748b;
}

.wacs-breadcrumbs .breadcrumb-item a {
	color: #475569;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wacs-breadcrumbs .breadcrumb-item a:hover {
	color: #1d4ed8;
}

.wacs-breadcrumbs .breadcrumb-separator {
	color: #94a3b8;
	font-size: 14px;
}

.wacs-breadcrumbs .breadcrumb-item.active {
	color: #0f172a;
	font-weight: 600;
}

/* Master 2-Column Product Layout */
.single-product-layout-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 44px;
	align-items: start;
	margin-bottom: 60px;
}

/* ================= Sidebar Styling ================= */
.single-product-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sidebar-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.sidebar-box-title {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 16px 0;
	letter-spacing: -0.01em;
}

/* Category Navigation List */
.cat-nav-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cat-nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 16px;
	border-radius: 9px;
	color: #334155;
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.cat-nav-link:hover {
	background: #f1f5f9;
	color: #0f172a;
	transform: translateX(3px);
}

.cat-nav-link.active {
	background: #eff6ff;
	color: #1d4ed8;
	font-weight: 700;
	border: 1px solid #bfdbfe;
	box-shadow: none;
}

.cat-nav-link.active .cat-nav-icon,
.cat-nav-link.active .cat-nav-chevron {
	color: #2563eb;
}

.cat-nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	color: #64748b;
}

.cat-nav-label {
	flex: 1;
}

.cat-nav-chevron {
	font-size: 18px;
	font-weight: 700;
	color: #94a3b8;
}

/* Help Box Styling */
.help-choosing-box {
	background: #ffffff;
}

.help-box-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}

.help-icon-bubble {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #eff6ff;
	color: #1d4ed8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.help-box-title {
	font-size: 16px;
	font-weight: 750;
	color: #0f172a;
	margin: 0;
	line-height: 1.3;
}

.help-box-desc {
	font-size: 13.5px;
	line-height: 1.55;
	color: #475569;
	margin: 0 0 18px 0;
}

.btn-talk-expert {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #1d4ed8;
	color: #ffffff !important;
	height: 44px;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(29, 78, 216, 0.2);
	margin-bottom: 22px;
}

.btn-talk-expert:hover {
	background: #1e40af;
	box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35);
	transform: translateY(-1px);
}

.help-contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	border-top: 1px solid #f1f5f9;
	padding-top: 18px;
}

.help-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13px;
	color: #334155;
}

.contact-item-icon {
	color: #1d4ed8;
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-item-text {
	display: flex;
	flex-direction: column;
}

.contact-item-text a {
	color: #0f172a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

.contact-item-text a:hover {
	color: #1d4ed8;
}

.hours-sub {
	font-size: 12px;
	color: #64748b;
}

/* Promo Security Card */
.promo-security-card {
	background-size: cover;
	background-position: center;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	padding: 30px 24px;
}

.promo-accent-bar {
	width: 38px;
	height: 3px;
	background: #06b6d4;
	border-radius: 2px;
	margin-bottom: 14px;
}

.promo-card-title {
	font-size: 18px;
	font-weight: 750;
	line-height: 1.35;
	color: #ffffff;
	margin: 0 0 20px 0;
}

.btn-promo-quote {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	color: #ffffff !important;
	border-radius: 8px;
	padding: 8px 18px;
	font-size: 13.5px;
	font-weight: 650;
	text-decoration: none;
	transition: all 0.2s ease;
	backdrop-filter: blur(4px);
}

.btn-promo-quote:hover {
	background: #ffffff;
	color: #0f172a !important;
}

/* ================= Hero Section (Gallery + Purchase Summary) ================= */
.single-product-full-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
	width: 100%;
}

.product-hero-stage {
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 56px;
	align-items: start;
	margin-bottom: 56px;
}

/* Gallery Column */
.product-main-media-wrap {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	height: auto;
	aspect-ratio: 4 / 3;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-main-media-wrap:hover {
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	border-color: #cbd5e1;
}

.product-bestseller-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #fef3c7;
	color: #92400e;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	z-index: 2;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-zoom-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475569;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	transition: all 0.2s ease;
}

.product-zoom-btn:hover {
	background: #f8fafc;
	color: #1d4ed8;
	transform: scale(1.06);
}

.product-main-img-box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	overflow: hidden;
}

.product-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gallery thumbnail strip */
.product-thumbs-strip {
	display: grid;
	grid-template-columns: repeat(var(--product-thumb-count, 3), minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.product-thumb-btn {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	padding: 6px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-thumb-btn:hover {
	border-color: #93c5fd;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(29, 78, 216, 0.12);
}

.product-thumb-btn.active {
	border-color: #1d4ed8;
	background: #ffffff;
	transform: scale(1.02);
	box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2), 0 4px 12px rgba(29, 78, 216, 0.15);
}

.thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.thumb-video-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.65);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Purchase Summary Column */
.product-summary-col {
	display: flex;
	flex-direction: column;
}

.product-brand-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.product-brand-tag {
	font-size: 19px;
	letter-spacing: -0.02em;
}

.brand-text-red {
	color: #e11d48;
	font-weight: 900;
}

.brand-text-dark {
	color: #0f172a;
	font-weight: 800;
}

.brand-sub-badge {
	font-size: 12px;
	font-weight: 600;
	color: #64748b;
	background: #f1f5f9;
	padding: 2px 8px;
	border-radius: 4px;
}

.product-single-title {
	font-size: 34px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px 0;
	line-height: 1.22;
	letter-spacing: -0.02em;
}

.product-attributes-sub {
	font-size: 15px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 14px;
}

.product-lead-desc {
	font-size: 15.5px;
	line-height: 1.62;
	color: #334155;
	margin-bottom: 22px;
}

.product-lead-desc p {
	margin: 0;
}

/* 6-Point Bullet Checklist */
.product-check-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 11px;
	list-style: none;
	margin: 0 0 26px 0;
	padding: 0;
}

.product-check-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14.5px;
	font-weight: 550;
	color: #1e293b;
}

.check-icon-bubble {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #1d4ed8;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.product-check-item:hover .check-icon-bubble {
	transform: scale(1.12);
}

/* Action Buttons Row — 100% Single-Line Non-Wrapping */
.product-action-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: nowrap;
}

.btn-product-primary-quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--navy-900, #041c3b);
	color: #ffffff !important;
	height: 52px;
	padding: 0 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 14px rgba(4, 28, 59, 0.2);
}

.btn-product-primary-quote:hover {
	background: var(--cyan-500, #00a2e8);
	box-shadow: 0 8px 24px rgba(0, 162, 232, 0.35);
	transform: translateY(-2px);
}

.btn-product-primary-quote .btn-arrow-icon {
	transition: transform 0.25s ease;
	width: 14px;
	height: 14px;
}

.btn-product-primary-quote:hover .btn-arrow-icon {
	transform: translateX(4px);
}

.btn-product-speak-team {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	color: var(--navy-900, #041c3b) !important;
	height: 52px;
	padding: 0 26px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-product-speak-team:hover {
	background: #f0f9fd;
	border-color: var(--cyan-500, #00a2e8);
	color: var(--cyan-500, #00a2e8) !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 162, 232, 0.15);
}

.btn-product-speak-team .btn-phone-icon {
	transition: transform 0.25s ease;
}

.btn-product-speak-team:hover .btn-phone-icon {
	transform: scale(1.15);
}

/* Trust Badges — strictly in 1 single row */
.product-trust-badges {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px 18px;
	align-items: center;
}

.trust-badge-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.trust-badge-icon {
	color: var(--cyan-500, #00a2e8);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: #f0f9fd;
	border-radius: 8px;
	border: 1px solid #bae6fd;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.trust-badge-item:hover .trust-badge-icon {
	transform: scale(1.08);
	background: #e0f2fe;
	border-color: #7dd3fc;
}

.trust-badge-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.trust-badge-title {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	color: #64748b;
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.25;
}

.trust-badge-val {
	font-size: 13.5px;
	font-weight: 750;
	color: #0f172a;
	white-space: nowrap;
	line-height: 1.25;
	margin-top: 2px;
}

/* ================= Interactive Tabs System ================= */
.product-tabs-wrapper {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
	margin-bottom: 60px;
}

.product-tabs-nav {
	display: flex;
	gap: 32px;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 32px;
	overflow-x: auto;
}

.product-tabs-nav .tab-btn {
	background: none;
	border: none;
	padding: 12px 0 16px 0;
	font-size: 16px;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	position: relative;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.product-tabs-nav .tab-btn:hover {
	color: #0f172a;
}

.product-tabs-nav .tab-btn.active {
	color: #1d4ed8;
	font-weight: 750;
}

.product-tabs-nav .tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 3px;
	background: #1d4ed8;
	border-radius: 3px 3px 0 0;
}

.product-tab-panel {
	display: none;
}

.product-tab-panel.active {
	display: block;
	animation: productTabFade 0.25s ease-out;
}

@keyframes productTabFade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.tab-panel-heading {
	font-size: 24px;
	font-weight: 750;
	color: #0f172a;
	margin: 0 0 12px 0;
	letter-spacing: -0.01em;
}

.tab-lead-paragraph {
	font-size: 15.5px;
	line-height: 1.65;
	color: #475569;
	margin: 0 0 28px 0;
}

/* Overview: Stats + Showcase Grid */
.overview-stats-showcase-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 28px;
	margin-bottom: 44px;
}

.stat-feature-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.stat-feature-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-feature-card:hover {
	transform: translateY(-3px);
	border-color: #bfdbfe;
	box-shadow: 0 8px 20px rgba(29, 78, 216, 0.08);
}

.stat-card-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #eff6ff;
	color: #1d4ed8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.stat-feature-card:hover .stat-card-icon-wrap {
	transform: scale(1.1);
	background: #dbeafe;
}

.stat-card-val {
	font-size: 19px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 3px;
}

.stat-card-label {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

/* Visual Feature Showcase Banner */
.overview-showcase-banner {
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 220px;
	display: flex;
	align-items: flex-end;
	padding: 32px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-showcase-banner:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.showcase-banner-accent {
	display: block;
	width: 38px;
	height: 3px;
	background: #06b6d4;
	border-radius: 2px;
	margin-bottom: 12px;
}

.showcase-banner-quote {
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	line-height: 1.25;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* "Ideal For" Section */
.ideal-for-section {
	margin-bottom: 40px;
}

.ideal-for-heading {
	font-size: 22px;
	font-weight: 750;
	color: #0f172a;
	margin: 0 0 6px 0;
}

.ideal-for-subtitle {
	font-size: 15px;
	color: #64748b;
	margin: 0 0 22px 0;
}

.ideal-for-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ideal-app-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.ideal-app-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
	border-color: #cbd5e1;
}

.ideal-app-media {
	height: 150px;
	overflow: hidden;
}

.ideal-app-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ideal-app-card:hover .ideal-app-img {
	transform: scale(1.06);
}

.ideal-app-body {
	padding: 18px 16px;
}

.ideal-app-title {
	font-size: 16px;
	font-weight: 750;
	color: #0f172a;
	margin: 0 0 6px 0;
}

.ideal-app-desc {
	font-size: 13px;
	line-height: 1.5;
	color: #64748b;
	margin: 0;
}

/* Mid-Page Consultation Advice Bar */
.consultation-advice-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: #f0f7ff;
	border: 1px solid #bfdbfe;
	border-radius: 16px;
	padding: 24px 30px;
	margin-bottom: 40px;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.consultation-advice-bar:hover {
	box-shadow: 0 8px 24px rgba(29, 78, 216, 0.08);
	border-color: #93c5fd;
}

.ideal-app-media {
	height: 140px;
	overflow: hidden;
}

.ideal-app-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ideal-app-card:hover .ideal-app-img {
	transform: scale(1.04);
}

.ideal-app-body {
	padding: 16px;
}

.ideal-app-title {
	font-size: 15px;
	font-weight: 750;
	color: #0f172a;
	margin: 0 0 6px 0;
}

.ideal-app-desc {
	font-size: 12.5px;
	line-height: 1.5;
	color: #64748b;
	margin: 0;
}

/* Mid-Page Consultation Advice Bar */
.consultation-advice-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: #f0f7ff;
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	padding: 22px 28px;
}

.advice-bar-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.advice-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1d4ed8;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.advice-heading {
	font-size: 16px;
	font-weight: 750;
	color: #0f172a;
	display: block;
	margin-bottom: 3px;
}

.advice-subtext {
	font-size: 13.5px;
	color: #475569;
	margin: 0;
}

.btn-expert-advice {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1d4ed8;
	color: #ffffff !important;
	padding: 11px 22px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.btn-expert-advice:hover {
	background: #1e40af;
	transform: translateY(-1px);
}

/* Specifications Tab Table */
.tab-specs-lead {
	font-size: 14.5px;
	color: #64748b;
	margin: 0 0 20px 0;
}

.specs-table-container {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}

.product-specs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.product-specs-table tr {
	border-bottom: 1px solid #e2e8f0;
}

.product-specs-table tr:last-child {
	border-bottom: none;
}

.product-specs-table tr:nth-child(even) {
	background: #f8fafc;
}

.product-specs-table th {
	text-align: left;
	padding: 14px 20px;
	font-weight: 700;
	color: #0f172a;
	width: 34%;
	background: #f1f5f9;
	border-right: 1px solid #e2e8f0;
}

.product-specs-table td {
	padding: 14px 20px;
	color: #334155;
}

/* Key Features Tab */
.key-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.key-feature-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 22px;
}

.feature-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.feature-dot-accent {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1d4ed8;
	display: inline-block;
}

.feature-card-title {
	font-size: 16px;
	font-weight: 750;
	color: #0f172a;
	margin: 0;
}

.feature-card-desc {
	font-size: 13.5px;
	line-height: 1.6;
	color: #475569;
	margin: 0;
}

/* Downloads Tab */
.downloads-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.download-card-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.download-card-item:hover {
	border-color: #cbd5e1;
	background: #ffffff;
}

.download-item-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.download-file-icon {
	color: #e11d48;
}

.download-info {
	display: flex;
	flex-direction: column;
}

.download-name {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
}

.download-format {
	font-size: 12.5px;
	color: #64748b;
}

.btn-download-file {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	color: #334155 !important;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 650;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-download-file:hover {
	border-color: #1d4ed8;
	color: #1d4ed8 !important;
}

/* Related Products Section */
.overview-related-products-section {
	margin-top: 36px;
	padding-top: 6px;
}

/* ================= Dedicated Related Products Sliding Carousel ================= */
.single-related-slider-section {
	margin-top: 24px;
	margin-bottom: 72px;
}

.related-slider-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.related-slider-head-left {
	max-width: 680px;
}

.related-slider-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.related-slider-eyebrow .eyebrow-line {
	width: 28px;
	height: 2.5px;
	background: var(--cyan-500, #00a2e8);
	border-radius: 2px;
	flex-shrink: 0;
}

.related-slider-eyebrow .eyebrow-text {
	font-size: 12px;
	font-weight: 800;
	color: var(--cyan-500, #00a2e8);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.related-slider-title {
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 800;
	color: var(--navy-heading, #07152b);
	margin: 0 0 8px 0;
	letter-spacing: -0.02em;
	line-height: 1.22;
	font-family: var(--font-primary);
}

.related-slider-title .highlight-cyan-gradient {
	background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.related-slider-subtitle {
	font-size: 15px;
	line-height: 1.55;
	color: var(--slate-600, #55687d);
	margin: 0;
}

.related-slider-head-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.related-slider-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.slider-arrow-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	color: var(--navy-900, #041c3b);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 8px rgba(4, 28, 59, 0.05);
}

.slider-arrow-btn:hover:not(:disabled) {
	background: var(--cyan-500, #00a2e8);
	color: #ffffff;
	border-color: var(--cyan-500, #00a2e8);
	transform: scale(1.08);
	box-shadow: 0 6px 18px rgba(0, 162, 232, 0.35);
}

.btn-related-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 750;
	color: var(--navy-900, #041c3b);
	background: #ffffff;
	padding: 11px 20px;
	border-radius: 8px;
	text-decoration: none;
	border: 1.5px solid #cbd5e1;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}

.btn-related-view-all:hover {
	border-color: var(--cyan-500, #00a2e8);
	color: var(--cyan-500, #00a2e8);
	background: #f0f9fd;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.15);
}

/* Sliding Viewport & Flex Track with Safe Mouse Grab */
.related-slider-viewport {
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 16px 8px 36px 8px;
	margin: -16px -8px 0 -8px;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.related-slider-viewport::-webkit-scrollbar {
	display: none;
}

.related-slider-viewport.is-dragging {
	cursor: grabbing !important;
	scroll-behavior: auto !important;
	scroll-snap-type: none !important;
}

.related-slider-viewport.is-dragging * {
	cursor: grabbing !important;
	user-select: none !important;
	-webkit-user-select: none !important;
}

.related-slider-track {
	display: flex;
	gap: 24px;
}

/* Related Slide Card */
.related-slider-card {
	flex: 0 0 calc((100% - (3 * 24px)) / 4);
	min-width: 270px;
	background: #ffffff;
	border: 1px solid #e8eef5;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	scroll-snap-align: start;
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
	position: relative;
	box-shadow: 0 4px 18px rgba(4, 28, 59, 0.04);
	user-select: none;
	-webkit-user-select: none;
}

.related-slider-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 162, 232, 0.45);
	box-shadow: 0 14px 32px rgba(0, 162, 232, 0.12), 0 4px 12px rgba(4, 28, 59, 0.04);
}

.related-card-media-box {
	height: 200px;
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #f1f5f9;
}

.related-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10px;
	font-weight: 800;
	color: #008bcc;
	background: #f0f9fd;
	border: 1px solid #bae6fd;
	padding: 3px 9px;
	border-radius: 6px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	z-index: 2;
}

.related-card-photo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-slider-card:hover .related-card-photo {
	transform: scale(1.08);
}

.related-card-info {
	padding: 20px 18px 18px 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.related-card-brand-tag {
	font-size: 10px;
	font-weight: 800;
	color: #64748b;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.related-card-title {
	font-size: 16px;
	font-weight: 750;
	color: var(--navy-heading, #07152b);
	margin: 0 0 8px 0;
	line-height: 1.35;
	min-height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: var(--font-primary);
	transition: color 0.2s ease;
}

.related-slider-card:hover .related-card-title {
	color: #008bcc;
}

.related-card-subtext {
	font-size: 12.5px;
	color: var(--slate-600, #55687d);
	font-weight: 500;
	margin: 0 0 16px 0;
	line-height: 1.45;
	flex-grow: 1;
}

.related-card-footer {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
}

.btn-related-card-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 9px 14px;
	background: #f0f9fd;
	border: 1px solid #bae6fd;
	border-radius: 8px;
	color: #008bcc;
	font-size: 12.5px;
	font-weight: 750;
	transition: all 0.25s ease;
}

.btn-related-card-action svg {
	transition: transform 0.25s ease;
}

.related-slider-card:hover .btn-related-card-action {
	background: var(--cyan-500, #00a2e8);
	color: #ffffff;
	border-color: var(--cyan-500, #00a2e8);
	box-shadow: 0 4px 12px rgba(0, 162, 232, 0.25);
}

.related-slider-card:hover .btn-related-card-action svg {
	transform: translateX(4px);
}

.single-product-main .btn-arrow-icon,
.single-product-main .related-arrow-icon,
.single-product-main .arrow-link,
.single-product-main .related-learn-more svg,
.single-product-sidebar .btn-arrow-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
	transition: transform 0.2s ease;
}

.btn:hover .btn-arrow-icon,
.related-learn-more:hover svg,
.related-learn-more:hover .arrow-link,
.view-all-products-link:hover .related-arrow-icon {
	transform: translateX(3px);
}

/* ================= Lightbox Modal ================= */
.product-lightbox-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.product-lightbox-modal.is-open {
	display: flex;
}

.lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(8px);
}

.lightbox-dialog {
	position: relative;
	max-width: 85vw;
	max-height: 85vh;
	z-index: 2;
	background: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-close-btn {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #1d4ed8;
	color: #ffffff;
	border: 2px solid #ffffff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-image-wrap {
	max-width: 80vw;
	max-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 75vh;
	object-fit: contain;
}

.lightbox-caption {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #475569;
}

/* ================= Mobile & Responsive Styles ================= */
@media (max-width: 1080px) {
	.single-product-layout-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.single-product-sidebar,
	.single-product-sidebar-col {
		display: none; /* Collapsed on mobile/tablet to give full focus to product */
	}

	.product-hero-stage {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.product-gallery-col,
	.product-summary-col {
		min-width: 0;
		width: 100%;
		max-width: 100%;
	}

	.product-main-media-wrap {
		height: auto;
		aspect-ratio: 4 / 3;
		max-width: 100%;
	}

	.overview-stats-showcase-grid {
		grid-template-columns: 1fr;
	}

	.ideal-for-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.related-products-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.product-single-title {
		font-size: 26px;
	}

	.product-thumbs-strip {
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		max-width: 100%;
		padding-bottom: 6px;
	}

	.product-thumbs-strip::-webkit-scrollbar {
		display: none;
	}

	.product-thumb-btn {
		flex-shrink: 0;
	}

	.product-action-buttons {
		display: flex;
		align-items: center;
		gap: 14px;
		flex-wrap: wrap;
		margin-bottom: 24px;
	}

	.btn-product-primary-quote,
	.btn-product-speak-team {
		white-space: nowrap;
		flex-shrink: 0;
	}

	.product-trust-badges {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 10px;
		padding: 14px 12px;
	}

	.trust-badge-title {
		font-size: 10px;
	}

	.trust-badge-val {
		font-size: 12.5px;
	}

	.consultation-advice-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn-expert-advice {
		width: 100%;
		justify-content: center;
	}

	.key-features-grid {
		grid-template-columns: 1fr;
	}

	.product-tabs-wrapper {
		padding: 20px 16px;
	}

	.product-tabs-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 20px;
		padding-bottom: 6px;
	}

	.product-tabs-nav::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		flex-shrink: 0;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.single-product-breadcrumb-bar {
		padding: 12px 0;
	}

	.product-page-container {
		padding: 0 16px;
	}

	.product-main-media-wrap {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.product-main-img-box {
		padding: 0;
	}

	.product-main-img {
		max-height: none;
	}

	.product-thumb-btn {
		width: 100%;
		height: auto;
	}

	.product-brand-row {
		flex-wrap: wrap;
		gap: 8px;
	}

	.product-single-title {
		font-size: 22px;
	}

	.product-attributes-sub {
		font-size: 13px;
	}

	.product-check-item {
		font-size: 13.5px;
	}

	.stat-feature-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.stat-feature-card {
		padding: 12px 8px;
	}

	.stat-card-val {
		font-size: 15px;
	}

	.stat-card-label {
		font-size: 11px;
	}

	.product-action-buttons {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.btn-product-primary-quote,
	.btn-product-speak-team {
		width: 100%;
		justify-content: center;
		white-space: nowrap;
	}

	.product-trust-badges {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 12px;
		padding: 12px 14px;
	}

	.product-trust-badges::-webkit-scrollbar {
		display: none;
	}

	.trust-badge-item {
		flex-shrink: 0;
	}

	.ideal-for-cards-grid {
		grid-template-columns: 1fr;
	}
}

/* Related Products Slider Responsive Rules */
@media (max-width: 1200px) {
	.related-slider-card {
		flex: 0 0 calc((100% - (2 * 20px)) / 3);
	}
	.related-slider-track {
		gap: 20px;
	}
}

@media (max-width: 860px) {
	.related-slider-card {
		flex: 0 0 calc((100% - 16px) / 2);
	}
	.related-slider-track {
		gap: 16px;
	}
	.related-slider-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	.related-slider-head-right {
		width: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 560px) {
	.related-slider-card {
		flex: 0 0 84%;
		min-width: 250px;
	}
	.related-slider-title {
		font-size: 22px;
	}
	.related-card-media-box {
		height: 160px;
	}
}

/* ==========================================================================
   CROSS-LINKED SERVICES & HARDWARE PRODUCTS STYLES
   ========================================================================== */

/* 1. Category-Connected Installation Service Banner on Products Catalogue */
.category-service-connected-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 15, 29, 0.98) 100%);
	border: 1px solid rgba(0, 229, 255, 0.25);
	border-radius: 14px;
	padding: 22px 28px;
	margin-bottom: 26px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.category-service-connected-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00e5ff 35%, #3b82f6 75%, transparent);
}

.cat-svc-banner-content {
	flex: 1 1 auto;
	min-width: 0;
}

.cat-svc-badge-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.cat-svc-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #00e5ff;
	box-shadow: 0 0 10px #00e5ff;
	animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
	0%, 100% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.3);
		opacity: 1;
	}
}

.cat-svc-badge {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #38bdf8;
	text-transform: uppercase;
}

.cat-svc-title {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 0 6px 0;
	letter-spacing: -0.01em;
	font-family: var(--font-primary);
}

.cat-svc-desc {
	font-size: 13.5px;
	line-height: 1.5;
	color: #94a3b8;
	margin: 0;
	max-width: 720px;
}

.cat-svc-banner-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.btn-cat-svc-view {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 18px;
	border: 1.5px solid rgba(56, 189, 248, 0.35);
	background: rgba(56, 189, 248, 0.08);
	color: #38bdf8;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.btn-cat-svc-view:hover {
	background: rgba(56, 189, 248, 0.2);
	border-color: #38bdf8;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(56, 189, 248, 0.25);
}

.btn-cat-svc-quote {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 20px;
	border: none;
	background: linear-gradient(135deg, #00a2e8 0%, #0077b6 100%);
	color: #ffffff;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.3);
}

.btn-cat-svc-quote:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 162, 232, 0.45);
}

@media (max-width: 992px) {
	.category-service-connected-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
		gap: 16px;
	}
	.cat-svc-banner-actions {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	.category-service-connected-banner {
		padding: 16px;
	}
	.cat-svc-title {
		font-size: 16px;
	}
	.cat-svc-desc {
		font-size: 12.5px;
	}
	.cat-svc-banner-actions {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}
	.btn-cat-svc-view,
	.btn-cat-svc-quote {
		width: 100%;
		justify-content: center;
	}
}


/* 2. Connected Installation Service Card on Product Details Page */
.single-connected-service-wrap {
	margin: 36px 0 20px 0;
	width: 100%;
}

.connected-service-card {
	background: #021226;
	border: 1px solid rgba(56, 189, 248, 0.22);
	border-radius: 20px;
	padding: 40px 44px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(2, 18, 38, 0.28);
}

.connected-service-glow-edge {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.5px;
	background: linear-gradient(90deg, transparent, #00a2e8 30%, #38bdf8 70%, transparent);
}

.connected-service-grid {
	display: grid;
	grid-template-columns: 1.18fr 0.82fr;
	gap: 40px;
	align-items: center;
}

.connected-service-badge-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.connected-service-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.connected-service-badge .eyebrow-line {
	width: 28px;
	height: 2.5px;
	background: #00a2e8;
	border-radius: 2px;
	flex-shrink: 0;
}

.connected-service-badge .eyebrow-text {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #38bdf8;
	text-transform: uppercase;
}

.connected-service-lic-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(34, 197, 94, 0.14);
	border: 1px solid rgba(34, 197, 94, 0.35);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 750;
	color: #4ade80;
}

.connected-service-title {
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 900;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 14px 0;
	font-family: var(--font-primary);
	letter-spacing: -0.02em;
}

.connected-service-title .highlight-cyan {
	color: #00d2ff;
	background: linear-gradient(135deg, #00d2ff 0%, #00a2e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.connected-service-desc {
	font-size: 14.5px;
	line-height: 1.62;
	color: #94a3b8;
	margin: 0 0 24px 0;
}

.connected-service-checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 18px;
	margin-bottom: 28px;
}

.connected-check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	font-weight: 550;
	color: #e2e8f0;
	line-height: 1.4;
}

.check-icon-circle {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(0, 162, 232, 0.18);
	border: 1px solid #38bdf8;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #38bdf8;
	flex-shrink: 0;
	margin-top: 1px;
}

.connected-service-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-connected-quote-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #00a2e8 0%, #0077b6 100%);
	color: #ffffff;
	padding: 13px 26px;
	border-radius: 8px;
	font-weight: 750;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 162, 232, 0.35);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}

.btn-connected-quote-action:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 162, 232, 0.5);
	color: #ffffff;
}

.btn-connected-details-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 750;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}

.btn-connected-details-link:hover {
	border-color: #38bdf8;
	color: #38bdf8;
	background: rgba(56, 189, 248, 0.08);
	transform: translateY(-2px);
}

.connected-service-media-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 330px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.connected-service-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.4s ease;
	display: block;
}

.connected-service-media-card:hover .connected-service-img {
	transform: scale(1.04);
}

.connected-media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2, 18, 38, 0.9) 0%, rgba(2, 18, 38, 0.2) 55%, transparent 100%);
}

.floating-tech-badge {
	position: absolute;
	background: rgba(2, 18, 38, 0.88);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: 10px;
	padding: 10px 14px;
	color: #ffffff;
	z-index: 2;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-tech-badge.top-right {
	top: 14px;
	right: 14px;
	text-align: right;
}

.badge-icon-star {
	color: #f59e0b;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 2px;
}

.badge-text-val {
	font-size: 11.5px;
	font-weight: 750;
	color: #f8fafc;
}

.floating-tech-badge.bottom-left {
	bottom: 14px;
	left: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.badge-tech-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 162, 232, 0.18);
	border: 1px solid #38bdf8;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #38bdf8;
	flex-shrink: 0;
}

.badge-tech-meta {
	display: flex;
	flex-direction: column;
}

.badge-tech-meta strong {
	font-size: 12px;
	font-weight: 750;
	color: #ffffff;
}

.badge-tech-meta span {
	font-size: 11px;
	color: #94a3b8;
}

@media (max-width: 1024px) {
	.connected-service-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.connected-service-media-card {
		height: 260px;
	}
}

@media (max-width: 640px) {
	.connected-service-card {
		padding: 24px 20px;
		border-radius: 14px;
	}
	.connected-service-title {
		font-size: 20px;
	}
	.connected-service-desc {
		font-size: 13.5px;
	}
	.connected-service-checklist {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.connected-service-actions {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}
	.btn-connected-quote-action,
	.btn-connected-details-link {
		width: 100%;
		justify-content: center;
	}
}


/* 3. Service Hardware & Equipment Grid on Single Service Pages (FAQ & Services Harmonized) */
.service-hardware-section {
	padding: 88px 0 96px;
	background: #ffffff !important;
	border-top: 1px solid #edf2f7;
	border-bottom: 1px solid #edf2f7;
	position: relative;
	scroll-margin-top: 160px; /* Clears sticky header and sticky subnav */
	overflow: hidden;
}

.service-hardware-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1000px;
	height: 380px;
	background: radial-gradient(50% 50% at 50% 0%, rgba(0, 162, 232, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	z-index: 0;
}

.service-hardware-container {
	position: relative;
	z-index: 1;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

.service-hardware-section .svc-faq-header {
	margin-bottom: 44px;
	text-align: left;
}

.service-hardware-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.service-hardware-card {
	background: #ffffff !important;
	border: 1.5px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	text-decoration: none;
	position: relative;
	box-shadow: 0 4px 20px rgba(4, 28, 59, 0.05);
}

.service-hardware-card:hover {
	border-color: rgba(0, 162, 232, 0.6);
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(0, 162, 232, 0.12), 0 4px 14px rgba(4, 28, 59, 0.04);
}

.hardware-card-media {
	height: 195px;
	background: #f8fafc;
	border-bottom: 1px solid #edf2f7;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 18px;
	overflow: hidden;
}

.hardware-card-img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.service-hardware-card:hover .hardware-card-img {
	transform: scale(1.06);
}

.hardware-card-cat-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #f0f9fd;
	color: #008bcc;
	border: 1px solid #bae6fd;
	border-radius: 6px;
	padding: 4px 9px;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hardware-card-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.hardware-brand-tag {
	font-size: 10.5px;
	font-weight: 800;
	color: #00a2e8;
	letter-spacing: 0.08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.hardware-card-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--navy-heading, #041c3b);
	line-height: 1.35;
	margin: 0 0 8px 0;
	min-height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
	transition: color 0.2s ease;
}

.service-hardware-card:hover .hardware-card-title {
	color: #008bcc;
}

.hardware-card-sub {
	font-size: 13px;
	color: var(--slate-600, #55687d);
	line-height: 1.45;
	margin: 0 0 16px 0;
	flex-grow: 1;
}

.hardware-card-footer {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #edf2f7;
}

.btn-hardware-view {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 15px;
	background: #f0f9fd;
	border: 1.5px solid #d0ebff;
	border-radius: 8px;
	color: var(--navy-900, #041c3b);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
	transition: all 0.22s ease;
}

.btn-hardware-view svg {
	transition: transform 0.2s ease;
}

.service-hardware-card:hover .btn-hardware-view,
.btn-hardware-view:hover {
	background: var(--navy-900, #041c3b);
	color: #ffffff;
	border-color: var(--navy-900, #041c3b);
	box-shadow: 0 4px 12px rgba(4, 28, 59, 0.15);
}

.service-hardware-card:hover .btn-hardware-view svg,
.btn-hardware-view:hover svg {
	transform: translateX(4px);
}

.service-hardware-bottom-box {
	background: linear-gradient(135deg, #041c3b 0%, #072349 100%);
	border: 1px solid rgba(0, 162, 232, 0.3);
	border-radius: 16px;
	padding: 26px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-shadow: 0 12px 32px rgba(4, 28, 59, 0.12);
}

.hardware-bottom-copy {
	display: flex;
	align-items: center;
	gap: 18px;
}

.hardware-bottom-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(0, 162, 232, 0.15);
	border: 1px solid rgba(0, 162, 232, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00d2ff;
	flex-shrink: 0;
}

.hardware-bottom-text h4 {
	font-size: 17px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 5px 0;
	font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
}

.hardware-bottom-text p {
	font-size: 14px;
	color: #cbd5e1;
	margin: 0;
	line-height: 1.5;
}

.hardware-bottom-ctas {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.btn-hardware-call {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	color: #ffffff;
	font-weight: 750;
	font-size: 13.5px;
	padding: 11px 18px;
	text-decoration: none;
	font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-hardware-call:hover {
	background: rgba(0, 162, 232, 0.15);
	color: #38bdf8;
	border-color: #38bdf8;
	transform: translateY(-2px);
}

.btn-hardware-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #00a2e8 0%, #0077b6 100%);
	border: 1px solid #38bdf8;
	border-radius: 10px;
	color: #ffffff;
	font-weight: 800;
	font-size: 13.5px;
	padding: 11px 22px;
	text-decoration: none;
	font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
	transition: all 0.2s ease;
	box-shadow: 0 4px 16px rgba(0, 162, 232, 0.35);
	white-space: nowrap;
}

.btn-hardware-all:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 162, 232, 0.5);
	color: #ffffff;
}

@media (max-width: 1200px) {
	.service-hardware-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 860px) {
	.service-hardware-section {
		padding: 60px 0;
	}
	.service-hardware-bottom-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px;
		gap: 20px;
	}
	.hardware-bottom-ctas {
		width: 100%;
		flex-wrap: wrap;
	}
}

@media (max-width: 560px) {
	.service-hardware-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.hardware-bottom-ctas {
		flex-direction: column;
		width: 100%;
	}
	.btn-hardware-call,
	.btn-hardware-all {
		width: 100%;
		justify-content: center;
	}
}



/* ==========================================================================
   4. WA CENTRAL SECURITY — BLOG & SECURITY INSIGHTS SYSTEM
   ========================================================================== */

/* --- Container & Breadcrumbs --- */
.blog-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	width: 100%;
}

.blog-breadcrumb-bar {
	background: #f8fafc;
	border-bottom: 1px solid #edf2f7;
	padding: 14px 0;
	font-size: 13px;
	color: #64748b;
}

/* --- Hero Section (Services & Products Panoramic Dark Theme) --- */
.blog-hero-section {
	position: relative;
	background-color: #041322;
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: #ffffff;
}

.blog-hero-glow {
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 1100px;
	height: 480px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(0, 162, 232, 0.22) 0%, rgba(4, 28, 59, 0) 100%);
	pointer-events: none;
	z-index: 1;
}

.blog-hero-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.5;
	pointer-events: none;
	z-index: 1;
}

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

.blog-hero-content {
	max-width: 860px;
}

.blog-hero-eyebrow {
	margin-bottom: 18px;
}

.blog-hero-eyebrow .eyebrow-line {
	width: 36px;
	height: 3.5px;
	background: #00a2e8;
	border-radius: 2px;
}

.blog-hero-eyebrow .eyebrow-text {
	font-size: 13.5px;
	font-weight: 800;
	color: #00a2e8;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.blog-hero-title {
	font-size: clamp(32px, 3.8vw, 48px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	letter-spacing: -0.026em;
	margin: 0 0 18px 0;
	font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
}

.blog-hero-title .highlight-cyan-gradient {
	background: linear-gradient(135deg, #38bdf8 0%, #00a2e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.blog-hero-sub {
	font-size: 16.5px;
	line-height: 1.7;
	color: #cbd5e1;
	margin: 0 0 28px 0;
	max-width: 75ch;
}

.blog-hero-badges-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.blog-hero-badge-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	color: #e2e8f0;
}

.blog-hero-badge-item .badge-icon-wrap {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #38bdf8;
}

.blog-hero-badge-item svg {
	width: 16px;
	height: 16px;
}

/* --- Main Blog Content Stage --- */
.blog-main-content {
	background: #f8fafc;
	padding: 50px 0 80px 0;
	position: relative;
}

/* --- Toolbar: Categories, Search, Sort --- */
.blog-toolbar {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 20px;
	padding: 20px 24px;
	margin-bottom: 40px;
	box-shadow: 0 4px 20px rgba(4, 28, 59, 0.04);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.blog-category-nav-outer {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	gap: 8px;
}

.blog-category-nav-wrap {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none !important; /* Firefox */
	-ms-overflow-style: none !important; /* IE & Edge */
	padding: 4px 2px;
	cursor: grab;
	user-select: none;
	scroll-behavior: smooth;
	flex: 1;
}

.blog-category-nav-wrap::-webkit-scrollbar {
	display: none !important; /* Chrome, Safari, Opera */
	width: 0 !important;
	height: 0 !important;
}

.blog-category-nav-wrap.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.blog-category-nav {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.cat-nav-arrow {
	display: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	color: #041c3b;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(4, 28, 59, 0.08);
	transition: all 0.2s ease;
	flex-shrink: 0;
	z-index: 3;
	padding: 0;
}

.cat-nav-arrow:hover {
	background: #041c3b;
	color: #ffffff;
	border-color: #041c3b;
	transform: scale(1.08);
	box-shadow: 0 4px 14px rgba(4, 28, 59, 0.16);
}

.cat-nav-arrow svg {
	width: 16px;
	height: 16px;
}

.cat-nav-arrow.is-disabled {
	opacity: 0.25;
	cursor: not-allowed;
	pointer-events: none;
	transform: none;
}


.blog-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 30px;
	color: #475569;
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.22s ease;
}

.blog-cat-pill:hover {
	background: #e2e8f0;
	color: #041c3b;
}

.blog-cat-pill.active {
	background: #041c3b;
	color: #ffffff;
	border-color: #041c3b;
	box-shadow: 0 4px 14px rgba(4, 28, 59, 0.18);
}

.cat-pill-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	background: rgba(0, 162, 232, 0.14);
	color: #008bcc;
	font-size: 11px;
	font-weight: 800;
}

.blog-cat-pill.active .cat-pill-count {
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
}

.blog-controls-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid #f1f5f9;
	padding-top: 16px;
}

.blog-search-form {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	max-width: 480px;
}

.blog-search-input-wrap {
	position: relative;
	flex: 1;
}

.blog-search-input-wrap .search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	color: #94a3b8;
	pointer-events: none;
}

.blog-search-input {
	width: 100%;
	padding: 10px 38px 10px 42px;
	background: #f8fafc;
	border: 1.5px solid #cbd5e1;
	border-radius: 10px;
	font-size: 14px;
	color: #041c3b;
	outline: none;
	transition: all 0.2s ease;
	font-family: var(--font-primary);
}

.blog-search-input:focus {
	background: #ffffff;
	border-color: #00a2e8;
	box-shadow: 0 0 0 3px rgba(0, 162, 232, 0.15);
}

.search-clear-btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 18px;
	text-decoration: none;
	padding: 2px 6px;
}

.btn-blog-search {
	padding: 10px 18px;
	background: #041c3b;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-weight: 750;
	font-size: 13.5px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-blog-search:hover {
	background: #00a2e8;
}

.blog-sort-select {
	padding: 10px 16px;
	background: #f8fafc;
	border: 1.5px solid #cbd5e1;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 700;
	color: #041c3b;
	outline: none;
	cursor: pointer;
	font-family: var(--font-primary);
	transition: all 0.2s ease;
}

.blog-sort-select:focus {
	border-color: #00a2e8;
}

.blog-active-filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 18px;
	background: #f0f9fd;
	border: 1px solid #bae6fd;
	border-radius: 12px;
	margin-bottom: 28px;
	font-size: 14px;
	color: #0369a1;
	font-weight: 700;
}

.btn-clear-filters {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0284c7;
	text-decoration: none;
	font-size: 13px;
	padding: 4px 10px;
	background: #ffffff;
	border: 1px solid #bae6fd;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.btn-clear-filters:hover {
	background: #0284c7;
	color: #ffffff;
}

/* --- Featured Article Showcase Card --- */
.blog-featured-section {
	margin-bottom: 48px;
}

.featured-article-card {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(4, 28, 59, 0.06);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.featured-article-card:hover {
	border-color: rgba(0, 162, 232, 0.5);
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 162, 232, 0.12), 0 6px 16px rgba(4, 28, 59, 0.05);
}

.featured-card-grid {
	display: grid;
	grid-template-columns: 46% 54%;
	min-height: 380px;
}

.featured-media-col {
	position: relative;
	overflow: hidden;
	background: #041c3b;
}

.featured-media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.featured-article-card:hover .featured-media-img {
	transform: scale(1.05);
}

.featured-pill-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #041c3b;
	color: #38bdf8;
	border: 1px solid rgba(56, 189, 248, 0.4);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(4, 28, 59, 0.35);
}

.featured-pill-badge .badge-dot {
	width: 7px;
	height: 7px;
	background: #00d2ff;
	border-radius: 50%;
	box-shadow: 0 0 8px #00d2ff;
}

.featured-content-col {
	padding: 38px 42px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.featured-meta-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
	font-size: 13px;
	color: #64748b;
}

.blog-category-badge {
	display: inline-block;
	background: #f0f9fd;
	color: #008bcc;
	border: 1px solid #bae6fd;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.featured-card-title {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 800;
	color: #041c3b;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin: 0 0 12px 0;
	font-family: var(--font-primary);
}

.featured-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.featured-article-card:hover .featured-card-title a {
	color: #008bcc;
}

.featured-card-excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: #55687d;
	margin: 0 0 20px 0;
}

.featured-tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.tag-pill {
	display: inline-block;
	padding: 3px 9px;
	background: #f1f5f9;
	color: #475569;
	border-radius: 6px;
	font-size: 11.5px;
	font-weight: 700;
}

.btn-featured-read {
	align-self: flex-start;
}

/* --- 3-Column Articles Grid (Matches Home & Services Clean Cards) --- */
.blog-articles-grid,
.articles-section .articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
	margin-bottom: 50px;
}

.blog-articles-grid .article-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	transition: transform 0.35s ease;
	cursor: pointer;
}

.blog-articles-grid .article-image-wrapper {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	border: 1.5px solid #e2e8f0;
	box-shadow: 0 10px 28px -8px rgba(4, 28, 59, 0.1), 0 2px 6px rgba(4, 28, 59, 0.03);
}

.blog-articles-grid .article-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-articles-grid .article-card:hover .article-img {
	transform: scale(1.05);
}

.blog-articles-grid .article-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-articles-grid .article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 12.5px;
}

.blog-articles-grid .article-category {
	font-weight: 800;
	color: #00a2e8;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.blog-articles-grid .meta-divider {
	color: #cbd5e1;
	font-weight: 300;
}

.blog-articles-grid .article-date,
.blog-articles-grid .article-read-time {
	font-weight: 600;
	color: #64748b;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.blog-articles-grid .article-heading {
	font-size: 22px;
	font-weight: 850;
	line-height: 1.3;
	color: #041c3b;
	letter-spacing: -0.02em;
	margin: 0 0 12px 0;
	font-family: var(--font-primary);
}

.blog-articles-grid .article-heading a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.blog-articles-grid .article-card:hover .article-heading a,
.blog-articles-grid .article-heading a:hover {
	color: #00a2e8;
}

.blog-articles-grid .article-excerpt {
	font-size: 14.5px;
	line-height: 1.65;
	color: #64748b;
	margin: 0 0 18px 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-grow: 1;
}

.blog-articles-grid .article-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	font-weight: 750;
	color: #041c3b;
	text-decoration: none;
	padding-bottom: 4px;
	border-bottom: 2px solid #00a2e8;
	align-self: flex-start;
	margin-top: auto;
	transition: all 0.25s ease;
}

.blog-articles-grid .article-read-more svg {
	width: 14px;
	height: 14px;
	color: #00a2e8;
	transition: transform 0.25s ease;
}

.blog-articles-grid .article-card:hover .article-read-more,
.blog-articles-grid .article-read-more:hover {
	color: #00a2e8;
	border-bottom-color: #0077cc;
}

.blog-articles-grid .article-card:hover .article-read-more svg,
.blog-articles-grid .article-read-more:hover svg {
	transform: translateX(4px);
}

/* --- Pagination --- */
.blog-pagination-wrap {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.blog-pagination-wrap ul.page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	color: #041c3b;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.2s ease;
}

.blog-pagination-wrap .page-numbers:hover {
	background: #f0f9fd;
	border-color: #00a2e8;
	color: #008bcc;
}

.blog-pagination-wrap .page-numbers.current {
	background: #041c3b;
	border-color: #041c3b;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(4, 28, 59, 0.2);
}

.blog-empty-state {
	text-align: center;
	padding: 70px 20px;
	background: #ffffff;
	border: 1.5px dashed #cbd5e1;
	border-radius: 18px;
}

.blog-empty-state .empty-icon-wrap {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	background: #f0f9fd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00a2e8;
}

.blog-empty-state h3 {
	font-size: 20px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 8px 0;
}

.blog-empty-state p {
	color: #64748b;
	margin: 0 0 24px 0;
}

/* ==========================================================================
   5. SINGLE BLOG ARTICLE DETAILS STYLES (MATCHES SERVICES DETAILS)
   ========================================================================== */

.blog-single-hero-section {
	position: relative;
	min-height: auto;
	background-color: #041322;
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	padding: 58px 0 54px 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-single-hero-section .about-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.blog-single-hero-section .about-hero-content {
	max-width: 980px;
}

.blog-single-hero-section .about-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 18px;
}

.blog-single-hero-section .about-breadcrumb a {
	color: #cbd5e1;
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.blog-single-hero-section .about-breadcrumb a:hover {
	color: #38bdf8;
}

.blog-single-hero-section .breadcrumb-home-icon {
	width: 14px;
	height: 14px;
	color: #38bdf8;
}

.blog-single-hero-section .breadcrumb-separator {
	color: rgba(255, 255, 255, 0.3);
	font-size: 11px;
}

.blog-single-hero-section .breadcrumb-current {
	color: #38bdf8;
	font-weight: 700;
}

.blog-single-hero-section .about-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.blog-single-hero-section .about-hero-eyebrow .eyebrow-line {
	width: 36px;
	height: 3px;
	background: #00a2e8;
	border-radius: 2px;
}

.blog-single-hero-section .about-hero-eyebrow .eyebrow-text {
	font-size: 13.5px;
	font-weight: 800;
	color: #00a2e8;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.blog-single-hero-section .about-hero-title {
	font-size: clamp(30px, 3.8vw, 46px);
	font-weight: 850;
	line-height: 1.18;
	letter-spacing: -0.025em;
	color: #ffffff;
	margin: 0 0 16px 0;
	max-width: 960px;
	font-family: var(--font-primary);
	animation: none !important;
	opacity: 1 !important;
}

.blog-single-hero-section .about-hero-title .headline-peace,
.blog-single-hero-section .about-hero-title .highlight-cyan {
	background: linear-gradient(135deg, #00d2ff 0%, #00a2e8 50%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.blog-single-hero-sub,
.blog-single-hero-section .about-hero-sub {
	font-size: 16.5px;
	line-height: 1.65;
	color: #cbd5e1;
	max-width: 820px;
	margin: 0 0 22px 0;
	animation: none !important;
	opacity: 1 !important;
}

.blog-hero-meta-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 24px;
	max-width: 960px;
}

.blog-hero-meta-bar .hero-meta-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	font-weight: 700;
	color: #cbd5e1;
}

.blog-hero-meta-bar .hero-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.blog-hero-meta-bar .hero-meta-pill svg {
	color: #38bdf8;
}

.blog-hero-meta-bar .hero-meta-sep {
	color: rgba(255, 255, 255, 0.25);
}

.blog-hero-meta-bar .hero-meta-right {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.blog-hero-meta-bar .hero-share-label {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.blog-hero-meta-bar .hero-share-buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-hero-meta-bar .btn-share-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.blog-hero-meta-bar .btn-share-icon:hover {
	background: #00a2e8;
	color: #ffffff;
	border-color: #00a2e8;
	transform: translateY(-2px);
}

.blog-hero-actions,
.blog-single-hero-section .about-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 18px;
	animation: none !important;
	opacity: 1 !important;
}

/* --- Split Layout: Article Body & Sticky Sidebar --- */
.single-article-main-stage {
	background: #ffffff;
	padding: 56px 0 80px 0;
}

.single-article-layout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 56px;
	align-items: stretch;
}

.single-article-sidebar-col {
	position: relative;
	height: 100%;
}

/* Featured Media Graphic */
.single-article-featured-media {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 34px;
	border: 1.5px solid #e2e8f0;
	box-shadow: 0 10px 28px -8px rgba(4, 28, 59, 0.1), 0 2px 6px rgba(4, 28, 59, 0.03);
}

.single-article-featured-media .single-featured-img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

/* Article Entry Content Typography */
.article-entry-content {
	font-size: 17px;
	line-height: 1.8;
	color: #334155;
	font-family: var(--font-primary);
}

.article-entry-content p {
	margin-bottom: 24px;
}

.article-entry-content .lead-paragraph {
	font-size: 19px;
	line-height: 1.7;
	color: #1e293b;
	font-weight: 600;
	margin-bottom: 28px;
}

.article-entry-content h2 {
	font-size: clamp(23px, 2.5vw, 29px);
	font-weight: 800;
	color: #041c3b;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin: 44px 0 18px 0;
	padding-left: 18px;
	border-left: 4px solid #00a2e8;
	scroll-margin-top: 140px;
}

.article-entry-content h3 {
	font-size: 20px;
	font-weight: 750;
	color: #072349;
	margin: 32px 0 14px 0;
	scroll-margin-top: 140px;
}

/* Styled Callout Boxes */
.blog-callout {
	display: flex;
	gap: 18px;
	padding: 24px 28px;
	border-radius: 16px;
	margin: 32px 0;
	box-shadow: 0 4px 16px rgba(4, 28, 59, 0.03);
}

.blog-callout-tip {
	background: #f0f9fd;
	border: 1.5px solid #bae6fd;
}

.blog-callout-tip .callout-icon {
	color: #008bcc;
}

.blog-callout-warning {
	background: #fffbeb;
	border: 1.5px solid #fde68a;
}

.blog-callout-warning .callout-icon {
	color: #d97706;
}

.blog-callout-note {
	background: #f8fafc;
	border: 1.5px solid #cbd5e1;
}

.blog-callout-note .callout-icon {
	color: #041c3b;
}

.blog-callout .callout-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	margin-top: 2px;
}

.blog-callout .callout-body h4 {
	font-size: 16.5px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 6px 0;
}

.blog-callout .callout-body p {
	font-size: 14.5px;
	line-height: 1.6;
	color: #475569;
	margin: 0;
}

/* Custom Checkmark Lists */
.blog-checklist {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px 0;
}

.blog-checklist li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 14px;
	line-height: 1.65;
}

.blog-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
	background-color: #f0f9fd;
	border: 1.5px solid #00a2e8;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2300a2e8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.78 4.22a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0L2.72 8.78a.75.75 0 0 1 1.06-1.06L6 9.94l5.72-5.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
}

/* Comparison Tables */
.blog-comparison-table-wrap {
	overflow-x: auto;
	margin: 32px 0;
	border-radius: 14px;
	border: 1.5px solid #e2e8f0;
	box-shadow: 0 4px 14px rgba(4, 28, 59, 0.03);
}

.blog-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 14.5px;
}

.blog-table th {
	background: #041c3b;
	color: #ffffff;
	padding: 14px 18px;
	font-weight: 800;
	letter-spacing: 0.04em;
	font-size: 13.5px;
	text-transform: uppercase;
}

.blog-table td {
	padding: 14px 18px;
	border-bottom: 1px solid #edf2f7;
	color: #334155;
}

.blog-table tr:nth-child(even) td {
	background: #f8fafc;
}

/* Post Tags & Bottom Share Footer */
.single-article-tags-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 40px 0 28px 0;
	padding-top: 24px;
	border-top: 1px solid #edf2f7;
}

.tags-label {
	font-size: 13.5px;
	font-weight: 750;
	color: #64748b;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.article-tag-item {
	display: inline-block;
	padding: 5px 12px;
	background: #f1f5f9;
	color: #041c3b;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 750;
	text-decoration: none;
	transition: all 0.2s ease;
}

.article-tag-item:hover {
	background: #00a2e8;
	color: #ffffff;
	border-color: #00a2e8;
}

.single-article-share-footer {
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.share-footer-left h4 {
	font-size: 15.5px;
	font-weight: 800;
	color: #041c3b;
	margin: 0;
}

.share-footer-buttons {
	display: flex;
	gap: 10px;
}

.btn-share-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	color: #ffffff;
	transition: all 0.2s ease;
}

.share-li { background: #0077b5; }
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.btn-share-pill:hover { opacity: 0.9; transform: translateY(-1px); }

/* Prev / Next Article Navigation Cards */
.single-post-prev-next-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 32px;
}

.prev-next-card {
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	padding: 20px 22px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: all 0.22s ease;
}

.prev-next-card:hover {
	background: #ffffff;
	border-color: #00a2e8;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 162, 232, 0.1);
}

.nav-sub-label {
	font-size: 12px;
	font-weight: 800;
	color: #008bcc;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nav-post-title {
	font-size: 15px;
	font-weight: 800;
	color: #041c3b;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* --- Sticky Sidebar Widgets --- */
.sidebar-sticky-wrapper {
	position: -webkit-sticky;
	position: sticky;
	top: 105px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	z-index: 10;
	will-change: transform;
}

.sidebar-widget {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 4px 18px rgba(4, 28, 59, 0.03);
}

.sidebar-widget .widget-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.sidebar-widget .widget-icon {
	color: #00a2e8;
	width: 20px;
	height: 20px;
}

.sidebar-widget .widget-title {
	font-size: 16px;
	font-weight: 800;
	color: #041c3b;
	margin: 0;
	font-family: var(--font-primary);
}

/* TOC Widget */
.widget-toc .toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.toc-item.toc-level-3 {
	padding-left: 14px;
}

.toc-link {
	display: block;
	font-size: 13.5px;
	line-height: 1.45;
	color: #64748b;
	text-decoration: none;
	padding: 5px 8px;
	border-radius: 6px;
	border-left: 2.5px solid transparent;
	transition: all 0.2s ease;
}

.toc-link:hover {
	color: #008bcc;
	background: #f0f9fd;
}

.toc-link.active {
	color: #041c3b;
	font-weight: 800;
	border-left-color: #00a2e8;
	background: #f0f9fd;
}

/* Expert Help Widget */
.widget-expert-help {
	background: #041c3b;
	color: #ffffff;
	border-color: rgba(56, 189, 248, 0.3);
	box-shadow: 0 10px 28px rgba(4, 28, 59, 0.16);
}

.expert-help-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #38bdf8;
	margin-bottom: 10px;
}

.expert-help-badge .badge-dot {
	width: 6px;
	height: 6px;
	background: #00d2ff;
	border-radius: 50%;
	box-shadow: 0 0 6px #00d2ff;
}

.expert-help-title {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.expert-help-copy {
	font-size: 13.5px;
	line-height: 1.55;
	color: #cbd5e1;
	margin: 0 0 18px 0;
}

.btn-sidebar-call {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	background: linear-gradient(135deg, #00a2e8 0%, #0077b6 100%);
	border-radius: 12px;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.22s ease;
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.35);
}

.btn-sidebar-call:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 162, 232, 0.5);
	color: #ffffff;
}

.call-text {
	display: flex;
	flex-direction: column;
}

.call-label {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	opacity: 0.9;
}

.call-num {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.expert-help-lic {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: #94a3b8;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Connected Service Widget */
.widget-connected-service {
	background: #f0f9fd;
	border: 1.5px solid #bae6fd;
}

.connected-service-kicker {
	font-size: 10.5px;
	font-weight: 800;
	color: #008bcc;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.connected-svc-title {
	font-size: 16.5px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 6px 0;
}

.connected-svc-sub {
	font-size: 13px;
	line-height: 1.5;
	color: #475569;
	margin: 0 0 14px 0;
}

.btn-connected-svc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 800;
	color: #041c3b;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-connected-svc-link:hover {
	color: #00a2e8;
	transform: translateX(3px);
}

/* Trending Guides Widget */
.trending-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
}

.trending-item {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.trending-thumb {
	width: 68px;
	height: 68px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: #f1f5f9;
}

.trending-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.trending-item:hover .trending-thumb img {
	transform: scale(1.08);
}

.trending-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex-grow: 1;
}

.trending-cat {
	font-size: 10.5px;
	font-weight: 800;
	color: #008bcc;
	text-transform: uppercase;
}

.trending-item-title {
	font-size: 13.5px;
	font-weight: 750;
	color: #041c3b;
	line-height: 1.35;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.trending-item:hover .trending-item-title {
	color: #00a2e8;
}

.trending-date {
	font-size: 11.5px;
	color: #94a3b8;
}

/* Related Articles Section */
.single-article-related-section {
	background: #f8fafc;
	border-top: 1px solid #edf2f7;
	padding: 72px 0 80px 0;
}

.related-section-header {
	margin-bottom: 40px;
}

.related-section-title {
	font-size: clamp(26px, 2.8vw, 36px);
	font-weight: 800;
	color: #041c3b;
	margin: 12px 0 0 0;
	letter-spacing: -0.02em;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
	.blog-articles-grid,
	.articles-section .articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.featured-card-grid {
		grid-template-columns: 1fr;
	}
	.featured-media-col {
		height: 280px;
	}
	.single-article-layout-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.sidebar-sticky-wrapper {
		position: static;
	}
}

@media (max-width: 860px) {
	.blog-hero-section {
		padding: 60px 0 50px 0;
	}
	.blog-hero-title {
		font-size: 30px;
	}
	.blog-toolbar {
		padding: 18px;
	}
	.blog-controls-row {
		flex-direction: column;
		align-items: stretch;
	}
	.blog-search-form {
		max-width: 100%;
	}
	.featured-content-col {
		padding: 24px;
	}
	.single-article-title {
		font-size: 26px;
	}
	.single-article-meta-bar {
		flex-direction: column;
		align-items: flex-start;
	}
	.single-post-prev-next-nav {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.blog-articles-grid,
	.articles-section .articles-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.articles-section .article-image-wrapper {
		height: 230px;
	}
}

@media (max-width: 580px) {
	.blog-articles-grid,
	.articles-section .articles-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.blog-container {
		padding: 0 16px;
	}
	.featured-media-col {
		height: 220px;
	}
	.blog-card-media {
		height: 190px;
	}
	.single-article-share-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==========================================================================
   SECTION: DEDICATED FAQ PAGE STYLING
   ========================================================================== */
.faq-page-main {
	background-color: #f8fafc;
	padding: 70px 0 90px;
	position: relative;
}

.faq-page-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Controls Bar: Category Filter Pills + Instant Search */
.faq-controls-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 36px;
	padding-bottom: 24px;
	border-bottom: 1px solid #e2e8f0;
}

.faq-category-pills {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.faq-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 30px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	color: #475569;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.22s ease;
	outline: none;
}

.faq-cat-pill:hover {
	border-color: #00a2e8;
	color: #00a2e8;
	background: #f0f9ff;
}

.faq-cat-pill.active {
	background: #00a2e8;
	border-color: #00a2e8;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.28);
}

.faq-cat-pill .pill-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 700;
	background: #f1f5f9;
	color: #64748b;
	transition: all 0.22s ease;
}

.faq-cat-pill.active .pill-count {
	background: rgba(255, 255, 255, 0.28);
	color: #ffffff;
}

/* Real-Time Search Box */
.faq-search-box {
	position: relative;
	min-width: 280px;
	max-width: 360px;
	flex: 1;
}

.faq-search-input {
	width: 100%;
	padding: 10px 16px 10px 42px;
	border-radius: 30px;
	border: 1.5px solid #cbd5e1;
	background: #ffffff;
	color: #0f172a;
	font-size: 14px;
	font-family: inherit;
	transition: all 0.22s ease;
	outline: none;
	box-sizing: border-box;
}

.faq-search-input:focus {
	border-color: #00a2e8;
	box-shadow: 0 0 0 3px rgba(0, 162, 232, 0.15);
}

.faq-search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
}

.faq-search-clear {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 4px;
	display: none;
}

/* Two-column Layout Grid */
.faq-layout-split {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 40px;
	align-items: stretch;
}

.faq-accordion-col-wrap {
	min-width: 0;
}

.faq-accordion-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Individual Accordion Item Card */
.faq-page-item {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(4, 28, 59, 0.025);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.faq-page-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 6px 20px rgba(4, 28, 59, 0.06);
}

.faq-page-item.active {
	border-color: #00a2e8;
	box-shadow: 0 8px 24px rgba(0, 162, 232, 0.12);
}

.faq-page-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 22px 26px;
	border: none;
	background: #ffffff;
	color: #041c3b;
	font-family: inherit;
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.faq-page-btn:hover {
	background: #f8fafc;
	color: #0077b6;
}

.faq-page-item.active .faq-page-btn {
	background: #f8fbfe;
	color: #0077b6;
}

.faq-btn-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.faq-category-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #00a2e8;
}

.faq-question-heading {
	margin: 0;
	font-size: 16.5px;
	font-weight: 700;
	color: inherit;
}

.faq-toggle-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f1f5f9;
	color: #0096c7;
	flex-shrink: 0;
	transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease;
}

.faq-page-item.active .faq-toggle-badge {
	transform: rotate(180deg);
	background: #00a2e8;
	color: #ffffff;
}

.faq-toggle-badge svg {
	width: 16px;
	height: 16px;
	display: block;
}

.faq-page-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
	background: #f8fbfe;
}

.faq-page-item.active .faq-page-answer {
	grid-template-rows: 1fr;
}

.faq-page-answer-inner {
	overflow: hidden;
	padding: 0 26px;
	color: #334155;
	font-size: 15px;
	line-height: 1.76;
	transition: padding 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-page-item.active .faq-page-answer-inner {
	padding: 6px 26px 24px;
	border-top: 1px solid rgba(0, 162, 232, 0.09);
}

.faq-page-answer-inner p {
	margin: 0;
}

/* Right Sticky Consultation Sidebar */
.faq-sidebar-col {
	height: 100%;
	position: relative;
}

.faq-sidebar-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 105px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq-support-card {
	background: linear-gradient(145deg, #041322 0%, #082138 100%);
	border: 1px solid rgba(0, 162, 232, 0.22);
	border-radius: 16px;
	padding: 30px 24px;
	color: #ffffff;
	box-shadow: 0 12px 32px rgba(4, 19, 34, 0.18);
	position: relative;
	overflow: hidden;
}

.faq-support-card::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	background: radial-gradient(circle, rgba(0, 162, 232, 0.28) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.faq-support-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #38bdf8;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.faq-support-badge .badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 8px #38bdf8;
}

.faq-support-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 10px;
	line-height: 1.35;
}

.faq-support-copy {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 22px;
}

.faq-support-btn-call {
	display: flex;
	align-items: center;
	gap: 14px;
	background: linear-gradient(135deg, #0077b6 0%, #00a2e8 100%);
	color: #ffffff !important;
	padding: 14px 18px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	margin-bottom: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 14px rgba(0, 162, 232, 0.35);
}

.faq-support-btn-call:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 162, 232, 0.5);
	color: #ffffff !important;
}

.faq-support-btn-call .call-meta {
	display: flex;
	flex-direction: column;
}

.faq-support-btn-call .call-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	opacity: 0.9;
	text-transform: uppercase;
}

.faq-support-btn-call .call-number {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.faq-support-btn-quote {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 18px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #ffffff !important;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 600;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.faq-support-btn-quote:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #38bdf8;
	color: #38bdf8 !important;
}

.faq-support-meta-list {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 12.5px;
	color: #cbd5e1;
}

.faq-support-meta-item {
	display: flex;
	align-items: center;
	gap: 9px;
}

.faq-support-meta-item svg {
	width: 15px;
	height: 15px;
	color: #38bdf8;
	flex-shrink: 0;
}

/* No results state */
.faq-no-results {
	display: none;
	background: #ffffff;
	border: 1.5px dashed #cbd5e1;
	border-radius: 14px;
	padding: 40px 30px;
	text-align: center;
	color: #64748b;
}

.faq-no-results h4 {
	color: #0f172a;
	margin: 0 0 8px;
	font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
	.faq-layout-split {
		grid-template-columns: 1fr;
	}
	.faq-sidebar-sticky {
		position: static;
	}
	.faq-controls-bar {
		flex-direction: column;
		align-items: stretch;
	}
	.faq-search-box {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.faq-page-main {
		padding: 50px 0 70px;
	}
	.faq-page-container {
		padding: 0 16px;
	}
	.faq-page-btn {
		padding: 18px 20px;
		font-size: 15px;
	}
	.faq-page-answer-inner {
		padding: 0 20px;
		font-size: 14.5px;
	}
	.faq-page-item.active .faq-page-answer-inner {
		padding: 4px 20px 20px;
	}
}



/* ==========================================================================
   LEGAL PAGES (PRIVACY POLICY & TERMS OF SERVICE)
   Clean, authoritative editorial document styling without boxy cards.
   100% responsive, high readability, dot bullets, and statutory callouts.
   ========================================================================== */

html {
	scroll-behavior: smooth;
}

.legal-page-wrapper {
	position: relative;
	background-color: #ffffff;
}

.legal-hero-section {
	position: relative;
	overflow: hidden;
}

.legal-page-main {
	background-color: #ffffff;
	padding: 64px 0 90px;
	color: #334155;
	font-size: 16px;
	line-height: 1.85;
}

.legal-document-container {
	max-width: 940px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Document Meta Ribbon (Subtle, sleek bar without heavy box) */
.legal-meta-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 32px;
	padding: 16px 0 24px;
	margin-bottom: 32px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 13.5px;
	color: #64748b;
}

.legal-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.legal-meta-item strong {
	color: #0b1e36;
	font-weight: 600;
}

.legal-meta-icon {
	width: 16px;
	height: 16px;
	color: #1eb6d5;
	flex-shrink: 0;
}

/* Quick Anchor Jump Nav (Horizontal sleek pill scroll) */
.legal-quick-nav {
	margin-bottom: 48px;
	padding: 20px 24px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.legal-quick-nav-title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0b1e36;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.legal-quick-nav-title svg {
	color: #1eb6d5;
	width: 16px;
	height: 16px;
}

.legal-nav-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.legal-nav-pill-link {
	display: inline-block;
	padding: 7px 15px;
	background: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	color: #1e293b;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-nav-pill-link:hover {
	background: #0b1e36;
	color: #ffffff;
	border-color: #0b1e36;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(11, 30, 54, 0.12);
}

/* Legal Content Body Flow */
.legal-content-body {
	position: relative;
}

.legal-section {
	margin-bottom: 48px;
	padding-bottom: 38px;
	border-bottom: 1px solid #f1f5f9;
	scroll-margin-top: 100px;
}

.legal-section:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.legal-section-header {
	margin-bottom: 18px;
}

.legal-section-title {
	font-size: 25px;
	font-weight: 700;
	color: #0b1e36;
	letter-spacing: -0.015em;
	margin: 0 0 10px;
	display: flex;
	align-items: baseline;
	gap: 12px;
	line-height: 1.35;
}

.legal-section-num {
	color: #1eb6d5;
	font-weight: 800;
	font-size: 22px;
}

.legal-subheading {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin: 28px 0 12px;
	line-height: 1.4;
	display: flex;
	align-items: baseline;
}

.legal-subheading-num {
	color: #0d5fa8;
	margin-right: 8px;
	font-weight: 700;
	font-size: 16px;
}

.legal-paragraph {
	margin: 0 0 18px;
	color: #334155;
}

/* Dot Bullet Lists */
.legal-bullet-list {
	list-style: none;
	margin: 16px 0 24px;
	padding: 0;
}

.legal-bullet-item {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	color: #334155;
	line-height: 1.8;
}

.legal-bullet-item::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 11px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #1eb6d5;
	box-shadow: 0 0 0 3px rgba(30, 182, 213, 0.18);
}

.legal-bullet-item strong {
	color: #0b1e36;
}

/* Callout Quote */
.legal-callout-quote {
	position: relative;
	margin: 26px 0;
	padding: 22px 26px 22px 28px;
	background: #f8fafc;
	border-left: 4px solid #1eb6d5;
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: #1e293b;
	font-size: 15.5px;
	line-height: 1.8;
}

.legal-callout-quote p {
	margin: 0;
}

.legal-callout-quote strong {
	font-style: normal;
	color: #0b1e36;
}

.legal-callout-quote::before {
	content: "“";
	position: absolute;
	top: 6px;
	right: 18px;
	font-size: 46px;
	line-height: 1;
	color: rgba(30, 182, 213, 0.15);
	font-family: Georgia, serif;
	pointer-events: none;
}

/* Officer / Legal Notice Contact Box (clean without box clutter) */
.legal-contact-block {
	margin-top: 36px;
	padding: 28px 32px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}

.legal-contact-block h3 {
	margin: 0 0 6px;
	color: #0b1e36;
	font-size: 20px;
	font-weight: 700;
}

.legal-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 18px;
	margin-top: 20px;
}

.legal-contact-cell {
	font-size: 14px;
}

.legal-contact-cell-label {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
	font-weight: 700;
	margin-bottom: 4px;
}

.legal-contact-cell-val {
	color: #0f172a;
	font-weight: 500;
	line-height: 1.5;
}

.legal-contact-cell-val a {
	color: #0d5fa8;
	text-decoration: none;
}

.legal-contact-cell-val a:hover {
	color: #1eb6d5;
	text-decoration: underline;
}

/* Responsive Rules for Legal Pages */
@media (max-width: 991px) {
	.legal-document-container {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.legal-page-main {
		padding: 44px 0 65px;
	}
	.legal-document-container {
		padding: 0 18px;
	}
	.legal-meta-bar {
		gap: 12px 20px;
		font-size: 12.5px;
	}
	.legal-quick-nav {
		padding: 16px 18px;
		margin-bottom: 36px;
	}
	.legal-nav-pill-link {
		padding: 6px 12px;
		font-size: 12.5px;
	}
	.legal-section-title {
		font-size: 20.5px;
		gap: 8px;
	}
	.legal-section-num {
		font-size: 18px;
	}
	.legal-subheading {
		font-size: 16.5px;
	}
	.legal-bullet-item {
		padding-left: 24px;
		font-size: 15px;
		line-height: 1.75;
	}
	.legal-callout-quote {
		padding: 16px 18px;
		font-size: 14.5px;
	}
	.legal-contact-block {
		padding: 22px 20px;
	}
	.legal-contact-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

/* ==========================================================================
   SECTION: PERTH & WA SERVICE AREAS DIRECTORY STYLES
   ========================================================================== */

.service-areas-hero-section {
	position: relative;
}

.sa-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   01. MALAGA HQ SPOTLIGHT BANNER
   -------------------------------------------------------------------------- */
.sa-hq-spotlight-section {
	background: #041322;
	padding: 70px 0;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sa-hq-card {
	background: linear-gradient(135deg, rgba(8, 30, 56, 0.85) 0%, rgba(4, 18, 34, 0.95) 100%);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-radius: 20px;
	padding: 48px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(14, 165, 233, 0.08);
	position: relative;
	overflow: hidden;
}

.sa-hq-card::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
	pointer-events: none;
}

.sa-hq-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: center;
}

.sa-hq-eyebrow {
	margin-bottom: 12px;
}

.sa-hq-title {
	font-size: 34px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.sa-hq-lede {
	font-size: 15.5px;
	color: #94a3b8;
	line-height: 1.7;
	margin: 0 0 24px;
}

.sa-hq-location-box {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 28px;
}

.sa-hq-loc-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: rgba(35, 197, 94, 0.12);
	border: 1px solid rgba(35, 197, 94, 0.3);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.sa-hq-loc-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sa-hq-loc-name {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
}

.sa-hq-loc-addr {
	font-size: 14px;
	color: #38bdf8;
	font-weight: 600;
}

.sa-hq-loc-hours {
	font-size: 12.5px;
	color: #64748b;
}

.sa-hq-action-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.sa-btn-map {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 12px 22px;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.sa-btn-map:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border-color: #38bdf8;
}

.sa-btn-call {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.sa-hq-metrics-col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.sa-metric-card {
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 22px 18px;
	transition: all 0.25s ease;
}

.sa-metric-card:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(14, 165, 233, 0.35);
	transform: translateY(-2px);
}

.sa-metric-icon {
	color: #38bdf8;
	margin-bottom: 12px;
}

.sa-metric-num {
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 6px;
}

.sa-metric-unit {
	font-size: 13px;
	font-weight: 600;
	color: #38bdf8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.sa-metric-label {
	font-size: 13.5px;
	font-weight: 700;
	color: #cbd5e1;
	margin-bottom: 6px;
}

.sa-metric-desc {
	font-size: 12px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* --------------------------------------------------------------------------
   02. INTERACTIVE SUBURB DIRECTORY & REGIONAL GRID
   -------------------------------------------------------------------------- */
.sa-interactive-section {
	padding: 84px 0;
	background: #f8fafc;
	position: relative;
}

.sa-section-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 44px;
}

.sa-section-eyebrow {
	justify-content: center;
	margin-bottom: 12px;
}

.sa-section-title {
	font-size: 36px;
	font-weight: 800;
	color: #041c3b;
	line-height: 1.25;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.sa-section-desc {
	font-size: 16px;
	color: #64748b;
	line-height: 1.65;
	margin: 0;
}

.sa-controls-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 28px 32px 20px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
	margin-bottom: 40px;
}

.sa-search-bar-wrap {
	position: relative;
	margin-bottom: 20px;
}

.sa-search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.sa-search-input {
	width: 100%;
	height: 54px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 0 46px 0 52px;
	font-size: 15.5px;
	font-weight: 500;
	color: #0f172a;
	background: #f8fafc;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.sa-search-input:focus {
	outline: none;
	border-color: #0284c7;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.sa-search-clear-btn {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: color 0.18s ease;
}

.sa-search-clear-btn:hover {
	color: #0f172a;
}

.sa-filter-pills-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.sa-pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #f1f5f9;
	border: 1.5px solid #e2e8f0;
	border-radius: 30px;
	font-size: 13.5px;
	font-weight: 600;
	color: #334155;
	cursor: pointer;
	transition: all 0.18s ease;
}

.sa-pill-btn:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.sa-pill-btn.active {
	background: #0284c7;
	border-color: #0284c7;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
}

.sa-pill-badge {
	background: rgba(0, 0, 0, 0.08);
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 11.5px;
	font-weight: 700;
}

.sa-pill-btn.active .sa-pill-badge {
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
}

.sa-status-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
	font-size: 13.5px;
	color: #64748b;
	flex-wrap: wrap;
	gap: 12px;
}

.sa-status-counter {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #1e293b;
}

.sa-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #23c55e;
	box-shadow: 0 0 0 3px rgba(35, 197, 94, 0.25);
}

.sa-status-legend {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12.5px;
}

.sa-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.sa-tag-hq-sample {
	background: #dcfce7;
	color: #15803d;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
}

.sa-legend-check {
	color: #23c55e;
	font-weight: 800;
}

/* --------------------------------------------------------------------------
   03. REGIONAL CARDS
   -------------------------------------------------------------------------- */
.sa-regions-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.sa-region-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 36px 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.25s ease;
}

.sa-region-card:hover {
	border-color: #cbd5e1;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.sa-card-header {
	margin-bottom: 20px;
}

.sa-card-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.sa-card-badge {
	background: #e0f2fe;
	color: #0369a1;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 4px 10px;
	border-radius: 6px;
}

.sa-card-response {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	color: #166534;
	background: #f0fdf4;
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 600;
}

.sa-card-title {
	font-size: 24px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}

.sa-card-desc {
	font-size: 14.5px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.sa-services-chips-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	border-radius: 10px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.sa-chips-label {
	font-size: 12.5px;
	font-weight: 700;
	color: #475569;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.sa-chips-list {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.sa-service-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	font-weight: 600;
	color: #0369a1;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 4px 10px;
	border-radius: 6px;
}

.sa-service-chip svg {
	color: #0284c7;
}

.sa-suburbs-wrap {
	margin-bottom: 28px;
}

.sa-suburbs-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.sa-suburbs-heading {
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.sa-suburbs-counter {
	font-size: 12.5px;
	color: #94a3b8;
	font-weight: 600;
}

.sa-suburbs-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sa-suburb-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 13px;
	color: #1e293b;
	font-weight: 500;
	transition: all 0.18s ease;
	cursor: default;
}

.sa-suburb-pill:hover {
	background: #e0f2fe;
	border-color: #38bdf8;
	color: #0369a1;
	transform: translateY(-1px);
}

.sa-suburb-pill-hq {
	background: #f0fdf4;
	border-color: #86efac;
	color: #166534;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(35, 197, 94, 0.12);
}

.sa-pill-pc {
	font-size: 11px;
	background: rgba(0, 0, 0, 0.05);
	padding: 1px 5px;
	border-radius: 4px;
	color: #64748b;
	font-weight: 600;
}

.sa-pill-hq-star {
	font-size: 11px;
	background: #22c55e;
	color: #ffffff;
	padding: 1px 6px;
	border-radius: 4px;
	font-weight: 800;
}

.sa-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #f1f5f9;
	flex-wrap: wrap;
	gap: 16px;
}

.sa-card-guarantee {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: #166534;
	font-weight: 600;
}

.sa-card-btn-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.sa-btn-book {
	padding: 10px 20px;
	font-size: 13.5px;
	text-decoration: none;
}

.sa-btn-quickcall {
	padding: 10px 18px;
	font-size: 13.5px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* --------------------------------------------------------------------------
   04. EMPTY STATE FALLBACK
   -------------------------------------------------------------------------- */
.sa-empty-state {
	text-align: center;
	padding: 60px 24px;
	background: #ffffff;
	border: 2px dashed #cbd5e1;
	border-radius: 18px;
	max-width: 640px;
	margin: 20px auto 0;
}

.sa-empty-icon {
	margin-bottom: 16px;
}

.sa-empty-title {
	font-size: 22px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 10px;
}

.sa-empty-desc {
	font-size: 15px;
	color: #64748b;
	line-height: 1.65;
	margin: 0 0 24px;
}

.sa-empty-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   05. WHY CHOOSE US PILLARS
   -------------------------------------------------------------------------- */
.sa-why-section {
	padding: 90px 0;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.sa-why-header {
	margin-bottom: 54px;
}

.sa-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.sa-why-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px 24px;
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
}

.sa-why-card:hover {
	background: #ffffff;
	border-color: #0284c7;
	box-shadow: 0 12px 30px rgba(2, 132, 199, 0.08);
	transform: translateY(-3px);
}

.sa-why-icon-wrap {
	width: 54px;
	height: 54px;
	background: #e0f2fe;
	color: #0284c7;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.sa-why-card-title {
	font-size: 19px;
	font-weight: 800;
	color: #041c3b;
	margin: 0 0 12px;
	line-height: 1.3;
}

.sa-why-card-desc {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 18px;
	flex-grow: 1;
}

.sa-why-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid #e2e8f0;
	padding-top: 14px;
}

.sa-why-list li {
	font-size: 12.5px;
	color: #334155;
	font-weight: 600;
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	line-height: 1.4;
}

.sa-why-list li:last-child {
	margin-bottom: 0;
}

.sa-why-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0284c7;
	font-weight: 800;
}

/* --------------------------------------------------------------------------
   06. SERVICE AREAS FAQ ACCORDION
   -------------------------------------------------------------------------- */
.sa-faq-section {
	padding: 90px 0;
	background: #f8fafc;
}

.sa-faq-header {
	margin-bottom: 48px;
}

.sa-faq-accordion-wrap {
	max-width: 860px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sa-faq-item {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sa-faq-item[open] {
	border-color: #0284c7;
	box-shadow: 0 4px 18px rgba(2, 132, 199, 0.08);
}

.sa-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	font-size: 16.5px;
	font-weight: 700;
	color: #041c3b;
	cursor: pointer;
	user-select: none;
	list-style: none;
}

.sa-faq-question::-webkit-details-marker {
	display: none;
}

.sa-faq-q-icon {
	color: #0284c7;
	transition: transform 0.25s ease;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 12px;
}

.sa-faq-item[open] .sa-faq-q-icon {
	transform: rotate(180deg);
}

.sa-faq-answer {
	padding: 0 24px 22px;
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	border-top: 1px solid #f1f5f9;
	margin-top: 4px;
	padding-top: 16px;
}

.sa-faq-answer p {
	margin: 0;
}

.sa-faq-footer-help {
	max-width: 860px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.sa-faq-help-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sa-faq-help-text strong {
	font-size: 15.5px;
	color: #041c3b;
}

.sa-faq-help-text span {
	font-size: 13.5px;
	color: #64748b;
}

.sa-btn-call-help {
	text-decoration: none;
	padding: 10px 20px;
	font-size: 13.5px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* --------------------------------------------------------------------------
   07. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.sa-why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 992px) {
	.sa-hq-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.sa-hq-card {
		padding: 36px 28px;
	}
	.sa-section-title {
		font-size: 30px;
	}
	.sa-card-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.sa-hq-title {
		font-size: 26px;
	}
	.sa-hq-metrics-col {
		grid-template-columns: 1fr;
	}
	.sa-controls-box {
		padding: 20px 18px 16px;
	}
	.sa-search-input {
		height: 48px;
		font-size: 14.5px;
	}
	.sa-status-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.sa-region-card {
		padding: 24px 18px;
	}
	.sa-card-title {
		font-size: 20px;
	}
	.sa-why-grid {
		grid-template-columns: 1fr;
	}
	.sa-faq-footer-help {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Guard: Floating chat widget is completely replaced by back to top button */
.floating-chat-btn {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Guard: Mobile drawer quick actions are strictly hidden on desktop */
@media (min-width: 993px) {
	.mobile-drawer-quick-actions {
		display: none !important;
	}
}

/* Completely remove all AI-generated hyphen / dash lines across website content */
.eyebrow-line,
.hero-eyebrow-line,
.faq-eyebrow-line,
.testi-eyebrow-line,
.marquee-eyebrow-line,
.brands-eyebrow-line,
.process-eyebrow-line {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}


/* ==========================================================================
   CONTACT FORM — REAL-TIME VALIDATION STATES

   The service and product forms already validate as you type. This is the same
   behaviour for the contact form, restyled for a light card: the service form's
   palette is tuned for the dark panel it sits on and would glare here.
   ========================================================================== */

.contact-field-error {
	display: none;
	color: #dc2626;
	font-size: 11.5px;
	font-weight: 600;
	margin-top: 6px;
	padding-left: 2px;
	line-height: 1.35;
	animation: contactErrFade 0.18s ease-out;
}

.contact-field-error.is-shown {
	display: block;
}

@keyframes contactErrFade {
	from { opacity: 0; transform: translateY(-3px); }
	to   { opacity: 1; transform: translateY(0); }
}

.contact-input-wrap.is-invalid .contact-input {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14) !important;
}

.contact-input-wrap.is-invalid .contact-input-icon,
.contact-input-wrap.is-invalid .contact-select-chevron {
	color: #dc2626 !important;
}

.contact-input-wrap.is-valid .contact-input {
	border-color: #059669 !important;
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12) !important;
}

.contact-input-wrap.is-valid .contact-input-icon {
	color: #059669 !important;
}

/* A tick in the corner of a field that has passed, so the state reads without
   relying on the border colour alone. */
.contact-input-wrap.is-valid::after {
	content: '';
	position: absolute;
	top: 18px;
	right: 14px;
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	animation: contactErrFade 0.18s ease-out;
}

/* Selects already have a chevron in that corner, and the textarea's tick would
   collide with the resize grip. */
.contact-select-wrap.is-valid::after,
.contact-textarea-wrap.is-valid::after {
	display: none;
}

.contact-checkbox-row.is-invalid {
	padding: 10px 12px;
	margin-left: -12px;
	margin-right: -12px;
	border-radius: 10px;
	background: rgba(220, 38, 38, 0.06);
	border: 1px solid rgba(220, 38, 38, 0.28);
}

/* Reduced motion: keep the colour change, drop the slide-in. */
@media (prefers-reduced-motion: reduce) {
	.contact-field-error,
	.contact-input-wrap.is-valid::after {
		animation: none;
	}
}
