:root {
	/* Colors are driven by Customizer inline styles, these are fallbacks */
	--primary-color: #665efc;
	--primary-hover-color: #7c75ff;
	--secondary-color: #5de6ff;
	--background-color: #ffffff !important;
	--heading-color: #0b1326;
	--body-text-color: #334155;
	--footer-bg-color: #e4e4f7;
	--border-color: rgba(0, 0, 0, 0.08);
	--light-bg: rgba(0, 0, 0, 0.02);

	/* Spacing System (8px base) */
	--space-8: 8px;
	--space-16: 16px;
	--space-24: 24px;
	--space-32: 32px;
	--space-48: 48px;
	--space-64: 64px;
	--space-80: 80px;
	--space-96: 96px;
	--space-120: 120px;

	/* Logo sizes */
	--logo-max-width: 160px;
	--logo-max-height: 50px;

	/* Design tokens */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
	--shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
	--shadow-primary: 0 12px 24px -8px rgba(128, 131, 255, 0.35);
}

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

html {
	scroll-behavior: smooth;
	font-size: var(--body-font-size, 16px);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background-color: var(--background-color);
	color: var(--body-text-color);
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Accessibility Skip Link */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--primary-color);
	color: #fff;
	padding: 10px 20px;
	z-index: 99999;
	text-decoration: none;
	font-weight: 600;
	border-radius: 0 0 8px 0;
	transition: top 0.2s ease;
}
.skip-link:focus {
	top: 0;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	color: var(--heading-color);
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: var(--space-16);
}

h1 {
	font-size: 3.75rem; /* 60px */
	letter-spacing: -0.03em;
	font-weight: 800;
}

h2 {
	font-size: 2.875rem; /* 46px */
	letter-spacing: -0.025em;
	font-weight: 800;
}

h3 {
	font-size: 2rem; /* 32px */
	letter-spacing: -0.02em;
}

h4 {
	font-size: 1.5rem; /* 24px */
	letter-spacing: -0.01em;
}

p {
	margin-bottom: var(--space-24);
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}
a:hover {
	color: var(--primary-hover-color);
}

.text-center { text-align: center; }
.text-muted { color: var(--body-text-color); opacity: 0.85; }

/* ==========================================================================
   3. Main Components & Layout Structure
   ========================================================================== */
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--space-32);
}

.section {
	padding: var(--space-120) 0;
}

.section-dark {
	background-color: var(--footer-bg-color);
	color: var(--body-text-color);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
	color: var(--heading-color);
}

.section-header {
	max-width: 720px;
	margin: 0 auto var(--space-64) auto;
	text-align: center;
}
.section-header .badge {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: var(--space-16);
	background: rgba(192, 193, 255, 0.05);
	padding: 6px 16px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(192, 193, 255, 0.12);
}
.section-header p {
	font-size: 1.125rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.9375rem; /* 15px */
	padding: 14px 32px;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: center;
	line-height: 1.2;
}

.btn-primary {
	background-color: #84ABD6 !important;
	color: #ffffff !important;
	border-color: #84ABD6 !important;
	box-shadow: 0 12px 24px -8px rgba(132, 171, 214, 0.35);
}
.btn-primary:hover {
	background-color: #6f98c4 !important;
	color: #ffffff !important;
	border-color: #6f98c4 !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -8px rgba(132, 171, 214, 0.5);
}

.btn-secondary {
	background-color: #84ABD6 !important;
	border-color: #84ABD6 !important;
	color: #ffffff !important;
}
.btn-secondary:hover {
	background-color: #6f98c4 !important;
	border-color: #6f98c4 !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(132, 171, 214, 0.5);
}

.btn-outline-white {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
}
.btn-outline-white:hover {
	background-color: #ffffff;
	color: var(--heading-color);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(255, 255, 255, 0.15);
}

.btn-sm {
	padding: 10px 22px;
	font-size: 0.875rem;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--primary-color);
	transition: color 0.2s ease;
}
.link-arrow svg {
	width: 16px;
	height: 16px;
	margin-left: 6px;
	transition: transform 0.2s ease;
}
.link-arrow:hover svg {
	transform: translateX(4px);
}

/* ==========================================================================
   4. Header Layout
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 1000;
	background-color: #ffffff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
	height: 72px;
	background-color: #ffffff;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.logo-area a {
	display: flex;
	align-items: center;
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--heading-color);
	letter-spacing: -0.03em;
}

.logo-area img {
	max-width: var(--logo-max-width, 160px);
	max-height: var(--logo-max-height, 50px);
	height: auto;
	width: auto;
}

/* Nav Menu */
.nav-container {
	display: flex;
	align-items: center;
	gap: var(--space-32);
}

.primary-nav {
	display: flex;
	align-items: center;
	list-style: none;
	gap: var(--space-32);
}

.primary-nav li {
	position: relative;
}

.primary-nav a {
	font-size: 0.9375rem; /* 15px */
	font-weight: 600;
	color: var(--body-text-color);
	padding: 24px 0;
	display: inline-block;
	position: relative;
	opacity: 0.9;
	transition: all 0.2s ease;
}
.primary-nav a:hover,
.primary-nav li.current-menu-item > a {
	color: var(--primary-color);
	opacity: 1;
}
.primary-nav a::after {
	content: '';
	position: absolute;
	bottom: 16px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.primary-nav a:hover::after,
.primary-nav li.current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Dropdown Services Menu */
.primary-nav li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 1.5px solid var(--body-text-color);
	border-bottom: 1.5px solid var(--body-text-color);
	transform: rotate(45deg);
	margin-left: 6px;
	vertical-align: middle;
	transition: transform 0.2s ease, border-color 0.2s ease;
}
.primary-nav li.menu-item-has-children:hover > a::after {
	transform: rotate(-135deg);
	border-color: var(--primary-color);
}

.primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(15px);
	background: #ffffff;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-md);
	min-width: 250px;
	padding: var(--space-16) 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1001;
}

.primary-nav li.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.primary-nav .sub-menu a {
	padding: 10px 24px;
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--body-text-color);
}
.primary-nav .sub-menu a:hover {
	background-color: var(--light-bg);
	color: var(--primary-color);
}
.primary-nav .sub-menu a::after {
	display: none !important;
}

/* Header Right CTA */
.header-right {
	display: flex;
	align-items: center;
	gap: var(--space-24);
}

.header-phone {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--body-text-color);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s ease;
}
.header-phone:hover {
	color: var(--primary-color);
}
.header-phone svg {
	width: 14px;
	height: 14px;
	color: var(--primary-color);
}

.header-cta-btn {
	font-size: 0.875rem; /* 14px */
	padding: 10px 24px;
	border-radius: var(--radius-full);
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(132, 171, 214, 0.15);
}
.header-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(132, 171, 214, 0.3);
}
.site-header .header-cta-btn,
.mobile-nav-drawer .header-cta-btn {
	color: #1e293b !important;
}
.site-header .header-cta-btn:hover,
.mobile-nav-drawer .header-cta-btn:hover {
	color: #1e293b !important;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--heading-color);
	padding: 4px;
	transition: color 0.2s ease;
}
.mobile-menu-toggle:hover {
	color: var(--primary-color);
}
.mobile-menu-toggle svg {
	width: 24px;
	height: 24px;
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background-color: #ffffff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1500;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
	border-left: 1px solid var(--border-color);
	padding: var(--space-32);
	display: flex;
	flex-direction: column;
	transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer.open {
	right: 0;
}

.mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-48);
}
.mobile-drawer-close {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--heading-color);
	transition: color 0.2s ease;
}
.mobile-drawer-close:hover {
	color: var(--primary-color);
}
.mobile-drawer-close svg {
	width: 24px;
	height: 24px;
}

.mobile-nav-menu {
	list-style: none;
	margin-bottom: var(--space-48);
}
.mobile-nav-menu li {
	margin-bottom: var(--space-24);
}
.mobile-nav-menu a {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--heading-color);
	transition: color 0.2s ease;
}
.mobile-nav-menu a:hover {
	color: var(--primary-color);
}
.mobile-nav-menu .sub-menu {
	list-style: none;
	padding-left: var(--space-16);
	margin-top: var(--space-12);
}
.mobile-nav-menu .sub-menu li {
	margin-bottom: var(--space-12);
}
.mobile-nav-menu .sub-menu a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--body-text-color);
	opacity: 0.8;
}
.mobile-nav-menu .sub-menu a:hover {
	color: var(--primary-color);
}

.mobile-drawer-cta {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-16);
}

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(26, 26, 46, 0.4);
	backdrop-filter: blur(4px);
	z-index: 1400;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* ==========================================================================
   5. Footer Layout
   ========================================================================== */
.site-footer {
	background-color: var(--footer-bg-color);
	color: var(--body-text-color);
	padding: var(--space-80) 0 var(--space-32) 0;
	border-top: 1px solid var(--border-color);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: var(--space-48);
	margin-bottom: var(--space-64);
}

.footer-logo-area h3 {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: var(--space-16);
}
.footer-logo-area p {
	color: var(--body-text-color);
	opacity: 0.8;
	font-size: 0.9375rem;
	max-width: 320px;
}

.footer-col h4 {
	color: var(--heading-color);
	font-size: 1.125rem;
	margin-bottom: var(--space-24);
	position: relative;
}

.footer-links {
	list-style: none;
}
.footer-links li {
	margin-bottom: var(--space-12);
}
.footer-links a {
	color: var(--body-text-color);
	opacity: 0.8;
	font-size: 0.9375rem;
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
	color: var(--primary-color);
	padding-left: 4px;
}

.footer-contact-info p {
	color: var(--body-text-color);
	opacity: 0.8;
	font-size: 0.9375rem;
	margin-bottom: var(--space-12);
	display: flex;
	align-items: flex-start;
	gap: var(--space-12);
}
.footer-contact-info svg {
	width: 14px;
	height: 14px;
	color: var(--primary-color);
	margin-top: 5px;
	flex-shrink: 0;
}

.footer-socials {
	display: flex;
	gap: var(--space-16);
	margin-top: var(--space-24);
}
.footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--light-bg);
	color: var(--heading-color);
	transition: background-color 0.2s, color 0.2s;
}
.footer-socials a:hover {
	background-color: var(--primary-color);
	color: #ffffff;
}
.footer-socials svg {
	width: 14px;
	height: 14px;
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: var(--space-32);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--body-text-color);
	opacity: 0.6;
}

.footer-bottom-links {
	display: flex;
	gap: var(--space-24);
}
.footer-bottom-links a {
	color: var(--body-text-color);
}
.footer-bottom-links a:hover {
	color: var(--primary-color);
}

/* ==========================================================================
   6. Homepage Specific Styles
   ========================================================================== */

/* Hero Section */
.hero-wrapper {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 72px;
	position: relative;
	background-color: var(--background-color);
}

.hero-wrapper.bg-light {
	background-color: var(--light-bg);
}

.hero-wrapper.bg-gradient {
	background: linear-gradient(135deg, #f2f2fd 0%, #ffffff 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-64);
	align-items: center;
	width: 100%;
}

.hero-content {
	max-width: 680px;
}

.hero-badge {
	display: inline-block;
	background: rgba(26, 107, 255, 0.08);
	color: var(--primary-color);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: var(--space-24);
}

.hero-content h1 {
	margin-bottom: var(--space-24);
}

.hero-content p {
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: var(--space-48);
}

.hero-ctas {
	display: flex;
	gap: var(--space-16);
	align-items: center;
}

.hero-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-illustration svg {
	width: 100%;
	max-width: 480px;
	height: auto;
}
.hero-illustration .hero-custom-image {
	width: 100%;
	max-width: 480px;
	height: auto;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
}

/* Client Logos Marquee Section */
.logos-section {
	padding: var(--space-48) 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	background-color: #ffffff;
}

.logos-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--body-text-color);
	opacity: 0.6;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: var(--space-24);
}

.logos-marquee-wrapper {
	overflow: hidden;
	width: 100%;
	position: relative;
	mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.logos-marquee-track {
	display: flex;
	width: calc(200px * 20);
	animation: scrollMarquee 30s linear infinite;
	align-items: center;
	gap: 60px;
}

.logos-marquee-track img {
	height: 36px;
	width: auto;
	opacity: 0.45;
	filter: grayscale(1);
	transition: opacity 0.2s ease, filter 0.2s ease;
}
.logos-marquee-track img:hover {
	opacity: 0.85;
	filter: grayscale(0);
}

@keyframes scrollMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-200px * 10)); }
}

/* Services Section Cards */
.services-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
}

.service-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: var(--space-32) var(--space-24);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}

.service-card-icon {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(102, 94, 252, 0.06);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-16);
	border: 1px solid rgba(102, 94, 252, 0.15);
}
.service-card-icon svg {
	width: 16px;
	height: 16px;
}

.service-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: var(--space-12);
	letter-spacing: -0.01em;
}

