/*
 * Nueify — Extras CSS
 * Breadcrumbs, pagination, shortcode grids/cards, social sharing,
 * cookie consent, reading progress bar, back-to-top button,
 * AJAX search, social links, contact info.
 */

/* =========================================================================
   Breadcrumbs
   ========================================================================= */

.cg-breadcrumbs {
	margin-bottom: 1.5rem;
}

.cg-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
}

.cg-breadcrumb-item a {
	color: var(--wp--preset--color--contrast-2, #6b7280);
	text-decoration: none;
}
.cg-breadcrumb-item a:hover {
	color: var(--wp--preset--color--primary, #3559C7);
	text-decoration: underline;
}

.cg-breadcrumb-sep {
	color: var(--wp--preset--color--contrast-2, #6b7280);
	margin: 0 0.25rem;
}

.cg-breadcrumb-current {
	color: var(--wp--preset--color--contrast, #F4F4F4);
}

/* =========================================================================
   Pagination
   ========================================================================= */

.cg-pagination {
	margin-top: 2.5rem;
}

.cg-pagination-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cg-pagination-list a,
.cg-pagination-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.75rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid var(--wp--preset--color--contrast-2, #6b7280);
	color: var(--wp--preset--color--contrast, #F4F4F4);
	transition: background-color 0.2s, border-color 0.2s;
}

.cg-pagination-list a:hover {
	background-color: var(--wp--preset--color--primary, #3559C7);
	border-color: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
}

.cg-pagination-item--current span {
	background-color: var(--wp--preset--color--primary, #3559C7);
	border-color: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
}

/* =========================================================================
   Shortcode Grids & Cards
   ========================================================================= */

.cg-grid {
	display: grid;
	gap: 1.75rem;
}

.cg-grid--1col { grid-template-columns: 1fr; }
.cg-grid--2col { grid-template-columns: repeat(2, 1fr); }
.cg-grid--3col { grid-template-columns: repeat(3, 1fr); }
.cg-grid--4col { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.cg-grid--3col,
	.cg-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.cg-grid--2col,
	.cg-grid--3col,
	.cg-grid--4col { grid-template-columns: 1fr; }
}

/* Base card */
.cg-card {
	background: var(--wp--preset--color--secondary, #171717);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s, box-shadow 0.25s;
}
.cg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cg-card__image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.cg-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.cg-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
.cg-card__title a {
	color: var(--wp--preset--color--contrast, #F4F4F4);
	text-decoration: none;
}
.cg-card__title a:hover {
	color: var(--wp--preset--color--primary, #3559C7);
}

.cg-card__role {
	font-size: 0.875rem;
	color: var(--wp--preset--color--primary, #3559C7);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.cg-card__meta {
	font-size: 0.85rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	margin: 0 0 0.35rem;
}

.cg-card__excerpt {
	font-size: 0.9rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	line-height: 1.6;
	flex: 1;
	margin-bottom: 1rem;
}

.cg-card__link {
	align-self: flex-start;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	text-decoration: none;
}

.cg-btn-outline {
	background: transparent;
	border: 1px solid var(--wp--preset--color--primary, #3559C7);
	color: var(--wp--preset--color--primary, #3559C7);
	margin-left: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.875rem;
	text-decoration: none;
	display: inline-block;
}
.cg-btn-outline:hover {
	background: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
}

/* Team social icons */
.cg-card__social {
	display: flex;
	gap: 0.6rem;
	margin-top: 1rem;
}
.cg-card__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
	font-size: 0.75rem;
	text-decoration: none;
	transition: background 0.2s;
}
.cg-card__social a:hover {
	background: var(--wp--preset--color--button-hover-color, #4771ed);
}

/* Team headshot */
.cg-team-card .cg-card__image img {
	height: 260px;
	object-fit: cover;
	object-position: top center;
}

/* Testimonial card */
.cg-testimonial-card {
	padding: 1.75rem;
}

.cg-testimonial-stars {
	color: #f5c518;
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.cg-testimonial-quote {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	border: none;
	padding: 0;
	margin: 0 0 1.25rem;
	font-style: italic;
}

.cg-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.cg-testimonial-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.cg-testimonial-meta {
	display: flex;
	flex-direction: column;
}

.cg-testimonial-name {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--wp--preset--color--contrast, #F4F4F4);
}

.cg-testimonial-byline {
	font-size: 0.8rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
}

/* =========================================================================
   Social Links (from cg_social_links())
   ========================================================================= */

.cg-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.cg-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}
.cg-social-link:hover {
	background: var(--wp--preset--color--button-hover-color, #4771ed);
	transform: translateY(-2px);
}

/* =========================================================================
   Contact Info (from cg_contact_info())
   ========================================================================= */

.cg-contact-info p {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.95rem;
	margin: 0 0 0.6rem;
	color: var(--wp--preset--color--contrast, #F4F4F4);
}
.cg-contact-info a {
	color: inherit;
	text-decoration: none;
}
.cg-contact-info a:hover {
	color: var(--wp--preset--color--primary, #3559C7);
}
.cg-contact-info .fa-solid {
	color: var(--wp--preset--color--primary, #3559C7);
	margin-top: 0.15rem;
	flex-shrink: 0;
}

/* =========================================================================
   Social Sharing Buttons (from cg_social_sharing())
   ========================================================================= */

.cg-sharing {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 2rem 0;
}

.cg-sharing__label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	margin-right: 0.25rem;
}

.cg-sharing__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s;
}
.cg-sharing__btn:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.cg-sharing__btn--facebook  { background: #1877f2; }
.cg-sharing__btn--twitter   { background: #000; }
.cg-sharing__btn--linkedin  { background: #0a66c2; }
.cg-sharing__btn--whatsapp  { background: #25d366; }

/* =========================================================================
   Reading Progress Bar
   ========================================================================= */

.cg-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: transparent;
	z-index: 99999;
	pointer-events: none;
}

.cg-reading-progress__bar {
	height: 100%;
	width: 0%;
	background: var(--wp--preset--color--primary, #3559C7);
	transition: width 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
	.cg-reading-progress__bar { transition: none; }
}

/* =========================================================================
   Back-to-Top Button
   ========================================================================= */

.nueify-scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
	z-index: 9998;
	transition: background 0.2s, transform 0.2s;
}
.nueify-scroll-top:hover {
	background: var(--wp--preset--color--button-hover-color, #4771ed);
	transform: translateY(-3px);
}
.nueify-scroll-top:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}
/* Kill any arrow the parent theme injects via pseudo-elements */
.nueify-scroll-top::before,
.nueify-scroll-top::after {
	display: none !important;
	content: none !important;
}

/* Our arrow — hidden until hover */
.cg-scroll-top-arrow {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 2.5px solid #fff;
	border-right: 2.5px solid #fff;
	transform: rotate(-45deg) translateY(2px);
	opacity: 0;
	transition: opacity 0.2s;
}
.nueify-scroll-top:hover .cg-scroll-top-arrow {
	opacity: 1;
}

/* =========================================================================
   Cookie Consent Banner
   ========================================================================= */

.cg-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: var(--wp--preset--color--secondary, #171717);
	border-top: 2px solid var(--wp--preset--color--primary, #3559C7);
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.cg-cookie-consent__message {
	font-size: 0.875rem;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	margin: 0;
	flex: 1;
}

.cg-cookie-consent__btn {
	background: var(--wp--preset--color--primary, #3559C7);
	color: #fff;
	border: none;
	padding: 0.5rem 1.25rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}
.cg-cookie-consent__btn:hover {
	background: var(--wp--preset--color--button-hover-color, #4771ed);
}

/* =========================================================================
   AJAX Search Results
   ========================================================================= */

.cg-ajax-search-wrap {
	position: relative;
}

.cg-ajax-search-results {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: var(--wp--preset--color--secondary, #171717);
	border: 1px solid var(--wp--preset--color--primary, #3559C7);
	border-radius: 8px;
	z-index: 1000;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.cg-search-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cg-search-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cg-search-item:last-child {
	border-bottom: none;
}

.cg-search-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	text-decoration: none;
	transition: background 0.15s;
}
.cg-search-link:hover {
	background: rgba(53, 89, 199, 0.15);
}

.cg-search-link img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.cg-search-no-thumb {
	width: 48px;
	height: 48px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
	flex-shrink: 0;
}

.cg-search-text {
	display: flex;
	flex-direction: column;
}

.cg-search-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	line-height: 1.3;
}

.cg-search-type {
	font-size: 0.75rem;
	color: var(--wp--preset--color--primary, #3559C7);
	margin-top: 0.15rem;
}

.cg-search-searching,
.cg-search-no-results {
	padding: 1rem;
	margin: 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	text-align: center;
}

/* =========================================================================
   Author Box
   ========================================================================= */

.cg-author-box {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.cg-author-box__avatar img,
.cg-author-box__avatar-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.cg-author-box__content {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.cg-author-box__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	margin: 0;
}

.cg-author-box__name {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}
.cg-author-box__name a {
	color: var(--wp--preset--color--contrast, #F4F4F4);
	text-decoration: none;
}
.cg-author-box__name a:hover {
	color: var(--wp--preset--color--primary, #3559C7);
}

.cg-author-box__bio {
	font-size: 0.9rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	line-height: 1.6;
	margin: 0.25rem 0;
}

.cg-author-box__link {
	display: inline-block;
	font-size: 0.875rem;
	color: var(--wp--preset--color--primary, #3559C7);
	text-decoration: none;
	font-weight: 500;
	margin-top: 0.25rem;
}
.cg-author-box__link:hover {
	text-decoration: underline;
}

/* =========================================================================
   Table of Contents
   ========================================================================= */

.cg-toc {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.75rem;
}

.cg-toc__title {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
}
.cg-toc__title::before {
	content: '▸';
	display: inline-block;
	transition: transform 0.2s;
}
details[open] .cg-toc__title::before {
	transform: rotate(90deg);
}

.cg-toc__list {
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
}

.cg-toc__item {
	margin-bottom: 0.35rem;
}
.cg-toc__item--sub {
	padding-left: 1rem;
	font-size: 0.875rem;
}
.cg-toc__item a {
	color: var(--wp--preset--color--contrast-2, #6b7280);
	text-decoration: none;
	transition: color 0.15s;
}
.cg-toc__item a:hover {
	color: var(--wp--preset--color--primary, #3559C7);
}

/* =========================================================================
   Post Meta Bar (reading time + date)
   ========================================================================= */

.cg-post-meta-bar {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	font-size: 0.85rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
.cg-post-meta-bar .fa-regular {
	color: var(--wp--preset--color--primary, #3559C7);
	margin-right: 0.3rem;
}

/* =========================================================================
   Related Posts
   ========================================================================= */

.cg-related-posts {
	margin: 2rem 0;
}
.cg-related-posts__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 1.25rem;
	color: var(--wp--preset--color--contrast, #F4F4F4);
}

/* =========================================================================
   Comments (custom walker)
   ========================================================================= */

.cg-comment {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.cg-comment__body {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
}

.cg-comment__header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.cg-comment__avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.cg-comment__meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	flex: 1;
}

.cg-comment__author {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--wp--preset--color--contrast, #F4F4F4);
}
.cg-comment__author a {
	color: inherit;
	text-decoration: none;
}
.cg-comment__author a:hover {
	color: var(--wp--preset--color--primary, #3559C7);
}

.cg-comment__date {
	font-size: 0.8rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
}

.cg-comment__pending {
	font-size: 0.8rem;
	color: #f5a623;
}

.cg-comment__actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin-left: auto;
}
.cg-comment__actions a,
.cg-comment__actions .comment-reply-link {
	font-size: 0.8rem;
	color: var(--wp--preset--color--primary, #3559C7);
	text-decoration: none;
}
.cg-comment__actions a:hover {
	text-decoration: underline;
}

.cg-comment__content {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--wp--preset--color--contrast, #F4F4F4);
}
.cg-comment__content p:last-child {
	margin-bottom: 0;
}

/* Nested comments indent */
.comment-list .children {
	list-style: none;
	padding-left: 2rem;
	margin-top: 1rem;
}

/* =========================================================================
   Preloader
   ========================================================================= */

.cg-preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: var(--wp--preset--color--base, #0C0C0C);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cg-preloader.cg-preloader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.cg-preloader__spinner {
	position: relative;
	width: 52px;
	height: 52px;
}

.cg-preloader__ring {
	position: absolute;
	inset: 0;
	border: 3px solid transparent;
	border-top-color: var(--wp--preset--color--primary, #3559C7);
	border-radius: 50%;
	animation: cg-spin 0.9s linear infinite;
}
.cg-preloader__ring:nth-child(2) {
	inset: 8px;
	border-top-color: rgba(53, 89, 199, 0.4);
	animation-duration: 1.4s;
	animation-direction: reverse;
}

@keyframes cg-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.cg-preloader { display: none; }
}

/* =========================================================================
   Light / Dark Mode Toggle Button
   ========================================================================= */

.cg-mode-toggle {
	position: fixed;
	bottom: 5.5rem; /* above the back-to-top button */
	right: 2rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9997;
	transition: background 0.2s, transform 0.2s;
	backdrop-filter: blur(6px);
}
.cg-mode-toggle:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}
.cg-mode-toggle:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary, #3559C7);
	outline-offset: 3px;
}

/* Show/hide the correct icon */
[data-color-scheme="dark"] .cg-mode-toggle__icon--dark,
[data-color-scheme="light"] .cg-mode-toggle__icon--light {
	display: block;
}
[data-color-scheme="dark"] .cg-mode-toggle__icon--light,
[data-color-scheme="light"] .cg-mode-toggle__icon--dark {
	display: none;
}
/* Default (no attribute yet) shows moon icon */
:root:not([data-color-scheme]) .cg-mode-toggle__icon--light { display: none; }
:root:not([data-color-scheme]) .cg-mode-toggle__icon--dark  { display: block; }

/* =========================================================================
   Light Mode Overrides  [data-color-scheme="light"]
   ========================================================================= */

[data-color-scheme="light"] {
	--wp--preset--color--base:            #ffffff;
	--wp--preset--color--secondary:       #f3f4f6;
	--wp--preset--color--contrast:        #111827;
	--wp--preset--color--contrast-2:      #4b5563;
	--wp--preset--color--black:           #111827;
	--wp--preset--color--white:           #ffffff;
	--wp--preset--color--dark-text-color: #111827;
	--wp--preset--color--white-text-color:#ffffff;
}

[data-color-scheme="light"] body,
[data-color-scheme="light"] .wp-site-blocks {
	background-color: #ffffff;
	color: #111827;
}

[data-color-scheme="light"] .cg-card,
[data-color-scheme="light"] .cg-testimonial-card {
	background: #f3f4f6;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

[data-color-scheme="light"] .cg-author-box,
[data-color-scheme="light"] .cg-toc,
[data-color-scheme="light"] .cg-comment__body {
	background: #f9fafb;
	border-color: #e5e7eb;
}

[data-color-scheme="light"] .cg-preloader {
	background: #ffffff;
}

[data-color-scheme="light"] .cg-mode-toggle {
	background: rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.12);
	color: #111827;
}

[data-color-scheme="light"] .cg-ajax-search-results {
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

[data-color-scheme="light"] .cg-cookie-consent {
	background: #f9fafb;
	border-top-color: var(--wp--preset--color--primary, #3559C7);
}

/* =========================================================================
   Custom Block Styles
   ========================================================================= */

/* Dark Card */
.wp-block-group.is-style-cg-dark-card {
	background: var(--wp--preset--color--secondary, #171717) !important;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Glass Panel */
.wp-block-group.is-style-cg-glass {
	background: rgba(255,255,255,0.05) !important;
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	padding: 2rem;
}

/* Outlined Button */
.wp-block-button.is-style-cg-outlined .wp-block-button__link {
	background: transparent !important;
	border: 2px solid var(--wp--preset--color--primary, #3559C7) !important;
	color: var(--wp--preset--color--primary, #3559C7) !important;
}
.wp-block-button.is-style-cg-outlined .wp-block-button__link:hover {
	background: var(--wp--preset--color--primary, #3559C7) !important;
	color: #fff !important;
}

/* Ghost Button */
.wp-block-button.is-style-cg-ghost .wp-block-button__link {
	background: transparent !important;
	color: var(--wp--preset--color--contrast, #F4F4F4) !important;
	text-decoration: underline;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Shadow Image */
.wp-block-image.is-style-cg-shadow img {
	box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* Underline Accent Heading */
.wp-block-heading.is-style-cg-underline {
	position: relative;
	padding-bottom: 0.6rem;
}
.wp-block-heading.is-style-cg-underline::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 3rem;
	height: 3px;
	background: var(--wp--preset--color--primary, #3559C7);
	border-radius: 2px;
}

/* Overline Heading */
.wp-block-heading.is-style-cg-overline {
	position: relative;
	padding-top: 1.5rem;
}
.wp-block-heading.is-style-cg-overline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 2.5rem;
	height: 3px;
	background: var(--wp--preset--color--primary, #3559C7);
	border-radius: 2px;
}

/* Gradient Separator */
.wp-block-separator.is-style-cg-gradient {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wp--preset--color--primary, #3559C7), transparent);
	opacity: 1;
}

/* Bordered Quote */
.wp-block-quote.is-style-cg-bordered {
	border-left: 4px solid var(--wp--preset--color--primary, #3559C7);
	padding-left: 1.25rem;
	background: rgba(53,89,199,0.06);
	border-radius: 0 8px 8px 0;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

/* =========================================================================
   Focus Visibility — all interactive elements
   ========================================================================= */

.cg-pagination-list a:focus-visible,
.cg-card__title a:focus-visible,
.cg-card__link:focus-visible,
.cg-btn-outline:focus-visible,
.cg-search-link:focus-visible,
.cg-sharing__btn:focus-visible,
.cg-social-link:focus-visible,
.cg-toc__item a:focus-visible,
.cg-author-box__name a:focus-visible,
.cg-author-box__link:focus-visible,
.cg-comment__author a:focus-visible,
.cg-comment__actions a:focus-visible,
.cg-comment__actions .comment-reply-link:focus-visible,
.cg-contact-info a:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary, #3559C7);
	outline-offset: 3px;
	border-radius: 3px;
}

/* =========================================================================
   Reduced Motion — disable transforms for users who prefer it
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
	.cg-card,
	.cg-social-link,
	.cg-sharing__btn,
	.nueify-scroll-top,
	.cg-mode-toggle {
		transition: background 0.2s, border-color 0.2s, color 0.2s;
	}
	.cg-card:hover,
	.cg-social-link:hover,
	.cg-sharing__btn:hover,
	.nueify-scroll-top:hover,
	.cg-mode-toggle:hover {
		transform: none;
	}
	.cg-toc__title::before {
		transition: none;
	}
}

/* =========================================================================
   Nueify Contractor — Services Stagger Layout
   ========================================================================= */

.nueify-services-section {
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--wp--preset--color--base, #0C0C0C);
}

.nueify-services-inner {
	max-width: 1240px;
	margin: 0 auto;
}

.nueify-eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--wp--preset--color--yellow-accent, #F5C518);
	margin: 0 0 0.875rem;
	padding: 0;
}

.nueify-section-heading {
	font-size: clamp(1.875rem, 4vw, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.05;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	margin: 0 0 1rem;
}

.nueify-section-sub {
	font-size: 1rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	line-height: 1.75;
	margin: 0 0 3rem;
	max-width: 560px;
}

/* Staggered grid wrapper */
.nueify-services-stagger {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Row — alternates between wide-left and wide-right */
.nueify-svc-row {
	display: grid;
	gap: 1.5rem;
}

.nueify-svc-row-a { grid-template-columns: 3fr 2fr; }
.nueify-svc-row-b { grid-template-columns: 2fr 3fr; }

/* Service card base */
.nueify-svc-card {
	background: var(--wp--preset--color--secondary, #171717);
	border-radius: 12px;
	padding: 2rem 1.875rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s;
}

.nueify-svc-card:hover {
	border-color: rgba(245, 197, 24, 0.25);
}

/* Featured (wide) card gets extra breathing room */
.nueify-svc-card--featured {
	padding: 2.75rem 2.5rem;
}

.nueify-svc-icon {
	margin-bottom: 1.5rem;
	line-height: 1;
}

.nueify-svc-name {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	margin: 0 0 0.75rem;
}

.nueify-svc-desc {
	font-size: 0.9375rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	line-height: 1.75;
	margin: 0 0 1.25rem;
	flex: 1;
}

/* Bullet list */
.nueify-svc-bullets {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nueify-svc-bullets li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
}

.nueify-bullet-dot {
	width: 5px;
	height: 5px;
	background: var(--wp--preset--color--yellow-accent, #F5C518);
	border-radius: 50%;
	flex-shrink: 0;
}

/* Learn More link */
.nueify-svc-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--wp--preset--color--yellow-accent, #F5C518);
	text-decoration: none;
	border-bottom: 1px solid rgba(245, 197, 24, 0.3);
	padding-bottom: 2px;
	width: fit-content;
	transition: border-color 0.2s;
	margin-top: auto;
}

.nueify-svc-link:hover {
	border-color: var(--wp--preset--color--yellow-accent, #F5C518);
	color: var(--wp--preset--color--yellow-accent, #F5C518);
}

/* Responsive: stack to single column on mobile */
@media (max-width: 860px) {
	.nueify-svc-row-a,
	.nueify-svc-row-b {
		grid-template-columns: 1fr;
	}
	.nueify-svc-card--featured {
		padding: 2rem 1.875rem;
	}
}

/* =========================================================================
   Nueify Contractor — Refined Callout (replaces yellow bar)
   ========================================================================= */

.nueify-refined-callout {
	padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--wp--preset--color--base, #0C0C0C);
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nueify-refined-callout-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.nueify-callout-accent-line {
	width: 3px;
	height: 72px;
	background: var(--wp--preset--color--yellow-accent, #F5C518);
	border-radius: 2px;
	flex-shrink: 0;
}

.nueify-callout-content {
	flex: 1;
	min-width: 220px;
}

.nueify-callout-heading {
	font-size: clamp(1.2rem, 2.5vw, 1.625rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--wp--preset--color--contrast, #F4F4F4);
	margin: 0.375rem 0 0.5rem;
	line-height: 1.2;
}

.nueify-callout-sub {
	font-size: 0.9rem;
	color: var(--wp--preset--color--contrast-2, #6b7280);
	margin: 0;
	line-height: 1.65;
}

.nueify-callout-cta {
	flex-shrink: 0;
}

@media (max-width: 640px) {
	.nueify-callout-accent-line { display: none; }
	.nueify-refined-callout-inner { gap: 1.25rem; }
	.nueify-callout-cta { width: 100%; }
	.nueify-callout-cta .wp-block-button { width: 100%; }
	.nueify-callout-cta .wp-block-button__link { width: 100%; text-align: center; }
}

/* =========================================================================
   Nueify Tech — Electric Blue Design System
   ========================================================================= */

:root {
	--nt-blue:      #00A3FF;
	--nt-blue-glow: #38BDF8;
	--nt-base:      #060C17;
	--nt-card:      #0A1628;
	--nt-card-2:    #0D2040;
	--nt-muted:     #8BA3C1;
	--nt-border:    rgba(0, 163, 255, 0.12);
	--nt-inner:     1240px;
}

/* Shared layout helpers */
.nueify-tech-inner {
	max-width: var(--nt-inner);
	margin: 0 auto;
}

.nueify-tech-eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--nt-blue);
	margin: 0 0 0.875rem;
	padding: 0;
}

.nueify-tech-heading {
	font-size: clamp(1.875rem, 4vw, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.05;
	color: #fff;
	margin: 0 0 1rem;
}

.nueify-tech-sub {
	font-size: 1rem;
	color: var(--nt-muted);
	line-height: 1.75;
	margin: 0 0 3rem;
	max-width: 560px;
}

/* ── Services Section ──────────────────────────────────────────────────── */
.nueify-tech-services-section {
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--nt-base);
}

.nueify-tech-services-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.nueify-tech-svc-row {
	display: grid;
	gap: 1.5rem;
}

.nueify-tech-svc-row-a { grid-template-columns: 3fr 2fr; }
.nueify-tech-svc-row-b { grid-template-columns: 2fr 3fr; }

.nueify-tech-svc-card {
	background: var(--nt-card);
	border-radius: 12px;
	padding: 2rem 1.875rem;
	border: 1px solid var(--nt-border);
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.nueify-tech-svc-card:hover {
	border-color: rgba(0, 163, 255, 0.35);
	box-shadow: 0 0 32px rgba(0, 163, 255, 0.08);
}

.nueify-tech-svc-card--wide {
	padding: 2.75rem 2.5rem;
}

.nueify-tech-svc-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.nueify-tech-svc-num {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--nt-blue);
	opacity: 0.6;
}

.nueify-tech-svc-icon { line-height: 1; }

.nueify-tech-svc-name {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0 0 0.75rem;
}

.nueify-tech-svc-desc {
	font-size: 0.9375rem;
	color: var(--nt-muted);
	line-height: 1.75;
	margin: 0 0 1.25rem;
	flex: 1;
}

.nueify-tech-svc-bullets {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nueify-tech-svc-bullets li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--nt-muted);
}

.nueify-tech-bullet {
	width: 5px;
	height: 5px;
	background: var(--nt-blue);
	border-radius: 50%;
	flex-shrink: 0;
}

.nueify-tech-svc-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--nt-blue);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 163, 255, 0.3);
	padding-bottom: 2px;
	width: fit-content;
	margin-top: auto;
	transition: border-color 0.2s;
}

.nueify-tech-svc-link:hover {
	border-color: var(--nt-blue);
}

@media (max-width: 860px) {
	.nueify-tech-svc-row-a,
	.nueify-tech-svc-row-b { grid-template-columns: 1fr; }
	.nueify-tech-svc-card--wide { padding: 2rem 1.875rem; }
}

/* ── Work / Portfolio Section ──────────────────────────────────────────── */
.nueify-tech-work-section {
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--nt-card);
}

.nueify-tech-work-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.nueify-tech-work-card {
	background: var(--nt-base);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--nt-border);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s, transform 0.25s;
}

.nueify-tech-work-card:hover {
	border-color: rgba(0, 163, 255, 0.35);
	transform: translateY(-4px);
}

.nueify-tech-work-thumb {
	position: relative;
	height: 180px;
	overflow: hidden;
	background: var(--nt-card-2);
}

.nueify-tech-work-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nueify-tech-work-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--nt-card) 0%, var(--nt-card-2) 100%);
}

.nueify-tech-work-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(0, 163, 255, 0.15);
	border: 1px solid rgba(0, 163, 255, 0.3);
	color: var(--nt-blue);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 100px;
}

.nueify-tech-work-info { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }

.nueify-tech-work-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.nueify-tech-work-excerpt {
	font-size: 0.875rem;
	color: var(--nt-muted);
	line-height: 1.65;
	margin: 0 0 1rem;
	flex: 1;
}

.nueify-tech-work-link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--nt-blue);
	letter-spacing: 0.03em;
}

@media (max-width: 900px) { .nueify-tech-work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nueify-tech-work-grid { grid-template-columns: 1fr; } }

/* ── Callout Bar ──────────────────────────────────────────────────────── */
.nueify-tech-callout {
	padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--nt-base);
	border-top: 1px solid var(--nt-border);
	border-bottom: 1px solid var(--nt-border);
}

.nueify-tech-callout-inner {
	max-width: var(--nt-inner);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.nueify-tech-callout-line {
	width: 3px;
	height: 72px;
	background: var(--nt-blue);
	border-radius: 2px;
	flex-shrink: 0;
	box-shadow: 0 0 16px rgba(0, 163, 255, 0.5);
}

.nueify-tech-callout-content { flex: 1; min-width: 220px; }

.nueify-tech-callout-heading {
	font-size: clamp(1.2rem, 2.5vw, 1.625rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin: 0.375rem 0 0.5rem;
	line-height: 1.2;
}

.nueify-tech-callout-sub {
	font-size: 0.9rem;
	color: var(--nt-muted);
	margin: 0;
	line-height: 1.65;
}

.nueify-tech-callout-cta { flex-shrink: 0; }

/* ── Capabilities Section ─────────────────────────────────────────────── */
.nueify-tech-caps-section {
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--nt-card);
}

.nueify-tech-caps-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.nueify-tech-cap-card {
	background: var(--nt-base);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--nt-border);
	transition: border-color 0.25s;
}

.nueify-tech-cap-card:hover { border-color: rgba(0, 163, 255, 0.3); }

.nueify-tech-cap-icon { margin-bottom: 1.25rem; }

.nueify-tech-cap-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0 0 0.625rem;
}

.nueify-tech-cap-desc {
	font-size: 0.9rem;
	color: var(--nt-muted);
	line-height: 1.7;
	margin: 0;
}

/* Tech stack row */
.nueify-tech-stack {
	border-top: 1px solid var(--nt-border);
	padding-top: 2.5rem;
}

.nueify-tech-stack-label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--nt-muted);
	margin: 0 0 1.25rem;
}

.nueify-tech-stack-items {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.nueify-tech-stack-item {
	background: rgba(0, 163, 255, 0.08);
	border: 1px solid rgba(0, 163, 255, 0.2);
	color: var(--nt-blue);
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 1.125rem;
	border-radius: 100px;
	letter-spacing: 0.02em;
}

@media (max-width: 700px) { .nueify-tech-caps-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ─────────────────────────────────────────────────────── */
.nueify-tech-testimonials-section {
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--nt-base);
}

.nueify-tech-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.nueify-tech-review-card {
	background: var(--nt-card);
	border-radius: 12px;
	padding: 2rem 1.875rem;
	border: 1px solid var(--nt-border);
	display: flex;
	flex-direction: column;
}

.nueify-tech-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 1.25rem;
}

.nueify-tech-quote {
	font-size: 0.9375rem;
	color: rgba(240, 246, 255, 0.85);
	line-height: 1.75;
	font-style: italic;
	margin: 0 0 1.5rem;
	flex: 1;
	border: none;
	padding: 0;
}

.nueify-tech-reviewer {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.nueify-tech-reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0,163,255,0.3) 0%, rgba(0,163,255,0.1) 100%);
	border: 1px solid rgba(0, 163, 255, 0.3);
	flex-shrink: 0;
}

.nueify-tech-reviewer-name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
}

.nueify-tech-reviewer-role {
	font-size: 0.8125rem;
	color: var(--nt-muted);
	margin-top: 2px;
}

@media (max-width: 900px) { .nueify-tech-testimonials-grid { grid-template-columns: 1fr; } }

/* ── Contact Section ─────────────────────────────────────────────────── */
.nueify-tech-contact-section {
	padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 5rem);
	background: var(--nt-card);
}

.nueify-tech-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 5rem;
	align-items: start;
}

.nueify-tech-contact-items {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2rem;
}

.nueify-tech-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.9375rem;
	color: var(--nt-muted);
}

.nueify-tech-contact-item svg { flex-shrink: 0; }

.nueify-tech-form-wrap {}

.nueify-tech-form-card {
	background: var(--nt-base);
	border-radius: 14px;
	padding: 2.5rem;
	border: 1px solid var(--nt-border);
}

.nueify-tech-form-title {
	font-size: 1.375rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin: 0 0 0.5rem;
}

.nueify-tech-form-sub {
	font-size: 0.875rem;
	color: var(--nt-muted);
	margin: 0 0 1.75rem;
}

@media (max-width: 860px) {
	.nueify-tech-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}


/* =========================================================================
   Interior Page Patterns — Nueify Tech
   ========================================================================= */

/* ── Interior Page Shared ─────────────────────────────────────────────── */
.nueify-tech-page-hero {
	background: linear-gradient(160deg, #060C17 0%, #0A1628 100%);
	padding: clamp(5rem, 10vw, 7rem) clamp(1.5rem, 6vw, 5rem) clamp(4rem, 8vw, 5.5rem);
	text-align: center;
	border-bottom: 1px solid rgba(0,163,255,0.15);
	position: relative;
	overflow: hidden;
}
.nueify-tech-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,163,255,0.1), transparent 70%);
	pointer-events: none;
}
.nueify-tech-page-hero-inner {
	position: relative;
	max-width: 680px;
	margin: 0 auto;
}
.nueify-tech-page-title {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #fff;
	line-height: 1.05;
	margin: 1rem 0 1.5rem;
}
.nueify-tech-page-sub {
	font-size: 1.0625rem;
	color: #8BA3C1;
	line-height: 1.75;
}

/* ── Services Detail Page ─────────────────────────────────────────────── */
.nueify-tech-services-page {}
.nueify-tech-svc-detail-section {
	padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.nueify-tech-svc-detail-row {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 4rem;
	align-items: center;
	padding: 3rem;
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 16px;
}
.nueify-tech-svc-detail-row--reverse {
	grid-template-columns: 1.6fr 1fr;
}
.nueify-tech-svc-detail-row--reverse .nueify-tech-svc-detail-visual {
	order: -1;
}
.nueify-tech-svc-detail-visual {
	height: 240px;
	background: linear-gradient(135deg, #0D1E35 0%, #0D2540 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0,163,255,0.15);
}
.nueify-tech-svc-num {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #00A3FF;
	opacity: 0.65;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.nueify-tech-svc-detail-title {
	font-size: 1.625rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 1rem;
}
.nueify-tech-svc-detail-desc {
	font-size: 0.9375rem;
	color: #8BA3C1;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}
.nueify-tech-svc-bullets {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
}
.nueify-tech-svc-bullets li {
	font-size: 0.875rem;
	color: rgba(240,246,255,0.7);
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	line-height: 1.5;
}
.nueify-tech-svc-bullets li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #00A3FF;
	margin-top: 0.45rem;
	flex-shrink: 0;
}
.nueify-tech-btn-primary {
	display: inline-block;
	background: #00A3FF;
	color: #fff;
	font-weight: 700;
	font-size: 0.9375rem;
	padding: 0.875rem 2rem;
	border-radius: 6px;
	text-decoration: none;
	letter-spacing: -0.01em;
}
.nueify-tech-btn-outline {
	display: inline-block;
	border: 1.5px solid rgba(0,163,255,0.5);
	color: #00A3FF;
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.875rem 2rem;
	border-radius: 6px;
	text-decoration: none;
}
.nueify-tech-btn-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.nueify-tech-stack-section {
	padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.15);
}
.nueify-tech-stack-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}
.nueify-tech-stack-pill {
	background: rgba(0,163,255,0.08);
	border: 1px solid rgba(0,163,255,0.2);
	color: #00A3FF;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.5rem 1.25rem;
	border-radius: 100px;
	letter-spacing: 0.02em;
}

/* ── Portfolio / Work Page ────────────────────────────────────────────── */
.nueify-tech-filter-bar {
	padding: 2.5rem clamp(1.5rem, 6vw, 5rem) 0;
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.nueify-tech-filter-btn {
	background: transparent;
	border: 1px solid rgba(0,163,255,0.15);
	color: #8BA3C1;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.5rem 1.25rem;
	border-radius: 100px;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
}
.nueify-tech-filter-btn.active,
.nueify-tech-filter-btn:hover {
	background: #00A3FF;
	border-color: #00A3FF;
	color: #fff;
}
.nueify-tech-portfolio-section {
	padding: 3rem clamp(1.5rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
}
.nueify-tech-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}
.nueify-tech-port-card {
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color 0.25s;
}
.nueify-tech-port-card:hover { border-color: #00A3FF; }
.nueify-tech-port-card--featured { grid-column: span 2; }
.nueify-tech-port-thumb {
	background: linear-gradient(135deg, #0D1E35 0%, #0D2540 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nueify-tech-port-card:not(.nueify-tech-port-card--featured) .nueify-tech-port-thumb { height: 220px; }
.nueify-tech-port-card--featured .nueify-tech-port-thumb { height: 320px; }
.nueify-tech-port-cat {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	background: rgba(0,163,255,0.15);
	border: 1px solid rgba(0,163,255,0.3);
	color: #00A3FF;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.375rem 0.875rem;
	border-radius: 4px;
}
.nueify-tech-port-placeholder {
	font-size: 5rem;
	font-weight: 900;
	color: rgba(240,246,255,0.06);
	letter-spacing: -0.05em;
}
.nueify-tech-port-body { padding: 1.75rem; }
.nueify-tech-port-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	margin-bottom: 0.5rem;
}
.nueify-tech-port-excerpt {
	font-size: 0.875rem;
	color: #8BA3C1;
	line-height: 1.65;
	margin-bottom: 1rem;
}
.nueify-tech-port-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nueify-tech-port-client {
	font-size: 0.8125rem;
	color: rgba(240,246,255,0.35);
	font-weight: 500;
}
.nueify-tech-port-link {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #00A3FF;
	text-decoration: none;
}
.nueify-tech-cta-strip {
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.15);
	padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
	text-align: center;
}
.nueify-tech-cta-strip h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 1rem;
}
.nueify-tech-cta-strip p {
	font-size: 1rem;
	color: #8BA3C1;
	margin-bottom: 2rem;
}

/* ── About Page ───────────────────────────────────────────────────────── */
.nueify-tech-about-page {}
.nueify-tech-mission-section {
	padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.nueify-tech-mission-text h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}
.nueify-tech-mission-text p {
	font-size: 1rem;
	color: #8BA3C1;
	line-height: 1.8;
	margin-bottom: 1rem;
}
.nueify-tech-mission-visual {
	background: linear-gradient(135deg, #0D1E35 0%, #0D2540 100%);
	border-radius: 16px;
	height: 380px;
	border: 1px solid rgba(0,163,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	font-weight: 900;
	color: rgba(0,163,255,0.12);
	letter-spacing: -0.05em;
}
.nueify-tech-capabilities-section {
	padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.15);
	border-bottom: 1px solid rgba(0,163,255,0.15);
}
.nueify-tech-cap-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}
.nueify-tech-cap-card {
	background: #060C17;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 14px;
	padding: 2.25rem;
}
.nueify-tech-cap-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	margin: 1rem 0 0.625rem;
}
.nueify-tech-cap-desc {
	font-size: 0.9375rem;
	color: #8BA3C1;
	line-height: 1.7;
}
.nueify-tech-team-section {
	padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
}
.nueify-tech-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}
.nueify-tech-team-card {
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 14px;
	overflow: hidden;
	text-align: center;
}
.nueify-tech-team-photo {
	height: 180px;
	background: linear-gradient(135deg, #0D1E35, #0D2540);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 900;
	color: rgba(0,163,255,0.2);
	letter-spacing: -0.04em;
}
.nueify-tech-team-body { padding: 1.25rem; }
.nueify-tech-team-name { font-size: 1rem; font-weight: 700; color: #fff; }
.nueify-tech-team-role { font-size: 0.8125rem; color: #8BA3C1; margin-top: 0.25rem; }
.nueify-tech-values-section {
	padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.15);
}
.nueify-tech-values-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}
.nueify-tech-value-item { text-align: center; }
.nueify-tech-value-num {
	font-size: 2.5rem;
	font-weight: 900;
	color: #00A3FF;
	letter-spacing: -0.05em;
}
.nueify-tech-value-label {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
	margin: 0.5rem 0 0.375rem;
}
.nueify-tech-value-desc {
	font-size: 0.8125rem;
	color: #8BA3C1;
	line-height: 1.65;
}

/* ── Contact Page ─────────────────────────────────────────────────────── */
.nueify-tech-contact-page {}
.nueify-tech-contact-grid-section {
	padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 5rem;
	align-items: start;
}
.nueify-tech-contact-info-title {
	font-size: 1.625rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 0.75rem;
}
.nueify-tech-contact-info-sub {
	font-size: 0.9375rem;
	color: #8BA3C1;
	line-height: 1.75;
	margin-bottom: 2rem;
}
.nueify-tech-contact-items {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.nueify-tech-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.9375rem;
	color: #8BA3C1;
}
.nueify-tech-contact-item a { color: #8BA3C1; text-decoration: none; }
.nueify-tech-hours-card {
	margin-top: 2rem;
	padding: 1.5rem;
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 10px;
}
.nueify-tech-hours-card h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}
.nueify-tech-hours-card p { font-size: 0.875rem; color: #8BA3C1; line-height: 1.7; }
.nueify-tech-form-card {
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 16px;
	padding: 2.75rem;
}
.nueify-tech-map-section {
	height: 300px;
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8BA3C1;
	font-size: 0.9375rem;
}

/* ── Quote / Wizard Page ──────────────────────────────────────────────── */
.nueify-tech-quote-page {}
.nueify-tech-quote-hero {
	background: #060C17;
	padding: 5rem clamp(1.5rem, 6vw, 5rem) 3rem;
	text-align: center;
	border-bottom: 1px solid rgba(0,163,255,0.15);
}
.nueify-tech-wizard-section {
	padding: 4rem clamp(1.5rem, 6vw, 5rem) 6rem;
	max-width: 900px;
	margin: 0 auto;
}
.nueify-tech-wizard-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3.5rem;
	gap: 0;
}
.nueify-tech-wz-step { display: flex; align-items: center; }
.nueify-tech-wz-dot {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-weight: 700;
	flex-shrink: 0;
}
.nueify-tech-wz-dot--active { background: #00A3FF; color: #fff; box-shadow: 0 0 0 4px rgba(0,163,255,0.2); }
.nueify-tech-wz-dot--done { background: #00A3FF; color: #fff; }
.nueify-tech-wz-dot--pending { background: #0A1628; border: 1px solid rgba(0,163,255,0.15); color: #8BA3C1; }
.nueify-tech-wz-label { font-size: 0.75rem; font-weight: 600; color: #8BA3C1; margin: 0 0.75rem; white-space: nowrap; }
.nueify-tech-wz-label--active { color: #fff; }
.nueify-tech-wz-line { width: 60px; height: 1px; background: rgba(0,163,255,0.15); margin: 0 0.25rem; }
.nueify-tech-step-card {
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 16px;
	padding: 3rem;
}
.nueify-tech-step-heading {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 0.5rem;
}
.nueify-tech-step-sub { font-size: 0.9375rem; color: #8BA3C1; margin-bottom: 2.5rem; }
.nueify-tech-service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2.5rem;
}
.nueify-tech-service-check {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: #060C17;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.2s;
}
.nueify-tech-service-check:hover { border-color: rgba(0,163,255,0.4); }
.nueify-tech-check-box {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: 1.5px solid rgba(0,163,255,0.25);
	flex-shrink: 0;
	margin-top: 2px;
}
.nueify-tech-check-label { font-size: 0.9375rem; font-weight: 600; color: #fff; display: block; }
.nueify-tech-check-sub { font-size: 0.8rem; color: #8BA3C1; margin-top: 3px; display: block; }
.nueify-tech-budget-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2.5rem;
}
.nueify-tech-budget-btn {
	padding: 1rem;
	background: #060C17;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 10px;
	color: #8BA3C1;
	font-size: 0.9375rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
}
.nueify-tech-budget-btn:hover { border-color: rgba(0,163,255,0.4); color: #00A3FF; }
.nueify-tech-step-next {
	background: #00A3FF;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 2.5rem;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	display: block;
	width: 100%;
	margin-top: 1.5rem;
}

/* ── Mobile responsive for interior pages ───────────────────────────── */
@media (max-width: 1024px) {
	.nueify-tech-svc-detail-row,
	.nueify-tech-svc-detail-row--reverse { grid-template-columns: 1fr; gap: 2rem; }
	.nueify-tech-svc-detail-row--reverse .nueify-tech-svc-detail-visual { order: 0; }
	.nueify-tech-mission-section { grid-template-columns: 1fr; gap: 3rem; }
	.nueify-tech-contact-grid-section { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 860px) {
	.nueify-tech-portfolio-grid { grid-template-columns: 1fr 1fr; }
	.nueify-tech-team-grid { grid-template-columns: repeat(2, 1fr); }
	.nueify-tech-cap-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.nueify-tech-portfolio-grid { grid-template-columns: 1fr; }
	.nueify-tech-port-card--featured { grid-column: span 1; }
	.nueify-tech-values-row { grid-template-columns: 1fr; }
	.nueify-tech-budget-row { grid-template-columns: repeat(2, 1fr); }
	.nueify-tech-service-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Nueify Tech — Dentsu-Inspired Elements
   ========================================================================= */

/* ── Marquee Ticker Strip ─────────────────────────────────────────────── */
.nueify-tech-marquee {
	background: #00A3FF;
	overflow: hidden;
	padding: 0.875rem 0;
}
.nueify-tech-marquee-track {
	display: flex;
	gap: 2.5rem;
	white-space: nowrap;
	animation: nt-marquee 28s linear infinite;
	width: max-content;
}
.nueify-tech-marquee-track span {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #060C17;
	flex-shrink: 0;
}
.nueify-tech-marquee-track span.nt-sep {
	color: rgba(6,12,23,0.35);
	margin: 0 0.25rem;
}
@keyframes nt-marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.nueify-tech-marquee-track { animation: none; }
}

/* ── Stats Bar ────────────────────────────────────────────────────────── */
.nueify-tech-stats-bar {
	background: #060C17;
	padding: 3rem clamp(1.5rem, 6vw, 5rem);
	border-bottom: 1px solid rgba(0,163,255,0.12);
}
.nueify-tech-stats-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid rgba(0,163,255,0.12);
	border-radius: 12px;
	overflow: hidden;
}
.nueify-tech-stat-cell {
	padding: 2rem 1.5rem;
	text-align: center;
	border-right: 1px solid rgba(0,163,255,0.12);
}
.nueify-tech-stat-cell:last-child { border-right: none; }
.nueify-tech-stat-num {
	display: block;
	font-size: 3rem;
	font-weight: 900;
	color: #00A3FF;
	letter-spacing: -0.05em;
	line-height: 1;
}
.nueify-tech-stat-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #8BA3C1;
	margin-top: 0.75rem;
}
@media (max-width: 700px) {
	.nueify-tech-stats-inner { grid-template-columns: repeat(2, 1fr); }
	.nueify-tech-stat-cell:nth-child(2) { border-right: none; }
	.nueify-tech-stat-cell:nth-child(3) { border-top: 1px solid rgba(0,163,255,0.12); }
	.nueify-tech-stat-cell:nth-child(4) { border-top: 1px solid rgba(0,163,255,0.12); border-right: none; }
}

/* ── Typographic Statement ────────────────────────────────────────────── */
.nueify-tech-type-section {
	padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
	background: #060C17;
	border-top: 1px solid rgba(0,163,255,0.08);
	border-bottom: 1px solid rgba(0,163,255,0.08);
}
.nueify-tech-type-inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nueify-tech-type-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	padding: 2rem 0;
	gap: 2rem;
}
.nueify-tech-type-row:first-child { padding-top: 0; }
.nueify-tech-type-row:last-child { border-bottom: none; padding-bottom: 0; }
.nueify-tech-type-word {
	font-size: clamp(3.5rem, 8vw, 7rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
	color: #fff;
}
.nueify-tech-type-word--blue { color: #00A3FF; }
.nueify-tech-type-tag {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(139,163,193,0.45);
	text-align: right;
	flex-shrink: 0;
}
@media (max-width: 600px) {
	.nueify-tech-type-word { font-size: clamp(2.5rem, 12vw, 3.5rem); }
	.nueify-tech-type-tag { display: none; }
}

/* ── Partner Strip ────────────────────────────────────────────────────── */
.nueify-tech-partner-strip {
	padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
	background: #060C17;
	border-top: 1px solid rgba(0,163,255,0.08);
}
.nueify-tech-partner-inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nueify-tech-partner-label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(139,163,193,0.35);
	margin-bottom: 1.25rem;
}
.nueify-tech-partner-logos {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}
.nueify-tech-partner-name {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: rgba(139,163,193,0.3);
	text-transform: uppercase;
	transition: color 0.2s;
}
.nueify-tech-partner-name:hover { color: rgba(139,163,193,0.6); }

/* ── Horizontal Work Scroller ─────────────────────────────────────────── */
.nueify-tech-hscroll-section {
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
	background: #0A1628;
	overflow: hidden;
}
.nueify-tech-hscroll-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-right: clamp(1.5rem, 6vw, 5rem);
	margin-bottom: 2.5rem;
}
.nueify-tech-hscroll-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	padding-right: clamp(1.5rem, 6vw, 5rem);
	padding-bottom: 1.5rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.nueify-tech-hscroll-track::-webkit-scrollbar { height: 4px; }
.nueify-tech-hscroll-track::-webkit-scrollbar-track { background: rgba(0,163,255,0.06); border-radius: 2px; }
.nueify-tech-hscroll-track::-webkit-scrollbar-thumb { background: #00A3FF; border-radius: 2px; }
.nueify-tech-hscroll-card {
	flex-shrink: 0;
	width: 440px;
	background: #060C17;
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 14px;
	overflow: hidden;
	scroll-snap-align: start;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s;
}
.nueify-tech-hscroll-card:hover { border-color: rgba(0,163,255,0.4); }
.nueify-tech-hscroll-thumb {
	height: 240px;
	background: linear-gradient(135deg, #0D1E35 0%, #0D2540 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	font-weight: 900;
	color: rgba(0,163,255,0.08);
	letter-spacing: -0.05em;
	position: relative;
}
.nueify-tech-hscroll-cat {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(0,163,255,0.15);
	border: 1px solid rgba(0,163,255,0.3);
	color: #00A3FF;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.375rem 0.875rem;
	border-radius: 4px;
}
.nueify-tech-hscroll-body {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.nueify-tech-hscroll-client {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(139,163,193,0.5);
	margin-bottom: 0.5rem;
}
.nueify-tech-hscroll-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
	line-height: 1.2;
	margin-bottom: 0.75rem;
}
.nueify-tech-hscroll-excerpt {
	font-size: 0.875rem;
	color: #8BA3C1;
	line-height: 1.65;
	flex: 1;
	margin-bottom: 1.25rem;
}
.nueify-tech-hscroll-link {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #00A3FF;
	text-decoration: none;
	letter-spacing: 0.03em;
}
@media (max-width: 600px) {
	.nueify-tech-hscroll-card { width: 320px; }
}

/* ── 50/50 Split Section ──────────────────────────────────────────────── */
.nueify-tech-split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.nueify-tech-split-visual {
	background: linear-gradient(135deg, #060C17 0%, #0D2040 100%);
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.nueify-tech-split-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0,163,255,0.12), transparent 70%);
	pointer-events: none;
}
.nueify-tech-split-vis-label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(0,163,255,0.5);
	position: relative;
	z-index: 1;
}
.nueify-tech-split-content {
	background: #0A1628;
	padding: clamp(3rem, 6vw, 5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid rgba(0,163,255,0.12);
}
.nueify-tech-split-heading {
	font-size: clamp(1.75rem, 3vw, 2.625rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 1.25rem;
}
.nueify-tech-split-desc {
	font-size: 0.9375rem;
	color: #8BA3C1;
	line-height: 1.75;
	margin-bottom: 2rem;
}
.nueify-tech-split-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.nueify-tech-split-metric-num {
	font-size: 2rem;
	font-weight: 900;
	color: #00A3FF;
	letter-spacing: -0.05em;
}
.nueify-tech-split-metric-label {
	font-size: 0.75rem;
	color: #8BA3C1;
	margin-top: 0.25rem;
	line-height: 1.4;
}
@media (max-width: 860px) {
	.nueify-tech-split-section { grid-template-columns: 1fr; }
	.nueify-tech-split-visual { min-height: 280px; }
	.nueify-tech-split-content { border-left: none; border-top: 1px solid rgba(0,163,255,0.12); }
}

/* ── Portfolio Hero Card (Work page) ──────────────────────────────────── */
.nueify-tech-port-hero-wrap {
	padding: 3rem clamp(1.5rem, 6vw, 5rem) 0;
}
.nueify-tech-port-hero-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #0A1628;
	border: 1px solid rgba(0,163,255,0.2);
	border-radius: 16px;
	overflow: hidden;
}
.nueify-tech-port-hero-visual {
	background: linear-gradient(135deg, #0D1E35 0%, #0D2540 100%);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
	font-weight: 900;
	color: rgba(0,163,255,0.08);
	letter-spacing: -0.05em;
	position: relative;
}
.nueify-tech-port-hero-ftag {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	background: rgba(0,163,255,0.15);
	border: 1px solid rgba(0,163,255,0.3);
	color: #00A3FF;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.375rem 0.875rem;
	border-radius: 4px;
}
.nueify-tech-port-hero-body {
	padding: clamp(2.5rem, 5vw, 4rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.nueify-tech-port-hero-client {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #00A3FF;
	margin-bottom: 1rem;
}
.nueify-tech-port-hero-title {
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 1rem;
}
.nueify-tech-port-hero-excerpt {
	font-size: 0.9375rem;
	color: #8BA3C1;
	line-height: 1.75;
	margin-bottom: 2rem;
}
.nueify-tech-port-hero-metrics {
	display: flex;
	gap: 2.5rem;
	margin-bottom: 2rem;
}
.nueify-tech-port-hero-metric-num {
	font-size: 1.75rem;
	font-weight: 900;
	color: #00A3FF;
	letter-spacing: -0.05em;
}
.nueify-tech-port-hero-metric-label {
	font-size: 0.6875rem;
	color: #8BA3C1;
	margin-top: 0.25rem;
	line-height: 1.4;
}
@media (max-width: 860px) {
	.nueify-tech-port-hero-card { grid-template-columns: 1fr; }
	.nueify-tech-port-hero-visual { min-height: 260px; }
}

/* =========================================================================
   Nueify Tech — Additional Premium Elements
   ========================================================================= */

/* ── Announcement Bar ─────────────────────────────────────────────────── */
.nt-announcement-bar {
	background: #00A3FF;
	padding: 0.625rem 1.5rem;
	overflow: hidden;
	max-height: 60px;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}
.nt-announcement-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	position: relative;
}
.nt-announcement-text {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #060C17;
	text-decoration: none;
	letter-spacing: 0.02em;
}
.nt-announcement-text:hover { text-decoration: underline; }
.nt-announcement-close {
	position: absolute;
	right: 0;
	background: none;
	border: none;
	color: rgba(6,12,23,0.6);
	font-size: 1.25rem;
	cursor: pointer;
	line-height: 1;
	padding: 0 0.25rem;
	font-family: inherit;
	transition: color 0.2s;
}
.nt-announcement-close:hover { color: #060C17; }

/* ── Custom Cursor Dot ────────────────────────────────────────────────── */
.nt-cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #00A3FF;
	pointer-events: none;
	z-index: 999999;
	will-change: transform;
	transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
	box-shadow: 0 0 12px rgba(0,163,255,0.6);
}
.nt-cursor-dot--hover {
	width: 28px;
	height: 28px;
	background: rgba(0,163,255,0.3);
	box-shadow: 0 0 20px rgba(0,163,255,0.4);
}
.nt-cursor-enabled,
.nt-cursor-enabled a,
.nt-cursor-enabled button { cursor: none; }

/* ── Floating CTA ─────────────────────────────────────────────────────── */
.nt-float-cta {
	position: fixed;
	bottom: 6.5rem;
	right: 2rem;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background: #00A3FF;
	color: #060C17;
	font-size: 0.875rem;
	font-weight: 700;
	padding: 0.875rem 1.5rem;
	border-radius: 100px;
	text-decoration: none;
	box-shadow: 0 4px 24px rgba(0,163,255,0.4);
	z-index: 9996;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s;
}
.nt-float-cta--visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.nt-float-cta:hover {
	box-shadow: 0 6px 32px rgba(0,163,255,0.6);
}
@media (max-width: 600px) {
	.nt-float-cta span { display: none; }
	.nt-float-cta { padding: 1rem; border-radius: 50%; }
}

/* ── Process Section ──────────────────────────────────────────────────── */
.nt-process-section {
	padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.1);
}
.nt-process-inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nt-process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
	margin-top: 1rem;
}
.nt-process-step {
	padding: 2rem 2rem 2rem 0;
	position: relative;
}
.nt-process-connector {
	position: absolute;
	top: 44px;
	right: 0;
	width: calc(100% - 56px);
	height: 1px;
	background: rgba(0,163,255,0.2);
	z-index: 0;
}
.nt-process-step:last-child .nt-process-connector { display: none; }
.nt-process-icon-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}
.nt-process-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(0,163,255,0.08);
	border: 1px solid rgba(0,163,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.nt-process-num {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: rgba(0,163,255,0.5);
}
.nt-process-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	margin-bottom: 0.75rem;
}
.nt-process-desc {
	font-size: 0.9rem;
	color: #8BA3C1;
	line-height: 1.7;
}
@media (max-width: 900px) {
	.nt-process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
	.nt-process-connector { display: none; }
	.nt-process-step { padding: 2rem; background: rgba(0,163,255,0.04); border: 1px solid rgba(0,163,255,0.1); border-radius: 12px; }
}
@media (max-width: 560px) {
	.nt-process-steps { grid-template-columns: 1fr; }
}

/* ── Awards Strip ─────────────────────────────────────────────────────── */
.nt-awards-section {
	padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
	background: #060C17;
	border-top: 1px solid rgba(0,163,255,0.08);
	border-bottom: 1px solid rgba(0,163,255,0.08);
}
.nt-awards-inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nt-awards-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}
.nt-award-card {
	background: rgba(0,163,255,0.04);
	border: 1px solid rgba(0,163,255,0.1);
	border-radius: 12px;
	padding: 1.5rem 1rem;
	text-align: center;
	transition: border-color 0.25s;
}
.nt-award-card:hover { border-color: rgba(0,163,255,0.3); }
.nt-award-icon { margin-bottom: 0.875rem; display: flex; justify-content: center; }
.nt-award-title {
	font-size: 0.9375rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}
.nt-award-subtitle {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #8BA3C1;
	letter-spacing: 0.05em;
	margin-top: 0.25rem;
}
@media (max-width: 1000px) { .nt-awards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .nt-awards-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── FAQ Accordion ────────────────────────────────────────────────────── */
.nt-faq-section {
	padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
	background: #0A1628;
	border-top: 1px solid rgba(0,163,255,0.1);
}
.nt-faq-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 5rem;
	align-items: start;
}
.nt-faq-list { display: flex; flex-direction: column; }
.nt-faq-item {
	border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nt-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.nt-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.375rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	text-align: left;
	gap: 1rem;
	line-height: 1.4;
	transition: color 0.2s;
}
.nt-faq-question:hover { color: #00A3FF; }
.nt-faq-chevron {
	flex-shrink: 0;
	color: #8BA3C1;
	transition: transform 0.3s ease;
}
.nt-faq-item--open .nt-faq-chevron { transform: rotate(180deg); }
.nt-faq-item--open .nt-faq-question { color: #00A3FF; }
.nt-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.nt-faq-answer-inner {
	padding-bottom: 1.375rem;
	font-size: 0.9375rem;
	color: #8BA3C1;
	line-height: 1.75;
}
@media (max-width: 860px) {
	.nt-faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Comparison Table ─────────────────────────────────────────────────── */
.nt-comparison-section {
	padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
	background: #060C17;
	border-top: 1px solid rgba(0,163,255,0.1);
}
.nt-comparison-inner {
	max-width: 900px;
	margin: 0 auto;
}
.nt-comparison-table {
	border: 1px solid rgba(0,163,255,0.15);
	border-radius: 14px;
	overflow: hidden;
}
.nt-comparison-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	background: rgba(0,163,255,0.06);
	border-bottom: 1px solid rgba(0,163,255,0.15);
	padding: 1rem 1.5rem;
}
.nt-comparison-col-label { font-size: 0.75rem; font-weight: 700; color: #8BA3C1; letter-spacing: 0.1em; text-transform: uppercase; }
.nt-comparison-col-us    { font-size: 0.75rem; font-weight: 700; color: #00A3FF; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.nt-comparison-col-them  { font-size: 0.75rem; font-weight: 700; color: rgba(139,163,193,0.4); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.nt-comparison-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid rgba(0,163,255,0.06);
	align-items: center;
	transition: background 0.15s;
}
.nt-comparison-row:last-child { border-bottom: none; }
.nt-comparison-row:hover { background: rgba(0,163,255,0.03); }
.nt-comparison-cell-label { font-size: 0.9rem; color: #fff; line-height: 1.4; }
.nt-comparison-cell { display: flex; justify-content: center; align-items: center; }
.nt-check { display: flex; align-items: center; justify-content: center; }
.nt-cross { display: flex; align-items: center; justify-content: center; opacity: 0.4; }
@media (max-width: 600px) {
	.nt-comparison-header,
	.nt-comparison-row { grid-template-columns: 1fr 40px 40px; padding: 0.875rem 1rem; gap: 0.5rem; }
	.nt-comparison-cell-label { font-size: 0.8125rem; }
}

/* Push sticky header below WP admin bar */
.admin-bar #sticky-header.is-sticky,
.admin-bar .sticky-wrapper.is-sticky #sticky-header {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    .admin-bar #sticky-header.is-sticky,
    .admin-bar .sticky-wrapper.is-sticky #sticky-header {
        top: 46px !important;
    }
}

/* Admin bar always on top — never covered by sticky header or any overlay */
#wpadminbar {
    z-index: 999999 !important;
    position: fixed !important;
}
.sticky-wrapper {
    z-index: auto !important;
}
#sticky-header, #sticky-header.is-sticky {
    z-index: 9999 !important;
}

/* Keep header dark in both light and dark modes */
[data-color-scheme=light] #sticky-header,
[data-color-scheme=light] header.wp-block-group.has-base-background-color {
    background-color: #060C17 !important;
    --wp--preset--color--base: #060C17 !important;
}

[data-color-scheme=light] #sticky-header a,
[data-color-scheme=light] #sticky-header .wp-block-navigation a,
[data-color-scheme=light] #sticky-header .wp-block-site-title a,
[data-color-scheme=light] header.wp-block-group .wp-block-navigation a,
[data-color-scheme=light] header.wp-block-group .wp-block-site-title a {
    color: #ffffff !important;
}

/* =========================================================================
   Contact Form 7 — Nueify Brand Styles
   ========================================================================= */

.wpcf7-form p {
	margin: 0 0 1.25rem;
}
.wpcf7-form p:last-of-type {
	margin-bottom: 0;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select {
	width: 100%;
	background: #0D1F3C;
	border: 1px solid rgba(0, 163, 255, 0.2);
	border-radius: 8px;
	color: #F0F6FF;
	font-family: inherit;
	font-size: 0.9375rem;
	line-height: 1.6;
	padding: 0.875rem 1.25rem;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	display: block;
}

.wpcf7-form-control.wpcf7-text::placeholder,
.wpcf7-form-control.wpcf7-email::placeholder,
.wpcf7-form-control.wpcf7-textarea::placeholder {
	color: #8BA3C1;
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7-form-control.wpcf7-select:focus {
	border-color: #00A3FF;
	box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.12);
}

/* Select custom arrow */
.wpcf7-form-control.wpcf7-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238BA3C1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	padding-right: 2.75rem;
	cursor: pointer;
	color: #8BA3C1;
}
.wpcf7-form-control.wpcf7-select:focus,
.wpcf7-form-control.wpcf7-select:valid {
	color: #F0F6FF;
}

/* Textarea */
.wpcf7-form-control.wpcf7-textarea {
	resize: vertical;
	min-height: 150px;
}

/* Submit */
.wpcf7-form-control.wpcf7-submit {
	width: 100%;
	background: #00A3FF;
	color: #060C17;
	border: none;
	border-radius: 8px;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	padding: 1rem 2rem;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	letter-spacing: 0.01em;
	margin-top: 0.25rem;
}
.wpcf7-form-control.wpcf7-submit:hover {
	background: #38BDF8;
}
.wpcf7-form-control.wpcf7-submit:active {
	transform: scale(0.98);
}

/* Validation */
.wpcf7-not-valid {
	border-color: #ef4444 !important;
}
.wpcf7-not-valid-tip {
	color: #f87171;
	font-size: 0.8125rem;
	margin-top: 0.4rem;
	display: block;
}

/* Response messages */
.wpcf7-response-output {
	margin-top: 1.25rem !important;
	padding: 0.875rem 1.25rem !important;
	border-radius: 8px !important;
	font-size: 0.9375rem !important;
	border: none !important;
}
.wpcf7-form.sent .wpcf7-response-output {
	background: rgba(0, 163, 255, 0.1) !important;
	color: #00A3FF !important;
	border: 1px solid rgba(0, 163, 255, 0.25) !important;
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
	background: rgba(239, 68, 68, 0.1) !important;
	color: #fca5a5 !important;
	border: 1px solid rgba(239, 68, 68, 0.25) !important;
}

/* Loading spinner */
.wpcf7-spinner {
	background-color: #060C17 !important;
}

/* CF7 select field labels via generated content */
.wpcf7-form-control-wrap[data-name="your-service"]::before {
	content: "What do you need help with?";
	display: block;
	color: #8BA3C1;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
}
.wpcf7-form-control-wrap[data-name="your-followup"]::before {
	content: "How would you like us to follow up?";
	display: block;
	color: #8BA3C1;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
}