.service-card p {
	font-size: 0.9375rem;
	color: var(--body-text-color);
	margin-bottom: var(--space-24);
	flex-grow: 1;
	line-height: 1.6;
}

/* Stats Counter Dashboard */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-32);
}

.stat-item {
	text-align: center;
}

.stat-num {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: var(--space-8);
	color: var(--primary-color);
	letter-spacing: -0.02em;
}

.section-dark .stat-num {
	color: var(--primary-color);
}

.stat-label {
	font-size: 1rem;
	font-weight: 500;
	color: var(--body-text-color);
}
body:not(.section-dark) .stat-label {
	color: var(--body-text-color);
}

/* How It Works Section */
.process-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-48);
	position: relative;
}

/* Dashed line connector */
.process-flow::before {
	content: '';
	position: absolute;
	top: 24px;
	left: 10%;
	right: 10%;
	height: 2px;
	background-image: linear-gradient(to right, var(--border-color) 60%, rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 10px 2px;
	background-repeat: repeat-x;
	z-index: 1;
}

.process-step {
	text-align: center;
	position: relative;
	z-index: 2;
}

.step-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-24) auto;
	box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.process-step h3 {
	font-size: 1.25rem;
	margin-bottom: var(--space-12);
}

.process-step p {
	font-size: 0.9375rem;
	max-width: 240px;
	margin: 0 auto;
}

/* Case Study Grid */
.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
}

.case-study-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.case-study-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}

.case-study-thumb {
	position: relative;
	aspect-ratio: 3/2;
	background-color: var(--light-bg);
	overflow: hidden;
}
.case-study-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-study-card:hover .case-study-thumb img {
	transform: scale(1.08);
}

.case-study-tag {
	position: absolute;
	top: var(--space-16);
	left: var(--space-16);
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--heading-color);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.case-study-body {
	padding: var(--space-32) var(--space-24) var(--space-24) var(--space-24);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.case-study-metric {
	display: inline-block;
	color: var(--primary-color);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: var(--space-12);
	letter-spacing: 0.05em;
}

.case-study-body h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: var(--space-12);
}
.case-study-body h3 a {
	color: var(--heading-color);
}
.case-study-body h3 a:hover {
	color: var(--primary-color);
}

.case-study-body p {
	font-size: 0.875rem;
	color: var(--body-text-color);
	margin-bottom: var(--space-24);
	flex-grow: 1;
	line-height: 1.6;
}

/* ==========================================================================
   Blog Archive Page
   ========================================================================== */

/* Blog Archive Hero */
.blog-archive-hero {
	padding: 140px 0 60px 0;
	background-color: var(--background-color);
	border-bottom: 1px solid var(--border-color);
	text-align: center;
}
.blog-archive-hero h1 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--heading-color);
	margin-bottom: var(--space-16);
	line-height: 1.15;
}
.blog-archive-hero-sub {
	font-size: 1.125rem;
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Blog Archive Section */
.blog-archive-section {
	padding: var(--space-80) 0 var(--space-96) 0;
	background-color: var(--background-color);
}

/* Blog Archive Grid */
.blog-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
}

/* Blog Card */
.blog-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(102, 94, 252, 0.12);
	border-color: var(--primary-color);
}

/* Blog Card Link */
.blog-card-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-decoration: none;
	color: inherit;
}
.blog-card-link:hover {
	color: inherit;
}

/* Blog Card Thumbnail */
.blog-card-thumb {
	position: relative;
	aspect-ratio: 16/10;
	background-color: var(--light-bg);
	overflow: hidden;
}
.blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card-thumb img {
	transform: scale(1.06);
}

/* Subtle gradient overlay on hover */
.blog-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(11, 19, 38, 0.08) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.blog-card:hover .blog-card-overlay {
	opacity: 1;
}

/* Thumbnail placeholder */
.blog-card-thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(102, 94, 252, 0.04) 0%, rgba(93, 230, 255, 0.06) 100%);
}
.blog-card-thumb-placeholder .blog-placeholder-icon {
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	opacity: 0.4;
}

/* Blog Card Body */
.blog-card-body {
	padding: var(--space-24) var(--space-24) var(--space-32) var(--space-24);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* Blog Card Title */
.blog-card-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--heading-color);
	line-height: 1.35;
	margin-bottom: 0;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card:hover .blog-card-title {
	color: var(--primary-color);
}

/* ---- Blog Pagination ---- */
.blog-pagination {
	margin-top: var(--space-64);
	display: flex;
	justify-content: center;
}
.blog-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}
.blog-pagination .page-numbers li {
	display: flex;
}
.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: var(--radius-md);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--body-text-color);
	background: #ffffff;
	border: 1px solid var(--border-color);
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Pagination hover */
.blog-pagination .page-numbers li a:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 94, 252, 0.25);
}

/* Pagination active/current */
.blog-pagination .page-numbers li span.current {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(102, 94, 252, 0.3);
	cursor: default;
}

/* Pagination dots */
.blog-pagination .page-numbers li span.dots {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	cursor: default;
	color: var(--body-text-color);
	opacity: 0.5;
}

/* Pagination arrows (prev/next) */
.blog-pagination .page-numbers li a.prev,
.blog-pagination .page-numbers li a.next {
	gap: 8px;
	padding: 0 20px;
}
.blog-pagination .page-numbers li a.prev .blog-pagination-arrow {
	transform: rotate(180deg);
}
.blog-pagination .page-numbers li a .blog-pagination-arrow svg {
	width: 14px;
	height: 14px;
}
.blog-pagination .page-numbers li a.prev:hover,
.blog-pagination .page-numbers li a.next:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #ffffff;
}

/* ---- Blog Empty State ---- */
.blog-archive-empty {
	text-align: center;
	padding: var(--space-96) 0;
	max-width: 480px;
	margin: 0 auto;
}
.blog-archive-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(102, 94, 252, 0.08);
	margin-bottom: var(--space-24);
}
.blog-archive-empty-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary-color);
}
.blog-archive-empty h2 {
	margin-bottom: var(--space-16);
}

/* ---- Blog Archive Responsive ---- */

/* Tablet: 2 columns */
@media (max-width: 960px) {
	.blog-archive-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-24);
	}
	.blog-archive-hero h1 {
		font-size: 2.5rem;
	}
}

/* Mobile: 1 column */
@media (max-width: 640px) {
	.blog-archive-hero {
		padding: 120px 0 40px 0;
	}
	.blog-archive-hero h1 {
		font-size: 2rem;
	}
	.blog-archive-hero-sub {
		font-size: 1rem;
	}
	.blog-archive-section {
		padding: var(--space-48) 0 var(--space-64) 0;
	}
	.blog-archive-grid {
		grid-template-columns: 1fr;
		gap: var(--space-24);
	}
	.blog-card-title {
		font-size: 1.0625rem;
	}
	.blog-pagination .page-numbers li a,
	.blog-pagination .page-numbers li span {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: 0.8125rem;
	}
	.blog-pagination .page-numbers li a.prev,
	.blog-pagination .page-numbers li a.next {
		padding: 0 14px;
	}
	.blog-pagination .blog-pagination-label {
		display: none;
	}
}

/* Testimonials Grid Layout */
.testimonials-section {
	padding: var(--space-96) 0;
	overflow: hidden;
}

.testimonials-grid-container {
	width: 100%;
	margin-top: var(--space-48);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
}

/* Responsive Grid Breakpoints */
@media (max-width: 992px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: var(--space-24);
	}
}

/* Testimonial Card Styling */
.testimonial-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	padding: 40px 36px 36px 36px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	height: 100%;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.testimonial-quote-icon {
	position: absolute;
	top: 32px;
	right: 32px;
	color: var(--primary-color);
	opacity: 0.03;
	pointer-events: none;
	z-index: 1;
}
.testimonial-quote-icon svg {
	width: 64px;
	height: 64px;
}

.testimonial-stars {
	color: #FFB800;
	display: flex;
	gap: 4px;
	margin-bottom: 28px;
	position: relative;
	z-index: 2;
}
.testimonial-stars svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.testimonial-quote {
	font-size: 1.0625rem;
	font-weight: 450;
	line-height: 1.75;
	color: #1e293b; /*slate-800, deeper and more premium color */
	margin-bottom: 0;
	font-style: normal;
	flex-grow: 1;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--space-16);
	padding-top: 24px;
	margin-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.05); /* clean, subtle separator line */
	position: relative;
	z-index: 2;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar-fallback {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #665efc 0%, #5de6ff 100%);
	color: #ffffff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	border: none;
	flex-shrink: 0;
}

.testimonial-meta {
	text-align: left;
}
.testimonial-meta h4 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 2px;
}
.testimonial-meta .testimonial-creds {
	font-size: 0.8125rem;
	color: var(--body-text-color);
	opacity: 0.85;
	margin-bottom: 0;
}

/* CTA Banner Section (Glassmorphic Lead Capture Card) */
.cta-banner-wrapper {
	padding: var(--space-96) 0;
	position: relative;
	overflow: hidden;
}

.cta-glass-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 40px;
	padding: var(--space-64) var(--space-64);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.cta-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: var(--space-64);
	align-items: center;
}

@media (max-width: 991px) {
	.cta-grid {
		grid-template-columns: 1fr;
		gap: var(--space-48);
	}
	.cta-glass-card {
		padding: var(--space-48) var(--space-32);
	}
}

@media (max-width: 575px) {
	.cta-glass-card {
		padding: var(--space-32) var(--space-20);
		border-radius: 24px;
	}
}

.cta-left h2 {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: var(--space-16);
	color: var(--heading-color);
}

.cta-left p {
	font-size: 1.125rem;
	color: var(--body-text-color);
	margin-bottom: var(--space-32);
	line-height: 1.6;
}

.cta-social-proof {
	display: flex;
	align-items: center;
	gap: var(--space-16);
}

.cta-avatars {
	display: flex;
}

.cta-avatars img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--background-color);
	margin-right: -12px;
}

.cta-proof-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--body-text-color);
}

.cta-right-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-16);
}

.cta-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-16);
}

@media (max-width: 767px) {
	.cta-form-row {
		grid-template-columns: 1fr;
	}
}

.cta-right-form input,
.cta-right-form select {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	padding: 16px 20px;
	background-color: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	color: var(--heading-color);
	width: 100%;
	transition: all 0.25s ease;
}

.cta-right-form input:focus,
.cta-right-form select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(102, 94, 252, 0.15);
}

.cta-right-form button {
	width: 100%;
	padding: 18px;
	font-weight: 700;
	font-size: 1.0625rem;
	border-radius: var(--radius-md);
	background-color: #665efc !important;
	color: #ffffff !important;
	border: none;
	cursor: pointer;
	box-shadow: 0 0 20px rgba(102, 94, 252, 0.3);
	transition: all 0.3s ease;
}

.cta-right-form button:hover {
	background-color: #7c75ff !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 0 25px rgba(102, 94, 252, 0.5);
}

.cta-right-form .footnote {
	text-align: center;
	font-size: 0.8125rem;
	font-style: italic;
	color: var(--body-text-color);
	opacity: 0.7;
	margin-top: var(--space-8);
}

/* ==========================================================================
   7. About Page Styling
   ========================================================================== */
.about-hero {
	padding-top: 140px;
	padding-bottom: var(--space-80);
	border-bottom: 1px solid var(--border-color);
}
.about-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-64);
	align-items: center;
}
.about-hero-img img {
	width: 100%;
	border-radius: var(--radius-xl);
	aspect-ratio: 4/3;
	object-fit: cover;
	background-color: var(--light-bg);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(15, 23, 42, 0.04);
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-64);
	align-items: center;
}
.about-story-img img {
	width: 100%;
	border-radius: var(--radius-xl);
	aspect-ratio: 4/3;
	object-fit: cover;
	background-color: var(--light-bg);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(15, 23, 42, 0.04);
}

.about-mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-32);
}
.mv-card {
	padding: var(--space-48) var(--space-32);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}
.mv-card h3 {
	margin-bottom: var(--space-16);
	font-weight: 700;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
}
.value-card {
	padding: var(--space-32);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}
.value-icon {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: rgba(102, 94, 252, 0.06);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-16);
	border: 1px solid rgba(102, 94, 252, 0.15);
}
.value-icon svg {
	width: 14px;
	height: 14px;
}
.value-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: var(--space-12);
}
.value-card p {
	margin-bottom: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-32);
}
.team-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}
.team-photo {
	aspect-ratio: 1/1;
	overflow: hidden;
	background-color: var(--light-bg);
}
.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-photo img {
	transform: scale(1.06);
}
.team-info {
	padding: var(--space-24);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.team-info h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.team-info p.role {
	font-size: 0.875rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: var(--space-12);
}
.team-info p.bio {
	font-size: 0.8125rem;
	margin-bottom: var(--space-24);
	flex-grow: 1;
	line-height: 1.5;
}
.team-linkedin {
	margin-top: auto;
	display: inline-flex;
	color: var(--body-text-color);
	opacity: 0.5;
	transition: all 0.2s ease;
}
.team-linkedin:hover {
	opacity: 1;
	color: var(--primary-color);
	transform: scale(1.1);
}
.team-linkedin svg {
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   8. Single Service Layout
   ========================================================================== */
.service-hero {
	padding-top: 140px;
	padding-bottom: var(--space-80);
	border-bottom: 1px solid var(--border-color);
}
.service-hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-64);
	align-items: center;
}
.service-hero-img img {
	width: 100%;
	border-radius: 16px;
	background-color: var(--light-bg);
}

.service-overview-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-64);
	align-items: center;
}
.service-features-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-16);
	margin-top: var(--space-32);
	list-style: none;
}
.service-features-list li {
	display: flex;
	align-items: center;
	gap: var(--space-12);
	font-size: 0.9375rem;
	font-weight: 500;
}
.service-features-list li svg {
	width: 12px;
	height: 12px;
	color: var(--primary-color);
	flex-shrink: 0;
}

/* Pricing cards style */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
	margin-top: var(--space-48);
}
.pricing-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: var(--space-48) var(--space-32);
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}
.pricing-card.popular {
	border: 2px solid var(--primary-color);
	box-shadow: 0 20px 48px -10px rgba(102, 94, 252, 0.15);
	transform: scale(1.03);
}
.pricing-card.popular:hover {
	transform: scale(1.05) translateY(-4px);
	box-shadow: 0 24px 56px -8px rgba(102, 94, 252, 0.25);
}
.pricing-card.popular::before {
	content: 'Popular';
	position: absolute;
	top: 24px;
	right: 24px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #8F8EFF 100%);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(192, 193, 255, 0.2);
	letter-spacing: 0.05em;
}
.price-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--space-8);
	letter-spacing: -0.01em;
}
.price-amt {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--heading-color);
	margin-bottom: var(--space-32);
	letter-spacing: -0.02em;
}
.price-features {
	list-style: none;
	margin-bottom: var(--space-48);
}
.price-features li {
	margin-bottom: var(--space-16);
	font-size: 0.9375rem;
	display: flex;
	align-items: center;
	gap: var(--space-12);
	font-weight: 500;
}
.price-features li svg {
	width: 12px;
	height: 12px;
	color: #10B981;
	flex-shrink: 0;
	background: rgba(16, 185, 129, 0.1);
	padding: 2px;
	border-radius: 50%;
}
.price-btn {
	margin-top: auto;
}

/* FAQ Accordion */
.faq-accordion {
	max-width: 800px;
	margin: var(--space-48) auto 0 auto;
}
.faq-item {
	border: 1px solid rgba(15, 23, 42, 0.06);
	background-color: #ffffff;
	border-radius: var(--radius-md);
	padding: var(--space-24);
	margin-bottom: var(--space-16);
	box-shadow: var(--shadow-sm);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
	border-color: rgba(192, 193, 255, 0.25);
	box-shadow: var(--shadow-md);
}
.faq-item.active {
	border-color: var(--primary-color);
	box-shadow: 0 12px 30px -10px rgba(192, 193, 255, 0.15);
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--heading-color);
}
.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--primary-color);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-item.active .faq-question::after {
	transform: rotate(45deg);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	color: var(--body-text-color);
	font-size: 0.9375rem;
	line-height: 1.6;
}
.faq-item.active .faq-answer {
	max-height: 1000px;
	margin-top: var(--space-16);
}

/* ==========================================================================
   9. Contact Page Styling
   ========================================================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-64);
}
.contact-info-col h2 {
	margin-bottom: var(--space-24);
}
.contact-info-list {
	margin-bottom: var(--space-48);
}
.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-16);
	margin-bottom: var(--space-24);
}
.contact-info-icon {
	color: var(--primary-color);
	margin-top: 4px;
}
.contact-info-icon svg {
	width: 14px;
	height: 14px;
}
.contact-info-val h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.contact-info-val p {
	margin-bottom: 0;
	font-size: 0.9375rem;
}

.map-container {
	border-radius: var(--radius-xl);
	overflow: hidden;
	height: 350px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: var(--shadow-md);
}
.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Forms */
.contact-form-container {
	background-color: var(--light-bg);
	border: 1px solid rgba(15, 23, 42, 0.05);
	border-radius: 24px;
	padding: var(--space-48);
	box-shadow: var(--shadow-lg);
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-24);
}
.form-full {
	grid-column: span 2;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.form-group label {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--heading-color);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	padding: 14px 18px;
	background-color: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	color: var(--heading-color);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	width: 100%;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(102, 94, 252, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-group textarea {
	height: 120px;
	resize: none;
}

.form-response {
	margin-top: var(--space-24);
	padding: var(--space-16);
	border-radius: 8px;
	display: none;
	font-weight: 500;
	font-size: 0.9375rem;
}
.form-response.success {
	background-color: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: rgb(16, 185, 129);
	display: block;
}
.form-response.error {
	background-color: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: rgb(239, 68, 68);
	display: block;
}

/* 3 cards under contact form */
.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
	margin-top: var(--space-64);
}
.contact-method-card {
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: var(--space-32);
	text-align: center;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-method-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 94, 252, 0.1);
	border-color: var(--primary-color);
	background: #ffffff;
}
.contact-method-card h3 {
	font-size: 1.125rem;
	margin-bottom: var(--space-8);
}
.contact-method-card p {
	margin-bottom: var(--space-16);
	font-size: 0.9375rem;
}
.contact-method-card a {
	font-weight: 600;
	font-size: 0.875rem;
}

/* ==========================================================================
   10. Case Studies Taxonomy Page
   ========================================================================== */
.cases-filter-bar {
	display: flex;
	justify-content: center;
	gap: var(--space-16);
	margin-bottom: var(--space-48);
}
.cases-filter-btn {
	background: none;
	border: 1px solid var(--border-color);
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--body-text-color);
	cursor: pointer;
	transition: all 0.2s;
}
.cases-filter-btn.active,
.cases-filter-btn:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #ffffff;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: var(--space-8);
	margin-top: var(--space-64);
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	color: var(--heading-color);
	font-weight: 500;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background-color: var(--primary-color);
	color: #ffffff;
	border-color: var(--primary-color);
}

/* ==========================================================================
   11. Responsive Styles
   ========================================================================== */
@media (max-width: 1280px) {
	h1 { font-size: 3rem; }
	h2 { font-size: 2.25rem; }
	.container { padding: 0 var(--space-24); }
}

@media (max-width: 1024px) {
	h1 { font-size: 2.75rem; }
	.hero-grid {
		grid-template-columns: 1fr;
		gap: var(--space-48);
	}
	.hero-content {
		order: 1;
	}
	.hero-illustration {
		order: 2;
		margin-top: var(--space-32);
	}
	.about-hero-grid,
	.about-story-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: var(--space-48);
	}
	.service-hero-grid,
	.service-overview-grid {
		grid-template-columns: 1fr;
		gap: var(--space-48);
	}
	.services-card-grid,
	.values-grid,
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.process-flow::before {
		display: none;
	}
	.process-flow {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-32);
	}
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
	.footer-logo-area {
		grid-column: span 3;
	}
}

@media (max-width: 768px) {
	h1 { font-size: 2.25rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
	.section { padding: var(--space-64) 0; }

	.site-header {
		height: 64px;
	}
	.site-header.scrolled {
		height: 64px;
	}

	.primary-nav, .header-right .header-phone, .header-right .header-cta-btn {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.case-studies-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-logo-area {
		grid-column: span 2;
	}
	.footer-bottom {
		flex-direction: column;
		gap: var(--space-16);
		text-align: center;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}
	.form-full {
		grid-column: span 1;
	}

	.contact-cards-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.services-card-grid,
	.process-flow,
	.case-studies-grid,
	.team-grid,
	.values-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr;
		gap: var(--space-24);
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.footer-logo-area {
		grid-column: span 1;
	}
	.hero-ctas {
		flex-direction: column;
		width: 100%;
	}
	.hero-ctas .btn {
		width: 100%;
	}
	.service-features-list {
		grid-template-columns: 1fr;
	}
	.contact-form-container {
		padding: var(--space-24);
	}
}

/* ==========================================================================
   12. Retina & High-DPI Display Optimization
   ========================================================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	/* Prevent blurry images on Retina displays */
	.logo-area img,
	.testimonial-avatar,
	.team-photo img,
	.case-study-thumb img,
	.service-hero-img img,
	.about-hero-img img,
	.about-story-img img {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}
}

.icon-svg {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
}

/* ==========================================================================
   Mega Menu & Mobile Accordion Styling
   ========================================================================== */
.primary-nav li.menu-item-has-children {
	position: static;
}

/* Base style for mega menu container dropdown */
.primary-nav li.menu-item-has-children .mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #ffffff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1000;
	padding: var(--space-48) 0;
}

/* Hover bridge to prevent menu closure when cursor crosses the header gap */
.primary-nav li.menu-item-has-children .mega-menu::before {
	content: '';
	position: absolute;
	top: -24px;
	left: 0;
	width: 100%;
	height: 24px;
	background: transparent;
}

.primary-nav li.menu-item-has-children:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Grid within mega menu */
.mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.5fr;
	gap: var(--space-32);
	align-items: start;
}

/* Pillars columns */
.mega-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.mega-pillar-header {
	display: flex;
	align-items: center;
	gap: var(--space-8);
	margin-bottom: var(--space-12);
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	letter-spacing: -0.01em;
}

.mega-pillar-header svg {
	width: 16px;
	height: 16px;
	color: var(--primary-color);
	flex-shrink: 0;
}

.mega-pillar-desc {
	font-size: 0.8125rem;
	color: var(--body-text-color);
	opacity: 0.65;
	margin-bottom: var(--space-16);
	line-height: 1.4;
	font-style: italic;
}

.mega-services-list {
	list-style: none;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.mega-services-list li a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--body-text-color);
	padding: 2px 0;
	display: inline-block;
	transition: all 0.2s ease;
	opacity: 0.9;
}

.mega-services-list li a:hover {
	color: var(--primary-color);
	transform: translateX(4px);
	opacity: 1;
}

/* Featured conversion card column */
.mega-featured-card {
	background: linear-gradient(135deg, rgba(102, 94, 252, 0.04) 0%, rgba(102, 94, 252, 0.01) 100%);
	border: 1px solid rgba(102, 94, 252, 0.12);
	border-radius: var(--radius-lg);
	padding: var(--space-24);
	display: flex;
	flex-direction: column;
	gap: var(--space-12);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
	text-align: left;
}

.mega-featured-card::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(102, 94, 252, 0.08) 0%, rgba(102, 94, 252, 0) 70%);
	pointer-events: none;
}

.mega-featured-badge {
	align-self: flex-start;
	background: rgba(102, 94, 252, 0.08);
	color: var(--primary-color);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--radius-full);
}

.mega-featured-card h4 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0;
	letter-spacing: -0.015em;
	color: var(--heading-color);
}

.mega-featured-card p {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--body-text-color);
	margin-bottom: var(--space-8);
}

.mega-featured-card .btn {
	padding: 10px 20px;
	font-size: 0.8125rem;
	width: 100%;
	background-color: #665efc !important;
	color: #ffffff !important;
	border-radius: var(--radius-md);
	font-weight: 600;
}

.mega-featured-card .btn:hover {
	background-color: #7c75ff !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

/* Mobile Accordions in drawer */
.mobile-nav-menu li.has-accordion-children > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-nav-menu li.has-accordion-children > a::after {
	content: '+';
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.mobile-nav-menu li.has-accordion-children.accordion-active > a::after {
	content: '−';
}

.mobile-nav-menu .mobile-category-list {
	list-style: none;
	padding-left: var(--space-8);
	margin-top: var(--space-8);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-menu li.accordion-active > .mobile-category-list {
	max-height: 1500px;
}

.mobile-pillar-item {
	margin-bottom: var(--space-16);
}

.mobile-pillar-trigger {
	font-size: 1.05rem !important;
	font-weight: 600;
	color: var(--heading-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
}

.mobile-pillar-trigger::after {
	content: '+';
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--body-text-color);
	opacity: 0.7;
	transition: transform 0.3s ease;
}

.mobile-pillar-item.pillar-active .mobile-pillar-trigger::after {
	content: '−';
}

.mobile-pillar-services {
	list-style: none;
	padding-left: var(--space-12);
	margin-top: var(--space-8);
	border-left: 1px solid var(--border-color);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.mobile-pillar-item.pillar-active .mobile-pillar-services {
	max-height: 800px;
}

.mobile-pillar-services li a {
	font-size: 0.9375rem !important;
	font-weight: 500 !important;
	color: var(--body-text-color) !important;
	opacity: 0.85;
}

.mobile-featured-cta-box {
	background: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: var(--space-16);
	margin-top: var(--space-16);
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
	text-align: left;
}

.mobile-featured-cta-box h4 {
	font-size: 1rem;
	margin-bottom: 0;
	color: var(--heading-color);
}

.mobile-featured-cta-box p {
	font-size: 0.8125rem;
	margin-bottom: 0;
	line-height: 1.4;
	color: var(--body-text-color);
}

.mobile-featured-cta-box .btn {
	font-size: 0.8125rem;
	padding: 8px 16px;
	width: 100%;
}

/* ==========================================================================
   8. White Header and Scrolled State Visibility Fixes
   ========================================================================== */

/* Always Solid White Backdrop */
.site-header.header-white {
	background-color: #ffffff !important;
	border-bottom: 1px solid var(--border-color) !important;
	box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.05);
}

.site-header.header-white.scrolled {
	background-color: #ffffff !important;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* Force dark text and elements on header-white */
.site-header.header-white .logo-area a,
.site-header.header-white .primary-nav a,
.site-header.header-white .header-phone,
.site-header.header-white .mobile-menu-toggle {
	color: var(--heading-color) !important;
}

.site-header.header-white .primary-nav a:hover,
.site-header.header-white .primary-nav li.current-menu-item > a {
	color: var(--primary-color) !important;
}

.site-header.header-white .primary-nav li.menu-item-has-children > a::after {
	border-right-color: var(--body-text-color) !important;
	border-bottom-color: var(--body-text-color) !important;
}

.site-header.header-white .primary-nav li.menu-item-has-children:hover > a::after {
	border-right-color: var(--primary-color) !important;
	border-bottom-color: var(--primary-color) !important;
}

/* Light Dropdowns */
.site-header.header-white .sub-menu {
	background: #ffffff !important;
	border: 1px solid var(--border-color) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.site-header.header-white .sub-menu a {
	color: var(--body-text-color) !important;
}

.site-header.header-white .sub-menu a:hover {
	color: var(--primary-color) !important;
	background-color: var(--light-bg) !important;
}

/* Light Mega Menu */
.site-header.header-white .mega-menu {
	background: #ffffff !important;
	border-bottom: 1px solid var(--border-color) !important;
	box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08) !important;
}

.site-header.header-white .mega-pillar-header {
	color: var(--heading-color) !important;
}

.site-header.header-white .mega-pillar-desc {
	color: var(--body-text-color) !important;
	opacity: 0.65 !important;
}

.site-header.header-white .mega-services-list li a {
	color: var(--body-text-color) !important;
}

.site-header.header-white .mega-services-list li a:hover {
	color: var(--primary-color) !important;
}

.site-header.header-white .mega-featured-card {
	background: linear-gradient(135deg, rgba(102, 94, 252, 0.04) 0%, rgba(102, 94, 252, 0.01) 100%) !important;
	border: 1px solid rgba(102, 94, 252, 0.12) !important;
}

.site-header.header-white .mega-featured-card h4 {
	color: var(--heading-color) !important;
}

.site-header.header-white .mega-featured-card p {
	color: var(--body-text-color) !important;
}

/* Light mobile drawer when header is white */
.site-header.header-white ~ .mobile-nav-drawer,
.site-header.header-white + .mobile-nav-drawer {
	background-color: #ffffff !important;
	border-left: 1px solid var(--border-color) !important;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05) !important;
}

.site-header.header-white ~ .mobile-nav-drawer .mobile-drawer-header span,
.site-header.header-white ~ .mobile-nav-drawer .mobile-drawer-close,
.site-header.header-white ~ .mobile-nav-drawer .mobile-nav-menu a,
.site-header.header-white ~ .mobile-nav-drawer .mobile-pillar-trigger {
	color: var(--heading-color) !important;
}

.site-header.header-white ~ .mobile-nav-drawer .mobile-pillar-services li a {
	color: var(--body-text-color) !important;
	opacity: 0.85 !important;
}

/* Force customized header colors on scrolled dark header */
.site-header.scrolled:not(.header-white) .logo-area a,
.site-header.scrolled:not(.header-white) .primary-nav a,
.site-header.scrolled:not(.header-white) .header-phone,
.site-header.scrolled:not(.header-white) .mobile-menu-toggle {
	color: var(--heading-color) !important;
}

.site-header.scrolled:not(.header-white) .primary-nav a:hover,
.site-header.scrolled:not(.header-white) .primary-nav li.current-menu-item > a {
	color: var(--primary-color) !important;
}

.site-header.scrolled:not(.header-white) .primary-nav li.menu-item-has-children > a::after {
	border-right-color: var(--body-text-color) !important;
	border-bottom-color: var(--body-text-color) !important;
}

.site-header.scrolled:not(.header-white) .primary-nav li.menu-item-has-children:hover > a::after {
	border-right-color: var(--primary-color) !important;
	border-bottom-color: var(--primary-color) !important;
}

/* ==========================================================================
   AUDIT MODAL — Premium Two-Panel Design
   ========================================================================== */

.audit-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(7, 9, 24, 0.72);
	backdrop-filter: blur(16px) saturate(1.6);
	-webkit-backdrop-filter: blur(16px) saturate(1.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
				visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	padding: var(--space-16);
}

.audit-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* ---- Card Container (Two-Panel) ---- */
.audit-modal-card {
	background: #0b1326;
	border-radius: 20px;
	box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.65),
				0 0 0 1px rgba(192, 193, 255, 0.06),
				0 0 80px -20px rgba(102, 94, 252, 0.15);
	width: 100%;
	max-width: 920px;
	max-height: 95vh;
	overflow-y: auto;
	position: relative;
	display: grid;
	grid-template-columns: 320px 1fr;
	transform: scale(0.92) translateY(40px);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
				opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.audit-modal-overlay.open .audit-modal-card {
	transform: scale(1) translateY(0);
	opacity: 1;
}

/* ---- Close Button ---- */
.audit-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 100;
	padding: 0;
}

.audit-modal-close svg {
	width: 16px;
	height: 16px;
}

.audit-modal-close:hover {
	background: rgba(102, 94, 252, 0.2);
	border-color: rgba(102, 94, 252, 0.4);
	color: #ffffff;
	transform: rotate(90deg);
}

/* ==========================================================================
   LEFT BRAND PANEL
   ========================================================================== */
.audit-modal-brand {
	background: linear-gradient(160deg, #12183a 0%, #0b1326 40%, #0e1538 100%);
	border-right: 1px solid rgba(192, 193, 255, 0.06);
	border-radius: 20px 0 0 20px;
	padding: 48px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* Decorative gradient orb behind the panel */
.audit-modal-brand::before {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(102, 94, 252, 0.25) 0%, transparent 70%);
	top: -40px;
	right: -60px;
	border-radius: 50%;
	pointer-events: none;
}
.audit-modal-brand::after {
	content: '';
	position: absolute;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(0, 203, 230, 0.15) 0%, transparent 70%);
	bottom: -30px;
	left: -40px;
	border-radius: 50%;
	pointer-events: none;
}

.audit-modal-brand-inner {
	position: relative;
	z-index: 1;
}

/* Icon badge */
.audit-modal-brand-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #665efc, #00cbe6);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	box-shadow: 0 8px 24px -4px rgba(102, 94, 252, 0.4);
}

.audit-modal-brand-icon svg {
	width: 26px;
	height: 26px;
	color: #ffffff;
}

.audit-modal-brand h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.audit-modal-brand h2 span {
	display: block;
	background: linear-gradient(135deg, #665efc 0%, #00cbe6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.audit-modal-brand p {
	font-size: 0.875rem;
	color: #9b9cc8;
	line-height: 1.7;
	margin-bottom: 32px;
}

/* Trust Badges */
.audit-modal-trust {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.audit-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8125rem;
	color: #c0c1ff;
	font-weight: 500;
}

.audit-trust-item svg {
	width: 18px;
	height: 18px;
	color: #00cbe6;
	flex-shrink: 0;
}

/* ==========================================================================
   RIGHT FORM PANEL
   ========================================================================== */
.audit-modal-body {
	padding: 44px 40px;
	background: #f2f2fd;
	border-radius: 0 20px 20px 0;
}

.audit-modal-form {
	display: flex;
	flex-direction: column;
}

.audit-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.audit-field-full {
	grid-column: 1 / -1;
}

/* Label */
.audit-field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 6px;
	letter-spacing: 0.01em;
	transition: color 0.2s ease;
}

.audit-field label .req {
	color: #665efc;
	font-weight: 700;
}

.audit-field:focus-within label {
	color: #665efc;
}

/* Input Wrappers with Icons */
.audit-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.audit-input-wrap > svg {
	position: absolute;
	left: 14px;
	width: 17px;
	height: 17px;
	color: #9b9cc8;
	pointer-events: none;
	z-index: 2;
	transition: color 0.25s ease;
}

.audit-field:focus-within .audit-input-wrap > svg {
	color: #665efc;
}

.audit-input-wrap input,
.audit-input-wrap select,
.audit-input-wrap textarea {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	width: 100%;
	padding: 12px 14px 12px 42px;
	background-color: #ffffff;
	border: 1px solid #d4d5e8;
	border-radius: 10px;
	color: #0b1326;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	outline: none;
}

.audit-input-wrap input::placeholder,
.audit-input-wrap textarea::placeholder {
	color: #9b9cc8;
}

.audit-input-wrap input:hover,
.audit-input-wrap select:hover,
.audit-input-wrap textarea:hover {
	border-color: #a5a6d4;
	background-color: #ffffff;
}

.audit-input-wrap input:focus,
.audit-input-wrap select:focus,
.audit-input-wrap textarea:focus {
	border-color: #665efc;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(102, 94, 252, 0.12);
}

/* Custom Select Arrow */
.audit-input-wrap select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	padding-right: 42px;
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239b9cc8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E") no-repeat right 14px center / 15px;
}

.audit-input-wrap select:hover {
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23665efc' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E") no-repeat right 14px center / 15px;
}

.audit-input-wrap select:focus {
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23665efc' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E") no-repeat right 14px center / 15px;
}

.audit-input-wrap select option {
	background-color: #ffffff;
	color: #0b1326;
	padding: 8px 12px;
	font-size: 0.875rem;
}

/* Textarea */
.audit-input-wrap--textarea {
	align-items: flex-start;
}

.audit-input-wrap--textarea > svg {
	top: 14px;
}

.audit-input-wrap textarea {
	resize: vertical;
	min-height: 80px;
}

/* ---- Submit Button ---- */
.audit-submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 24px;
	padding: 15px 28px;
	background: linear-gradient(135deg, #665efc 0%, #7c75ff 100%);
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: 0 8px 28px -4px rgba(102, 94, 252, 0.45),
				inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.audit-submit-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.audit-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px -6px rgba(102, 94, 252, 0.55),
				inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.audit-submit-btn:hover::before {
	opacity: 1;
}

.audit-submit-btn:hover svg {
	transform: translateX(4px);
}

.audit-submit-btn:active {
	transform: translateY(1px);
	box-shadow: 0 4px 16px -4px rgba(102, 94, 252, 0.4);
}

.audit-submit-btn svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Footer Security Note ---- */
.audit-modal-footer-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 0.75rem;
	color: #9b9cc8;
}

.audit-modal-footer-note svg {
	width: 14px;
	height: 14px;
	color: #665efc;
	flex-shrink: 0;
}

/* Custom Service Write-in animation */
#modal_custom_service_wrapper {
	animation: auditSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Form response notice */
.audit-modal-form .form-response {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 0.8125rem;
	text-align: center;
}

.audit-modal-form .form-response.success {
	background: rgba(16, 185, 129, 0.1);
	color: #059669;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.audit-modal-form .form-response.error {
	background: rgba(239, 68, 68, 0.1);
	color: #dc2626;
	border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   MODAL RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 860px) {
	.audit-modal-card {
		grid-template-columns: 1fr;
		max-width: 540px;
	}

	.audit-modal-brand {
		border-radius: 20px 20px 0 0;
		border-right: none;
		border-bottom: 1px solid rgba(192, 193, 255, 0.06);
		padding: 32px 32px 28px;
	}

	.audit-modal-brand h2 {
		font-size: 1.5rem;
	}

	.audit-modal-brand p {
		margin-bottom: 20px;
		font-size: 0.8125rem;
	}

	.audit-modal-trust {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px 20px;
	}

	.audit-modal-body {
		padding: 28px 32px 36px;
		border-radius: 0 0 20px 20px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.audit-modal-overlay {
		padding: 10px;
		align-items: flex-start;
		padding-top: 40px;
	}

	.audit-modal-card {
		grid-template-columns: 1fr;
		max-width: 100%;
		border-radius: 16px;
	}

	.audit-modal-brand {
		padding: 24px 20px 20px;
		border-radius: 16px 16px 0 0;
	}

	.audit-modal-brand-icon {
		width: 42px;
		height: 42px;
		border-radius: 10px;
		margin-bottom: 16px;
	}

	.audit-modal-brand-icon svg {
		width: 20px;
		height: 20px;
	}

	.audit-modal-brand h2 {
		font-size: 1.25rem;
		margin-bottom: 8px;
	}

	.audit-modal-brand p {
		font-size: 0.75rem;
		margin-bottom: 14px;
	}

	.audit-modal-trust {
		flex-direction: column;
		gap: 8px;
	}

	.audit-trust-item {
		font-size: 0.75rem;
	}

	.audit-modal-body {
		padding: 20px 20px 28px;
		border-radius: 0 0 16px 16px;
	}

	.audit-form-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.audit-submit-btn {
		padding: 14px 20px;
		font-size: 0.875rem;
	}

	.audit-modal-close {
		top: 10px;
		right: 10px;
		width: 32px;
		height: 32px;
		border-radius: 8px;
	}

	.audit-modal-close svg {
		width: 14px;
		height: 14px;
	}
}

/* ==========================================================================
   SINGLE POST LAYOUT
   ========================================================================== */

/* ---- Hero Section (Primary Color BG + White Text) ---- */
.single-post-hero {
	padding: 140px 0 48px 0;
	background-color: var(--primary-color);
	position: relative;
	overflow: hidden;
}

/* Decorative gradient overlay for depth */
.single-post-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.04) 100%);
	pointer-events: none;
}

.single-post-hero .container {
	max-width: 1100px;
	position: relative;
	z-index: 1;
}

/* Featured Image: Hidden on single post */
.single-featured-image {
	display: none;
}

/* Breadcrumbs (White text on primary bg) */
.single-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.8125rem;
	margin-bottom: var(--space-24);
	color: rgba(255, 255, 255, 0.7);
	opacity: 1;
}

.single-breadcrumbs a {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	transition: color 0.2s ease;
}
.single-breadcrumbs a:hover {
	color: #ffffff;
}

.single-breadcrumbs .breadcrumb-sep {
	display: flex;
	align-items: center;
}
.single-breadcrumbs .breadcrumb-sep svg {
	width: 10px;
	height: 10px;
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.single-breadcrumbs .breadcrumb-current {
	color: #ffffff;
	font-weight: 600;
	max-width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Category Badge (White outline on primary bg) */
.single-category-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 5px 14px;
	border-radius: var(--radius-full);
	margin-bottom: var(--space-16);
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.single-category-badge:hover {
	background-color: rgba(255, 255, 255, 0.25);
	color: #fff;
	transform: translateY(-1px);
}

/* Post Title (White) */
.single-post-title {
	font-size: 2.75rem;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin-bottom: var(--space-24);
	max-width: 900px;
}

/* Meta Row (White text) */
.single-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-24);
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.single-post-meta-author {
	display: flex;
	align-items: center;
	gap: var(--space-16);
}

.meta-author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.meta-author-info {
	display: flex;
	flex-direction: column;
}

.meta-author-name {
	font-size: 0.875rem;
	font-weight: 700;
	color: #ffffff;
}

.meta-date-reading {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	opacity: 1;
}

.meta-dot {
	margin: 0 4px;
}

/* Share Buttons (White on primary) */
.single-post-meta-share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	transition: all 0.2s ease;
}
.share-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.share-btn svg {
	width: 15px;
	height: 15px;
}

/* ---- 3-Column Content Layout ---- */
.single-post-layout {
	padding: var(--space-48) 0 var(--space-48) 0;
	background-color: var(--background-color);
}

.single-post-layout .container {
	max-width: 1260px;
}

.single-post-grid {
	display: grid;
	grid-template-columns: 240px 1fr 300px;
	gap: var(--space-32);
	align-items: start;
}

/* ---- LEFT SIDEBAR: Table of Contents ---- */
.single-toc-sidebar {
	min-width: 0;
}

.toc-sidebar-inner {
	position: sticky;
	top: 100px;
}

.toc-sidebar-card {
	background-color: var(--primary-color);
	border-radius: var(--radius-lg);
	padding: var(--space-24);
	overflow: hidden;
	position: relative;
}

/* Subtle decorative glow */
.toc-sidebar-card::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -40%;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.toc-sidebar-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: var(--space-16);
	padding-bottom: var(--space-8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.toc-sidebar-title svg {
	width: 16px;
	height: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.toc-sidebar-list a {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
	padding: 7px 0 7px 14px;
	border-left: 2px solid transparent;
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1.4;
}
.toc-sidebar-list a:hover,
.toc-sidebar-list a.active {
	color: #ffffff;
	border-left-color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 0 4px 4px 0;
}

.toc-sidebar-list a.toc-h3 {
	padding-left: 28px;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
}
.toc-sidebar-list a.toc-h3:hover,
.toc-sidebar-list a.toc-h3.active {
	color: #ffffff;
}

.toc-sidebar-placeholder {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ---- Main Content Typography ---- */
.single-content-area {
	min-width: 0;
}

.entry-content {
	line-height: 1.85;
	color: var(--body-text-color);
	font-size: 1.0625rem;
}

.entry-content h1 {
	font-size: 2.25rem;
	margin-top: var(--space-48);
	margin-bottom: var(--space-16);
	color: var(--heading-color);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.entry-content h2 {
	font-size: 1.75rem;
	margin-top: var(--space-48);
	margin-bottom: var(--space-16);
	color: var(--heading-color);
	font-weight: 800;
	letter-spacing: -0.02em;
	padding-bottom: var(--space-8);
	border-bottom: 2px solid rgba(102, 94, 252, 0.12);
}

.entry-content h3 {
	font-size: 1.375rem;
	margin-top: var(--space-32);
	margin-bottom: var(--space-16);
	color: var(--heading-color);
	font-weight: 700;
}

.entry-content h4 {
	font-size: 1.125rem;
	margin-top: var(--space-24);
	margin-bottom: var(--space-8);
	color: var(--heading-color);
	font-weight: 700;
}

.entry-content p {
	margin-bottom: var(--space-24);
	font-size: 1.0625rem;
	line-height: 1.85;
}

.entry-content a {
	color: var(--primary-color);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
	transition: color 0.2s ease;
}
.entry-content a:hover {
	color: var(--primary-hover-color);
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	margin: var(--space-32) 0;
	box-shadow: none;
	border: none;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: var(--space-24);
	padding-left: var(--space-24);
}

.entry-content ul {
	list-style: none;
	padding-left: 0;
}

.entry-content ul li {
	position: relative;
	padding-left: 24px;
	margin-bottom: var(--space-8);
	line-height: 1.75;
}

.entry-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--primary-color);
	opacity: 0.6;
}

.entry-content ol {
	list-style: none;
	padding-left: 0;
	counter-reset: ordered-counter;
}

.entry-content ol li {
	counter-increment: ordered-counter;
	padding-left: 36px;
	position: relative;
	margin-bottom: var(--space-8);
	line-height: 1.75;
}

.entry-content ol li::before {
	content: counter(ordered-counter);
	position: absolute;
	left: 0;
	top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(102, 94, 252, 0.1);
	color: var(--primary-color);
	font-size: 0.75rem;
	font-weight: 700;
}

.entry-content blockquote {
	margin: var(--space-32) 0;
	padding: var(--space-24) var(--space-32);
	border-left: 4px solid var(--primary-color);
	background: rgba(102, 94, 252, 0.04);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-style: italic;
	font-size: 1.125rem;
	color: var(--heading-color);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content pre {
	background-color: #1a1a2e;
	color: #e2e8f0;
	padding: var(--space-24);
	border-radius: var(--radius-md);
	overflow-x: auto;
	margin: var(--space-32) 0;
	font-size: 0.875rem;
	line-height: 1.6;
}

.entry-content code {
	background: rgba(102, 94, 252, 0.08);
	color: var(--primary-color);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
}

.entry-content pre code {
	background: transparent;
	color: inherit;
	padding: 0;
	border-radius: 0;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--space-32) 0;
	font-size: 0.9375rem;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-color);
}

.entry-content th {
	background: rgba(102, 94, 252, 0.06);
	color: var(--heading-color);
	font-weight: 700;
	text-align: left;
	padding: 14px 18px;
	border-bottom: 2px solid rgba(102, 94, 252, 0.15);
}

.entry-content td {
	padding: 12px 18px;
	border-bottom: 1px solid var(--border-color);
	vertical-align: top;
}

.entry-content tr:last-child td {
	border-bottom: none;
}

.entry-content hr {
	border: none;
	height: 1px;
	background: var(--border-color);
	margin: var(--space-48) 0;
}

.entry-content figure {
	margin: var(--space-32) 0;
}

.entry-content figcaption {
	font-size: 0.8125rem;
	color: var(--body-text-color);
	opacity: 0.65;
	text-align: center;
	margin-top: var(--space-8);
}

.entry-content .wp-caption {
	max-width: 100%;
}

.entry-content .wp-caption img {
	margin-bottom: 0;
}

.entry-content .wp-caption-text {
	font-size: 0.8125rem;
	color: var(--body-text-color);
	opacity: 0.65;
	text-align: center;
	margin-top: var(--space-8);
}

/* ---- Tags ---- */
.single-post-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: var(--space-32) 0;
	border-top: 1px solid var(--border-color);
	margin-top: var(--space-32);
}

.tags-label {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-right: 4px;
}
.tags-label svg {
	width: 14px;
	height: 14px;
	color: var(--primary-color);
}

.post-tag-pill {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-color);
	background: rgba(102, 94, 252, 0.06);
	padding: 4px 14px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(102, 94, 252, 0.12);
	transition: all 0.2s ease;
	text-decoration: none;
}
.post-tag-pill:hover {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
	transform: translateY(-1px);
}

/* ---- Post Navigation ---- */
.single-post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-24);
	padding: var(--space-48) 0 var(--space-32) 0;
	border-top: 1px solid var(--border-color);
	margin-top: var(--space-32);
}

.post-nav-link {
	display: flex;
	align-items: center;
	gap: var(--space-16);
	padding: 0;
	border-radius: var(--radius-lg);
	background: #ffffff;
	border: 1px solid var(--border-color);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	overflow: hidden;
}
.post-nav-link:hover {
	border-color: var(--primary-color);
	box-shadow: 0 12px 32px rgba(102, 94, 252, 0.1);
	transform: translateY(-3px);
}
.post-nav-link:hover .post-nav-thumb img {
	transform: scale(1.08);
}
.post-nav-link:hover .post-nav-label {
	color: var(--primary-hover-color);
}

.post-nav-empty {
	background: transparent;
	border: none;
	pointer-events: none;
}

.post-nav-thumb {
	width: 100px;
	min-width: 100px;
	height: 90px;
	overflow: hidden;
	flex-shrink: 0;
}
.post-nav-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

.post-nav-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: var(--space-16) var(--space-16) var(--space-16) 0;
	flex: 1;
	min-width: 0;
}
.post-nav-prev .post-nav-info {
	padding-left: 0;
}
.post-nav-next .post-nav-info {
	padding-right: 0;
	padding-left: var(--space-16);
}

.post-nav-prev {
	flex-direction: row;
}

.post-nav-next {
	flex-direction: row-reverse;
	text-align: right;
}
.post-nav-next .post-nav-label {
	justify-content: flex-end;
}

.post-nav-label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 4px;
	transition: color 0.2s ease;
}
.post-nav-label svg {
	width: 14px;
	height: 14px;
	stroke-width: 2.5;
}

.post-nav-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--heading-color);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	letter-spacing: -0.01em;
}

.post-nav-cat {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--body-text-color);
	opacity: 0.6;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ---- RIGHT SIDEBAR ---- */
.single-right-sidebar {
	min-width: 0;
}

.right-sidebar-inner {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: var(--space-24);
}

/* Sidebar Widget Base */
.sidebar-widget {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: var(--space-24);
	transition: box-shadow 0.2s ease;
}
.sidebar-widget:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.sidebar-widget-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: var(--space-16);
	padding-bottom: var(--space-8);
	border-bottom: 2px solid var(--primary-color);
	display: flex;
	align-items: center;
	gap: 6px;
}

.sidebar-widget-title svg {
	width: 16px;
	height: 16px;
	color: var(--primary-color);
}

/* Author Bio Card */
.sidebar-author-card {
	text-align: center;
	padding: var(--space-32) var(--space-24);
}

.sidebar-author-avatar {
	margin-bottom: var(--space-16);
}

.sidebar-author-avatar img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(102, 94, 252, 0.2);
	box-shadow: 0 4px 16px rgba(102, 94, 252, 0.12);
}

.sidebar-author-name {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: var(--space-8);
}

.sidebar-author-bio {
	font-size: 0.8125rem;
	line-height: 1.65;
	color: var(--body-text-color);
	opacity: 0.85;
	margin-bottom: var(--space-16);
}

.sidebar-author-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.sidebar-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(102, 94, 252, 0.08);
	color: var(--primary-color);
	transition: all 0.2s ease;
	text-decoration: none;
}
.sidebar-social-link:hover {
	background: var(--primary-color);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 94, 252, 0.25);
}
.sidebar-social-link svg {
	width: 15px;
	height: 15px;
}

.sidebar-social-placeholder {
	opacity: 0.35;
	cursor: default;
}
.sidebar-social-placeholder:hover {
	background: rgba(102, 94, 252, 0.08);
	color: var(--primary-color);
	transform: none;
	box-shadow: none;
}

/* Lead Form Widget */
.sidebar-lead-form-widget {
	border: 1px solid rgba(102, 94, 252, 0.15);
}

.sidebar-lead-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar-form-group input,
.sidebar-form-group textarea {
	width: 100%;
	padding: 10px 14px;
	font-size: 0.8125rem;
	font-family: inherit;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	background: var(--background-color);
	color: var(--body-text-color);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-form-group input:focus,
.sidebar-form-group textarea:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 94, 252, 0.08);
}

.sidebar-form-group textarea {
	resize: vertical;
	min-height: 70px;
}

.sidebar-form-group input::placeholder,
.sidebar-form-group textarea::placeholder {
	color: var(--body-text-color);
	opacity: 0.5;
}

/* Sidebar Widget Lists (WP Default Widgets) */
.sidebar-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-widget ul li {
	margin-bottom: 0;
}

.sidebar-widget ul li a {
	display: block;
	padding: 8px 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--body-text-color);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	transition: color 0.2s ease, padding-left 0.2s ease;
	text-decoration: none;
}

.sidebar-widget ul li:last-child a {
	border-bottom: none;
}

.sidebar-widget ul li a:hover {
	color: var(--primary-color);
	padding-left: 4px;
}

/* Sidebar Search Widget */
.sidebar-widget .search-form {
	display: flex;
	gap: 8px;
}

.sidebar-widget .search-field {
	flex: 1;
	padding: 10px 14px;
	font-size: 0.875rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	background: var(--background-color);
	color: var(--body-text-color);
	transition: border-color 0.2s ease;
}
.sidebar-widget .search-field:focus {
	border-color: var(--primary-color);
	outline: none;
}

.sidebar-widget .search-submit {
	padding: 10px 18px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.sidebar-widget .search-submit:hover {
	background: var(--primary-hover-color);
}

/* ---- Page Links ---- */
.page-links {
	margin-top: var(--space-32);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--heading-color);
}

/* ---- SINGLE POST RESPONSIVE ---- */

/* Tablet: Collapse to 2 columns (TOC + content, sidebar below) */
@media (max-width: 1100px) {
	.single-post-grid {
		grid-template-columns: 220px 1fr;
		gap: var(--space-24);
	}

	.single-right-sidebar {
		grid-column: 1 / -1;
	}

	.right-sidebar-inner {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: var(--space-24);
	}

	.right-sidebar-inner > .sidebar-widget {
		flex: 1 1 280px;
	}

	.single-post-title {
		font-size: 2.25rem;
	}
}

/* Small tablet: Single column */
@media (max-width: 860px) {
	.single-post-grid {
		grid-template-columns: 1fr;
	}

	.single-toc-sidebar {
		order: -1;
	}

	.toc-sidebar-inner {
		position: static;
	}

	.toc-sidebar-card {
		border-radius: var(--radius-md);
	}

	.single-post-title {
		font-size: 2rem;
	}

	.right-sidebar-inner {
		flex-direction: column;
	}

	.right-sidebar-inner > .sidebar-widget {
		flex: 1 1 auto;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.single-post-hero {
		padding: 110px 0 32px 0;
	}

	.single-post-title {
		font-size: 1.625rem;
	}

	.single-post-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-16);
	}

	.single-post-navigation {
		grid-template-columns: 1fr;
	}

	.post-nav-thumb {
		width: 80px;
		min-width: 80px;
		height: 72px;
	}

	.post-nav-next {
		flex-direction: row;
		text-align: left;
	}
	.post-nav-next .post-nav-label {
		justify-content: flex-start;
	}

	.toc-sidebar-card {
		padding: var(--space-16);
	}

	.sidebar-author-card {
		padding: var(--space-24) var(--space-16);
	}

	.entry-content h2 {
		font-size: 1.375rem;
	}

	.entry-content h3 {
		font-size: 1.125rem;
	}
}

/* ---- Hide Floating Social/Action Icons (WordPress Plugin Injected) ---- */
/* Targets common floating share bars from Jetpack, AddToAny, ShareThis, etc. */
.sharedaddy,
.sd-sharing-enabled,
.jp-relatedposts,
.likes-widget-placeholder,
#sharing_email,
.sd-content,
.sd-block,
div.sharedaddy,
.entry-content div[class*="sharing"],
.addtoany_share_save_container,
.at-share-dock,
.at-share-btn-elements,
.sharethis-inline-share-buttons,
.st-sticky-share-buttons,
.heateor_sss_sharing_container,
.mashsb-container,
.dpsp-floating-sidebar,
.social-warfare,
.nc_socialPanel,
.supsystic-social-sharing,
.essb_links,
.nsl-container {
	display: none !important;
}

/* ==========================================================================
   COMPREHENSIVE DESIGN OVERHAUL (Competitor-Inspired, Brand-Optimized)
   ========================================================================== */

/* 1. Global Page Background & Canvas Coverage */
body {
	background-color: #84abd6 !important;
	background-image: 
		radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.15) 0px, transparent 50%),
		radial-gradient(at 100% 0%, rgba(255, 255, 255, 0.1) 0px, transparent 50%),
		radial-gradient(at 50% 100%, rgba(0, 0, 0, 0.05) 0px, transparent 50%) !important;
	background-attachment: fixed !important;
	background-size: cover !important;
	color: #ffffff !important;
	font-family: 'Inter', -apple-system, sans-serif !important;
}

/* Ensure sections are transparent so the global canvas shows through */
.section,
section,
.logos-section,
#services,
#case-studies,
#insights {
	background: transparent !important;
	background-color: transparent !important;
	padding: var(--space-96, 96px) 0 !important;
}

/* 2. Premium Dark Nav Header */
.site-header {
	background-color: #0b1326 !important; /* Deep Navy */
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	height: 80px !important;
}
.site-header.scrolled {
	height: 72px !important;
	background-color: #0a0d14 !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}
.site-header a,
.site-header .logo-area a,
.site-header .primary-nav a {
	color: #ffffff !important;
}
.site-header .primary-nav a::after {
	background-color: #665efc !important; /* Brand Primary Violet */
}
.site-header .primary-nav li.current-menu-item > a,
.site-header .primary-nav a:hover {
	color: #665efc !important;
}

/* 3. Centered Dark Hero Section (FatJoe-Style Structure) */
.hero-wrapper {
	background-color: #0b1326 !important; /* Deep Navy */
	background-image: 
		radial-gradient(circle at 50% 30%, rgba(102, 94, 252, 0.15) 0%, transparent 60%),
		radial-gradient(circle at 80% 80%, rgba(93, 230, 255, 0.08) 0%, transparent 50%) !important;
	padding: 180px 0 120px 0 !important; /* Tall spacing */
	color: #ffffff !important;
	text-align: center !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.hero-grid {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

.hero-content {
	max-width: 800px !important;
	margin: 0 auto !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Hide hero illustration sidebar for centered layout */
.hero-illustration {
	display: none !important;
}

/* Hero Badge */
.hero-badge {
	background: rgba(102, 94, 252, 0.12) !important;
	border: 1px solid rgba(102, 94, 252, 0.25) !important;
	color: #ffffff !important;
	padding: 8px 18px !important;
	border-radius: 9999px !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	margin-bottom: var(--space-24, 24px) !important;
	display: inline-block !important;
}

/* Hero Headline: Large and bold, centered */
.hero-wrapper h1 {
	font-size: 3.75rem !important; /* 60px */
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.15 !important;
	color: #ffffff !important;
	margin-bottom: var(--space-24, 24px) !important;
	max-width: 850px !important;
}

/* Subtitle */
.hero-wrapper p.text-muted {
	font-size: 1.25rem !important;
	line-height: 1.6 !important;
	color: rgba(255, 255, 255, 0.8) !important;
	max-width: 680px !important;
	margin-bottom: var(--space-40, 40px) !important;
}

/* Centered Pill Buttons */
.hero-ctas {
	display: flex !important;
	justify-content: center !important;
	gap: var(--space-16, 16px) !important;
	flex-wrap: wrap !important;
	margin-bottom: var(--space-32, 32px) !important;
}

.hero-ctas .btn {
	border-radius: 9999px !important; /* Rounded pill style */
	padding: 16px 36px !important;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
}

.hero-ctas .btn-primary {
	background-color: #665efc !important; /* Vibrant Violet */
	border-color: #665efc !important;
	color: #ffffff !important;
	box-shadow: 0 10px 25px -5px rgba(102, 94, 252, 0.4) !important;
}
.hero-ctas .btn-primary:hover {
	background-color: #554ce8 !important;
	border-color: #554ce8 !important;
	transform: scale(1.04) translateY(-2px) !important;
	box-shadow: 0 12px 30px -5px rgba(102, 94, 252, 0.6) !important;
}

.hero-ctas .btn-secondary {
	background-color: transparent !important;
	border: 2px solid rgba(255, 255, 255, 0.3) !important;
	color: #ffffff !important;
	box-shadow: none !important;
}
.hero-ctas .btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.6) !important;
	transform: scale(1.04) translateY(-2px) !important;
}

/* 4. Client Logo Marquee Styling */
.logos-section {
	background: #ffffff !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
	padding: var(--space-48, 48px) 0 !important;
	text-align: center;
}
.logos-label {
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	color: #94a3b8 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	margin-bottom: var(--space-24, 24px) !important;
}
.logos-marquee-track img {
	opacity: 0.6 !important;
	filter: grayscale(100%) !important;
	transition: opacity 0.3s ease, filter 0.3s ease !important;
	margin: 0 40px !important;
}
.logos-marquee-track img:hover {
	opacity: 1 !important;
	filter: grayscale(0%) !important;
}

/* 5. Services Section: Premium Portrait Image-Overlay Cards (Competitor Style) */
.services-card-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important; /* 4 columns in a single row on desktop */
	gap: var(--space-24, 24px) !important; /* Slightly tighter gap for 4 columns */
}

@media (max-width: 1200px) {
	.services-card-grid {
		grid-template-columns: repeat(2, 1fr) !important; /* 2 columns on smaller desktops and tablets */
		gap: var(--space-24, 24px) !important;
	}
}

@media (max-width: 640px) {
	.services-card-grid {
		grid-template-columns: 1fr !important; /* 1 column on mobile screens */
		gap: var(--space-16, 16px) !important;
	}
}

.service-card {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-end !important;
	min-height: 480px !important; /* Tall, premium portrait card */
	border-radius: 20px !important;
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	box-shadow: 0 12px 36px -8px rgba(11, 19, 38, 0.2) !important;
	padding: var(--space-32, 32px) !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	z-index: 1 !important;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Dark linear gradient overlay to ensure text readability and contrast */
.service-card::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: linear-gradient(180deg, rgba(11, 19, 38, 0.1) 0%, rgba(11, 19, 38, 0.6) 45%, rgba(11, 19, 38, 0.95) 100%) !important;
	z-index: 2 !important;
	transition: all 0.4s ease !important;
}

/* Hover Interactivity: Deepen gradient and scale card */
.service-card:hover {
	transform: translateY(-8px) scale(1.02) !important;
	box-shadow: 0 24px 48px -10px rgba(11, 19, 38, 0.35) !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

.service-card:hover::before {
	background: linear-gradient(180deg, rgba(11, 19, 38, 0.05) 0%, rgba(11, 19, 38, 0.7) 40%, rgba(11, 19, 38, 0.99) 100%) !important;
}

/* Inner Content Wrapper above z-index overlay */
.service-card-inner-content {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	justify-content: flex-end !important;
	text-align: left !important;
	z-index: 3 !important;
}

/* Category Badge positioned at the top of the card */
.service-card-category-tag {
	margin-bottom: auto !important; /* Pushes other content to bottom */
	display: inline-block !important;
	align-self: flex-start !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: rgba(255, 255, 255, 0.85) !important;
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	padding: 4px 12px !important;
	border-radius: 9999px !important;
	backdrop-filter: blur(4px) !important;
	-webkit-backdrop-filter: blur(4px) !important;
}

/* Headline Styling */
.service-card-inner-content h3 {
	color: #ffffff !important;
	font-size: 1.625rem !important; /* 26px */
	font-weight: 800 !important;
	line-height: 1.25 !important;
	margin: 0 0 var(--space-12, 12px) 0 !important;
	letter-spacing: -0.02em !important;
	font-family: 'Poppins', sans-serif !important;
}

/* Excerpt/Description Copy */
.service-card-inner-content p {
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 0.9375rem !important;
	line-height: 1.55 !important;
	margin: 0 0 var(--space-20, 20px) 0 !important;
	font-weight: 400 !important;
}

/* Link Arrow */
.service-card-inner-content .link-arrow {
	color: #ffffff !important;
	font-weight: 700 !important;
	font-size: 0.9375rem !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	text-decoration: none !important;
	margin-top: 0 !important;
	transition: opacity 0.2s ease !important;
}
.service-card-inner-content .link-arrow:hover {
	color: #ffffff !important;
	opacity: 0.85 !important;
}
.service-card-inner-content .link-arrow svg {
	width: 16px !important;
	height: 16px !important;
	fill: none !important;
	stroke: #ffffff !important;
	stroke-width: 2.5 !important;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-card:hover .link-arrow svg {
	transform: translateX(6px) !important;
}

/* Bullet list on inner services page template */
.service-bullet-list {
	list-style: none !important;
	margin: 0 0 var(--space-24, 24px) 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
}
.service-bullet-list li {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
}
.bullet-check {
	display: inline-flex !important;
	width: 16px !important;
	height: 16px !important;
	flex-shrink: 0 !important;
	color: #ffffff !important;
}
.bullet-check svg {
	fill: currentColor !important;
}

/* Custom layout button on inner services page */
.service-card .btn {
	margin-top: var(--space-8, 8px) !important;
	border-radius: 9999px !important; /* Pill button inside card */
	background-color: #665efc !important;
	border-color: #665efc !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	box-shadow: 0 6px 16px rgba(102, 94, 252, 0.25) !important;
}
.service-card .btn:hover {
	background-color: #554ce8 !important;
	border-color: #554ce8 !important;
	box-shadow: 0 8px 20px rgba(102, 94, 252, 0.45) !important;
}

/* Reusable Glassmorphism Card Utility */
/* Old glass-card overrides removed to prevent white-on-white text conflicts on the new white background. Underlying styles are correctly applied by the premium glassmorphism classes at the end of the file. */

/* 6. Restructured Stats Counter Section (Clean White Row) */
.stats-counter-section {
	background: #ffffff !important;
	border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
	padding: var(--space-64, 64px) 0 !important;
}
.stats-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
	gap: var(--space-32, 32px) !important;
	text-align: center !important;
}
.stat-item {
	border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
	padding: var(--space-16, 16px) 0 !important;
}
@media (max-width: 768px) {
	.stat-item {
		border-right: none !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	}
	.stat-item:last-child {
		border-bottom: none !important;
	}
}
.stat-item:last-child {
	border-right: none !important;
}
.stat-num {
	font-size: 3.5rem !important;
	font-weight: 800 !important;
	color: #665efc !important;
	line-height: 1.1 !important;
	margin-bottom: var(--space-8, 8px) !important;
	letter-spacing: -0.02em !important;
	font-family: 'Poppins', sans-serif !important;
}
.stat-label {
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	color: #475569 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
}

/* 7. Case Study & Blog Cards Layout (Pristine White with Shadows) */
.case-study-card {
	background: #ffffff !important;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	box-shadow: 0 10px 30px -10px rgba(11, 19, 38, 0.08) !important;
	border-radius: var(--radius-lg, 16px) !important;
	overflow: hidden;
	transition: all 0.3s ease !important;
}
.case-study-card:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 20px 40px -12px rgba(11, 19, 38, 0.15) !important;
}
.case-study-body h3 a {
	color: #0b1326 !important;
}
.case-study-body p {
	color: #475569 !important;
}
.case-study-metric {
	color: #665efc !important;
	font-weight: 700 !important;
}

/* 8. Premium Testimonials Section */
.testimonials-section {
	background: rgba(255, 255, 255, 0.03) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.testimonials-section h2 {
	color: #ffffff !important;
}
.testimonials-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
	gap: var(--space-32, 32px) !important;
}
.testimonial-card {
	background: #ffffff !important;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	border-radius: var(--radius-lg, 16px) !important;
	padding: var(--space-32, 32px) !important;
	box-shadow: 0 10px 30px -10px rgba(11, 19, 38, 0.08) !important;
	color: #334155 !important;
	display: flex;
	flex-direction: column;
}
.testimonial-stars svg {
	color: #fbbf24 !important; /* Gold Stars */
	fill: #fbbf24 !important;
	margin-right: 2px;
}
.testimonial-quote {
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
	color: #475569 !important;
	margin-bottom: var(--space-24, 24px) !important;
	flex-grow: 1;
}
.testimonial-meta h4 {
	color: #0b1326 !important;
	margin-bottom: 2px !important;
	font-size: 1rem !important;
}
.testimonial-creds {
	font-size: 0.8125rem !important;
	color: #64748b !important;
}
.testimonial-avatar-fallback {
	background: #665efc !important;
	color: #ffffff !important;
}

/* 9. Bottom CTA Section (FatJoe-Style Rounded Dark Banner) */
.cta-banner-wrapper {
	padding: var(--space-80, 80px) 0 !important;
}
.cta-glass-card {
	background-color: #0b1326 !important; /* Deep Navy Container */
	background-image: radial-gradient(circle at 100% 0%, rgba(93, 230, 255, 0.1) 0%, transparent 50%),
	                  radial-gradient(circle at 0% 100%, rgba(102, 94, 252, 0.15) 0%, transparent 60%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 24px !important;
	box-shadow: 0 20px 50px -15px rgba(11, 19, 38, 0.5) !important;
	padding: var(--space-48, 48px) !important;
	color: #ffffff !important;
}

.cta-left h2 {
	color: #ffffff !important;
	font-size: 2.5rem !important;
	font-weight: 800 !important;
	letter-spacing: -0.025em !important;
}
.cta-left p {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* Lead Form Styling inside CTA */
.cta-right-form input,
.cta-right-form select {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	border-radius: var(--radius-md, 12px) !important;
	padding: 14px 20px !important;
}
.cta-right-form input::placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
}
.cta-right-form select option {
	background-color: #0b1326 !important;
	color: #ffffff !important;
}

/* Accessible CTA Button */
.cta-right-form button[type="submit"] {
	background-color: #665efc !important; /* Brand Primary Violet */
	border-color: #665efc !important;
	color: #ffffff !important;
	border-radius: 9999px !important; /* Pill style */
	font-weight: 700 !important;
	font-size: 1rem !important;
	padding: 16px 36px !important;
	box-shadow: 0 8px 24px -6px rgba(102, 94, 252, 0.4) !important;
}
.cta-right-form button[type="submit"]:hover {
	background-color: #554ce8 !important;
	border-color: #554ce8 !important;
	transform: scale(1.03) translateY(-2px) !important;
	box-shadow: 0 12px 32px -6px rgba(102, 94, 252, 0.6) !important;
}

.footnote {
	color: rgba(255, 255, 255, 0.6) !important;
}

/* 10. Dark Premium Footer */
.site-footer {
	background-color: #0b1326 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	padding: var(--space-80, 80px) 0 var(--space-32, 32px) 0 !important;
	color: rgba(255, 255, 255, 0.7) !important;
}
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
	color: #ffffff !important;
}
.site-footer a {
	color: rgba(255, 255, 255, 0.8) !important;
}
.site-footer a:hover {
	color: #665efc !important;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	padding-top: var(--space-32, 32px) !important;
	margin-top: var(--space-64, 64px) !important;
}

/* Custom Premium Glassmorphism and UI Effects */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-panel-dark {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-card-hover {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-hover:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(132, 171, 214, 0.55);
  box-shadow: 0 20px 40px rgba(132, 171, 214, 0.12);
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f7fafc;
}
::-webkit-scrollbar-thumb {
  background: #84abd6;
  border-radius: 9999px;
  border: 2px solid #f7fafc;
}
::-webkit-scrollbar-thumb:hover {
  background: #628ab5;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #84ABD6;
  outline-offset: 2px;
}

/* Keyframe Animations */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-2deg); }
}
@keyframes pulse-subtle {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}
.animate-float-delayed {
  animation: float-delayed 10s ease-in-out infinite;
}
.animate-pulse-subtle {
  animation: pulse-subtle 4s ease-in-out infinite;
}
.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

/* ==========================================================================
   SINGLE SERVICE PAGE — New Linear Layout
   ========================================================================== */

/* --- 1. Service Hero --- */
.svc-hero {
	padding-top: 120px;
	padding-bottom: var(--space-80);
	background: linear-gradient(175deg, rgba(132,171,214,0.08) 0%, transparent 60%);
	position: relative;
	overflow: hidden;
}

.svc-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #84ABD6;
	margin-bottom: var(--space-32);
	transition: color 0.2s ease;
}
.svc-hero__back:hover {
	color: #5a8ab8;
}
.svc-hero__back svg {
	width: 14px;
	height: 14px;
}

.svc-hero__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--space-64);
	align-items: center;
}

.svc-hero__badge {
	display: inline-block;
	background: rgba(132,171,214,0.12);
	color: #84ABD6;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 6px 16px;
	border-radius: var(--radius-full);
	margin-bottom: var(--space-16);
}

.svc-hero__title {
	font-size: 3.25rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: var(--space-24);
}

.svc-hero__subtitle {
	font-size: 1.0625rem;
	color: var(--body-text-color);
	line-height: 1.75;
	max-width: 560px;
	margin-bottom: var(--space-32);
}

.svc-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: var(--space-32);
}

.svc-hero__meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.svc-hero__meta-pill svg {
	width: 16px;
	height: 16px;
	color: #84ABD6;
	flex-shrink: 0;
}
.svc-hero__meta-pill span {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--heading-color);
}

.svc-hero__meta-pill--alt {
	background: rgba(254,255,185,0.15);
	border-color: rgba(254,255,185,0.5);
}

.svc-hero__ctas {
	display: flex;
	gap: var(--space-16);
}

.svc-hero__visual {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-xl);
	padding: var(--space-48);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.04);
	overflow: hidden;
}

.svc-hero__visual-glow {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 180px;
	height: 180px;
	background: rgba(132,171,214,0.1);
	border-radius: 50%;
	filter: blur(40px);
	pointer-events: none;
}

.svc-hero__visual-inner {
	text-align: center;
}

.svc-hero__icon-box {
	width: 72px;
	height: 72px;
	background: #84ABD6;
	color: #ffffff;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-16);
	box-shadow: 0 8px 24px rgba(132,171,214,0.35);
	animation: float-slow 8s ease-in-out infinite;
}
.svc-hero__icon-svg {
	width: 32px;
	height: 32px;
}

.svc-hero__visual-label {
	font-size: 0.625rem;
	font-family: 'Courier New', monospace;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--body-text-color);
	opacity: 0.6;
}


/* --- 2. Service Scope Cards (8 items) --- */
.svc-scope {
	background: #ffffff;
}
.svc-scope .section-header h2 {
	color: #0b1326;
}
.svc-scope .section-header p {
	color: #334155;
}

.svc-scope__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-24);
}

.svc-scope__card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-lg);
	padding: var(--space-32);
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
}
.svc-scope__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #84ABD6, #a3c4e5);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.svc-scope__card:hover {
	border-color: rgba(132,171,214,0.2);
	box-shadow: 0 12px 32px rgba(0,0,0,0.06);
	transform: translateY(-4px);
}
.svc-scope__card:hover::before {
	opacity: 1;
}

.svc-scope__card-number {
	font-size: 0.75rem;
	font-weight: 800;
	color: #84ABD6;
	opacity: 0.4;
	font-family: 'Courier New', monospace;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-16);
}

.svc-scope__card-icon {
	width: 44px;
	height: 44px;
	background: rgba(132,171,214,0.1);
	color: #84ABD6;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-16);
}
.svc-scope__card-svg {
	width: 20px;
	height: 20px;
}

.svc-scope__card-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 8px;
	line-height: 1.3;
}

.svc-scope__card-desc {
	font-size: 0.875rem;
	color: var(--body-text-color);
	line-height: 1.65;
	margin-bottom: 0;
}


/* --- 3. Key Benefits Boxes --- */
.svc-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-24);
}

.svc-benefits__box {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-lg);
	padding: var(--space-32);
	text-align: center;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-benefits__box:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.06);
	border-color: rgba(132,171,214,0.2);
}

.svc-benefits__box-icon {
	width: 56px;
	height: 56px;
	background: rgba(132,171,214,0.1);
	color: #84ABD6;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-24);
}
.svc-benefits__box-svg {
	width: 24px;
	height: 24px;
}

.svc-benefits__box-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 8px;
}

.svc-benefits__box-desc {
	font-size: 0.9375rem;
	color: var(--body-text-color);
	line-height: 1.65;
	margin-bottom: 0;
}

/* Stat variant */
.svc-benefits__box--stat {
	background: linear-gradient(135deg, #84ABD6 0%, #6d91ba 100%);
	border-color: transparent;
	color: #ffffff;
}
.svc-benefits__box--stat:hover {
	border-color: transparent;
	box-shadow: 0 12px 32px rgba(132,171,214,0.35);
}

.svc-benefits__stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.03em;
	margin-bottom: 4px;
	font-family: 'Poppins', sans-serif;
}

.svc-benefits__box--stat .svc-benefits__box-desc {
	color: rgba(255,255,255,0.9);
}


/* --- 4. FAQ Section (reuses existing .faq-accordion styles) --- */
.svc-faq {
	background: #ffffff;
}


/* --- 5. Bottom CTA Section --- */
.svc-cta {
	padding: var(--space-96) 0;
	background: linear-gradient(180deg, rgba(132,171,214,0.04) 0%, rgba(132,171,214,0.1) 100%);
}

.svc-cta__inner {
	background: linear-gradient(135deg, #84ABD6 0%, #5a8ab8 100%);
	border-radius: var(--radius-xl);
	padding: var(--space-64) var(--space-80);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-48);
	color: #ffffff;
	box-shadow: 0 24px 48px -12px rgba(132,171,214,0.4);
	position: relative;
	overflow: hidden;
}
.svc-cta__inner::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 260px;
	height: 260px;
	background: rgba(255,255,255,0.06);
	border-radius: 50%;
	pointer-events: none;
}
.svc-cta__inner::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 180px;
	height: 180px;
	background: rgba(254,255,185,0.08);
	border-radius: 50%;
	pointer-events: none;
}

.svc-cta__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #FEFFB9;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.svc-cta__title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: var(--space-16);
}

.svc-cta__desc {
	font-size: 0.9375rem;
	color: rgba(255,255,255,0.9);
	line-height: 1.65;
	max-width: 520px;
	margin-bottom: 0;
}
.svc-cta__desc strong {
	color: #ffffff;
}

.svc-cta__btn {
	background: #FEFFB9 !important;
	color: #1E293B !important;
	border-color: #FEFFB9 !important;
	border-radius: var(--radius-full) !important;
	padding: 16px 36px !important;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-cta__btn:hover {
	background: #ffffff !important;
	border-color: #ffffff !important;
	color: #1E293B !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}


/* --- Single Service Responsive --- */
@media (max-width: 1024px) {
	.svc-hero__grid {
		grid-template-columns: 1fr;
		gap: var(--space-48);
	}

	.svc-hero__title {
		font-size: 2.5rem;
	}

	.svc-hero__visual {
		min-height: 200px;
		max-width: 400px;
	}

	.svc-scope__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.svc-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.svc-cta__inner {
		flex-direction: column;
		text-align: center;
		padding: var(--space-48);
	}

	.svc-cta__desc {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.svc-hero {
		padding-top: 100px;
		padding-bottom: var(--space-48);
	}

	.svc-hero__title {
		font-size: 2rem;
	}

	.svc-hero__subtitle {
		font-size: 0.9375rem;
	}

	.svc-hero__meta {
		flex-direction: column;
	}

	.svc-scope__grid {
		grid-template-columns: 1fr;
	}

	.svc-benefits__grid {
		grid-template-columns: 1fr;
	}

	.svc-benefits__stat-number {
		font-size: 2rem;
	}

	.svc-cta__inner {
		padding: var(--space-32);
	}

	.svc-cta__title {
		font-size: 1.5rem;
	}
}

/* ==========================================================================
   INSIGHTS / BLOG PREVIEW SECTION
   ========================================================================== */
.insights-section {
	padding: 80px 0;
	background-color: #F7FAFC;
	border-top: 1px solid #E2E8F0;
}

.insights-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.insights-header {
	max-width: 640px;
	margin: 0 auto 56px;
	text-align: center;
}

.insights-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(132, 171, 214, 0.1);
	color: #84ABD6;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 9999px;
	margin-bottom: 16px;
}

.insights-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #1E293B;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ---- Insight Card ---- */
.insight-card {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.insight-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
	transform: translateY(-4px);
}

.insight-card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.insight-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-img {
	transform: scale(1.05);
}

.insight-card-placeholder {
	width: 100%;
	height: 100%;
	background: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}

/* Gradient overlay */
.insight-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 48px 24px 24px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
	display: flex;
	align-items: flex-end;
	pointer-events: none;
}

.insight-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.35;
	margin: 0;
	letter-spacing: -0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.insights-section {
		padding: 56px 0;
	}

	.insights-title {
		font-size: 1.75rem;
	}

	.insights-header {
		margin-bottom: 36px;
	}

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

	.insight-card {
		aspect-ratio: 16 / 10;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.insights-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   BLOG POST FINAL OVERRIDES (Highest Priority)
   ========================================================================== */

/* Remove all borders and shadows from blog content images */
.entry-content img,
.single-content-area .entry-content img,
article .entry-content img,
.wp-block-image img,
.entry-content figure img,
.entry-content .wp-block-image img {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

/* Professional Post Navigation with Thumbnails */
.single-post-navigation {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 20px !important;
	padding: 40px 0 32px 0 !important;
	border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
	margin-top: 32px !important;
}

.post-nav-link {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	padding: 0 !important;
	border-radius: 12px !important;
	background: #ffffff !important;
	border: 1px solid rgba(0, 0, 0, 0.08) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	text-decoration: none !important;
	overflow: hidden !important;
	flex-direction: row !important;
}
.post-nav-link:hover {
	border-color: var(--primary-color, #84abd6) !important;
	box-shadow: 0 12px 32px rgba(132, 171, 214, 0.15) !important;
	transform: translateY(-3px) !important;
}

.post-nav-empty {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	pointer-events: none !important;
}

.post-nav-thumb {
	width: 100px !important;
	min-width: 100px !important;
	height: 90px !important;
	overflow: hidden !important;
	flex-shrink: 0 !important;
}
.post-nav-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	display: block !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
}
.post-nav-link:hover .post-nav-thumb img {
	transform: scale(1.08) !important;
}

.post-nav-info {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	padding: 14px 14px 14px 0 !important;
	flex: 1 !important;
	min-width: 0 !important;
}

.post-nav-prev {
	flex-direction: row !important;
}

.post-nav-next {
	flex-direction: row-reverse !important;
	text-align: right !important;
}
.post-nav-next .post-nav-info {
	padding: 14px 0 14px 14px !important;
}
.post-nav-next .post-nav-label {
	justify-content: flex-end !important;
}

.post-nav-label {
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: var(--primary-color, #84abd6) !important;
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
}
.post-nav-label svg {
	width: 14px !important;
	height: 14px !important;
}

.post-nav-title {
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	color: var(--heading-color, #1e293b) !important;
	line-height: 1.35 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.post-nav-cat {
	font-size: 0.6875rem !important;
	font-weight: 600 !important;
	color: var(--body-text-color, #64748b) !important;
	opacity: 0.6 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
}

/* Hide ALL floating social/share/action icons and sidebars */
.sharedaddy,
.sd-sharing-enabled,
.jp-relatedposts,
.likes-widget-placeholder,
#sharing_email,
.sd-content,
.sd-block,
div.sharedaddy,
.entry-content div[class*="sharing"],
.addtoany_share_save_container,
.at-share-dock,
.at-share-btn-elements,
.sharethis-inline-share-buttons,
.st-sticky-share-buttons,
.heateor_sss_sharing_container,
.mashsb-container,
.dpsp-floating-sidebar,
.social-warfare,
.nc_socialPanel,
.supsystic-social-sharing,
.essb_links,
.nsl-container,
div[class*="share-btn"],
div[class*="social-share"],
div[class*="floating-social"],
div[class*="sticky-social"],
.jp-likes-widget-wrapper,
.wps_social,
#jp-post-flair {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

/* Mobile post navigation */
@media (max-width: 640px) {
	.single-post-navigation {
		grid-template-columns: 1fr !important;
	}
	.post-nav-thumb {
		width: 72px !important;
		min-width: 72px !important;
		height: 64px !important;
	}
	.post-nav-next {
		flex-direction: row !important;
		text-align: left !important;
	}
	.post-nav-next .post-nav-label {
		justify-content: flex-start !important;
	}
	.post-nav-next .post-nav-info {
		padding: 14px 14px 14px 0 !important;
	}
}

/* ==========================================================================
   CUSTOM STYLE OVERRIDES (Hero, Headings, Author Bio, Quick Contact Form)
   ========================================================================== */

/* 1. Single Post Hero Visibility & Theme BG */
.single-post-hero {
	background-color: var(--primary-color, #84abd6) !important;
}

.single-post-hero,
.single-post-hero .single-post-title,
.single-post-hero .single-breadcrumbs,
.single-post-hero .single-breadcrumbs a,
.single-post-hero .single-breadcrumbs .breadcrumb-current,
.single-post-hero .meta-author-name,
.single-post-hero .meta-date-reading,
.single-post-hero .share-btn {
	color: #ffffff !important;
}

.single-post-hero .single-breadcrumbs a {
	opacity: 0.85;
}

.single-post-hero .single-breadcrumbs a:hover {
	opacity: 1;
	color: #ffffff !important;
}

.single-post-hero .single-breadcrumbs .breadcrumb-sep svg {
	color: rgba(255, 255, 255, 0.6) !important;
}

/* 2. Remove Separator Lines Under Headings */
.entry-content h2,
.sidebar-widget-title {
	border-bottom: none !important;
	padding-bottom: 0 !important;
}

/* 3. Author Bio Card Custom Styling */
.sidebar-author-card {
	padding: 16px 24px !important;
	background-color: var(--primary-color, #84abd6) !important;
	color: #ffffff !important;
	border: none !important;
}

.sidebar-author-avatar img {
	margin-left: auto !important;
	margin-right: auto !important;
	border: 3px solid rgba(255, 255, 255, 0.3) !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.sidebar-author-name {
	color: #ffffff !important;
}

.sidebar-author-bio {
	color: rgba(255, 255, 255, 0.9) !important;
}

.sidebar-author-socials .sidebar-social-link {
	background: rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
}

.sidebar-author-socials .sidebar-social-link:hover {
	background: rgba(255, 255, 255, 0.35) !important;
	color: #ffffff !important;
}

.sidebar-author-socials .sidebar-social-placeholder {
	opacity: 0.5 !important;
	background: rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
}

/* 4. Quick Contact Lead Form Card Styling */
.sidebar-lead-form-widget {
	padding: 16px 24px !important;
	background-color: var(--primary-color, #84abd6) !important;
	border: none !important;
	color: #ffffff !important;
}

.sidebar-lead-form-widget .sidebar-widget-title {
	justify-content: center !important;
	color: #ffffff !important;
	margin-top: 0 !important;
	margin-bottom: var(--space-16) !important;
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

.sidebar-lead-form-widget .sidebar-widget-title svg {
	color: #ffffff !important;
}

.sidebar-lead-form-widget .btn-primary {
	background-color: #ffffff !important;
	color: var(--primary-color, #84abd6) !important;
	border-color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.sidebar-lead-form-widget .btn-primary:hover {
	background-color: #f8fafc !important;
	color: var(--primary-hover-color, #6f98c4) !important;
	border-color: #f8fafc !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
}

.sidebar-lead-form-widget .form-response {
	color: #ffffff !important;
}

/* ============================================================
   ODYSSEY MARKETING ENHANCEMENT UTILITIES
   ============================================================ */

/* 1. Infinite Logo Marquee Track */
@keyframes logoMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.logo-marquee-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee-track {
	display: flex;
	align-items: center;
	gap: 3rem;
	width: max-content;
	animation: logoMarquee 25s linear infinite;
}

.logo-marquee-container:hover .logo-marquee-track {
	animation-play-state: paused;
}

/* 2. Form Micro-Interactions & Real-Time Validation */
.form-input-wrapper {
	position: relative;
}

.form-input-valid {
	border-color: #10b981 !important;
	background-color: #f0fdf4 !important;
}

.form-input-invalid {
	border-color: #f43f5e !important;
	background-color: #fff1f2 !important;
}

.valid-check-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #10b981;
	pointer-events: none;
}

/* 3. Interactive ROI Calculator */
.roi-calculator-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(132, 171, 214, 0.08);
	padding: 32px;
	margin: 40px 0;
}

.roi-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 5px;
	background: #e2e8f0;
	outline: none;
}

.roi-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #84abd6;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(132, 171, 214, 0.4);
	transition: transform 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}

.roi-stat-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 16px 20px;
	text-align: center;
}

.roi-stat-box--highlight {
	background: linear-gradient(135deg, #84abd6 0%, #6f98c4 100%);
	color: #ffffff;
	border: none;
}

/* 4. Single Article Author Bio Card & Share Bar */
.single-post-header-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 12px;
	font-size: 0.8125rem;
	color: #64748b;
}

.reading-time-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(132, 171, 214, 0.12);
	color: #84abd6;
	font-weight: 700;
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.article-share-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 28px 0;
	padding: 16px 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #475569;
	background: #f1f5f9;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.share-btn:hover {
	background: #84abd6;
	color: #ffffff;
}

.author-bio-card {
	display: flex;
	gap: 20px;
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	margin-top: 40px;
}

.author-bio-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 3px solid #ffffff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Toast notification */
.toast-notification {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: #1e293b;
	color: #ffffff;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	z-index: 9999;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	pointer-events: none;
}

.toast-notification.show {
	opacity: 1;
	transform: translateY(0);
}


