/*!
Theme Name: DOER Digital Theme
Theme URI: http://doerservices.com/
Author: DOER Services PLC
Author URI: http://doerservices.com/
Description: Professional theme for DOER Digital Platform
Version: 2.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: doer-digital
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	--blue-900: #0f172a;
	--blue-800: #1e3a8a;
	--blue-700: #1d4ed8;
	--blue-600: #2563eb;
	--blue-500: #3b82f6;
	--blue-400: #60a5fa;
	--blue-100: #dbeafe;
	--blue-50: #eff6ff;
	--slate-900: #0f172a;
	--slate-700: #334155;
	--slate-500: #64748b;
	--slate-300: #cbd5e1;
	--slate-100: #f1f5f9;
	--slate-50: #f8fafc;
	--white: #ffffff;

	--gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
	--gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, .1);
	--shadow-lg: 0 12px 40px rgba(0, 0, 0, .14);
	--shadow-blue: 0 8px 24px rgba(37, 99, 235, .35);

	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	--container: 1200px;
	--font-body: 'DM Sans', sans-serif;
	--font-heading: 'Plus Jakarta Sans', sans-serif;
	--font: var(--font-body);

	--glass: rgba(255, 255, 255, 0.7);
	--glass-dark: rgba(15, 23, 42, 0.8);
	--glass-border: rgba(255, 255, 255, 0.3);
	--glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	font-family: var(--font);
	background: var(--slate-50);
	color: var(--slate-700);
	line-height: 1.65;
	font-size: 1rem;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--slate-900);
	line-height: 1.2;
	font-weight: 700;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	letter-spacing: -.03em;
}

h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.75rem);
	letter-spacing: -.02em;
}

h3 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	letter-spacing: -.01em;
}

.footer-logo-white {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

/* Glass Utility */
.glass {
	background: var(--glass) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	border: 1px solid var(--glass-border) !important;
	box-shadow: var(--glass-shadow) !important;
}

.glass-dark {
	background: var(--glass-dark) !important;
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Global Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   GLOBAL GLOW & MOTION SYSTEM
   ============================================================ */
:root {
	--glow-color: rgba(37, 99, 235, 0.15);
	--glow-size: 400px;
}

.glow-orb {
	position: absolute;
	width: var(--glow-size);
	height: var(--glow-size);
	background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(60px);
	animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	33% {
		transform: translate(10%, 15%) scale(1.1);
	}

	66% {
		transform: translate(-5%, 20%) scale(0.9);
	}
}

.mesh-gradient {
	background-color: #ffffff;
	background-image:
		radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.05) 0px, transparent 50%),
		radial-gradient(at 100% 0%, rgba(37, 99, 235, 0.03) 0px, transparent 50%),
		radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.05) 0px, transparent 50%),
		radial-gradient(at 0% 100%, rgba(37, 99, 235, 0.03) 0px, transparent 50%);
}

.dark-mesh-gradient {
	background-color: #0f172a;
	background-image:
		radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
		radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.1) 0px, transparent 50%);
}

/* Mouse-Tracking Glow Component */
.interactive-glow {
	position: relative !important;
	overflow: hidden !important;
}

.interactive-glow::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
			rgba(37, 99, 235, 0.1),
			transparent 40%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.interactive-glow:hover::after {
	opacity: 1;
}

/* Staggered Animations for Grids */
.grid>.reveal-on-scroll:nth-child(1) {
	transition-delay: 0.1s;
}

.grid>.reveal-on-scroll:nth-child(2) {
	transition-delay: 0.2s;
}

.grid>.reveal-on-scroll:nth-child(3) {
	transition-delay: 0.3s;
}

.grid>.reveal-on-scroll:nth-child(4) {
	transition-delay: 0.4s;
}

.grid>.reveal-on-scroll:nth-child(5) {
	transition-delay: 0.5s;
}

.grid>.reveal-on-scroll:nth-child(6) {
	transition-delay: 0.6s;
}

.blog-card,
.product-box,
.case-study-card {
	will-change: transform, opacity;
}

/* Page Entry */
body.page-initial {
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

body.page-ready {
	opacity: 1;
}

/* Scroll Progress */
#scroll-progress-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	z-index: 2000;
	pointer-events: none;
}

#scroll-progress {
	height: 100%;
	background: var(--gradient-accent);
	width: 0%;
	transition: width 0.1s ease-out;
	box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* Button Sweep/Shine Effect */
.btn {
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -100%;
	width: 50%;
	height: 200%;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(25deg);
	transition: none;
}

.btn:hover::after {
	left: 150%;
	transition: left 0.6s ease-in-out;
}

/* Card Image Zoom */
.blog-card-image img,
.product-image img,
.cs-card-image img {
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.blog-card:hover .blog-card-image img,
.product-box:hover .product-image img,
.case-study-card:hover .cs-card-image img {
	transform: scale(1.1);
}

/* Magnetic Title Effect */
.site-title {
	transition: transform 0.3s ease;
}

.site-logo:hover .site-title {
	transform: translateX(5px);
}

font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin-bottom: 1.2rem;
}

a {
	color: var(--blue-600);
	text-decoration: none;
	transition: color .2s;
}

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

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

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
	max-width: var(--container);
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 0 1.5rem;
}

.section {
	padding: 6rem 0;
}

.section-sm {
	padding: 4rem 0;
}

.section-label {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue-600);
	margin-bottom: .75rem;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-header p {
	color: var(--slate-500);
	max-width: 580px;
	margin: .75rem auto 0;
	font-size: 1.1rem;
}

.grid {
	display: grid;
	gap: 2rem;
	width: 100%;
}

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

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

/* Products Page Specific Grid Fix */
#productGrid.grid-3 {
	grid-template-columns: repeat(3, 380px);
	justify-content: center;
	gap: 1.5rem;
}

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

/* Form Date/Time Picker Styling */
input[type="date"],
input[type="time"] {
	position: relative;
	cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.form-group input[type="date"]::after,
.form-group input[type="time"]::after {
	content: '📅';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 1rem;
	opacity: 0.6;
}

.form-group input[type="time"]::after {
	content: '🕒';
}

.form-row {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

/* ============================================================
   CERTIFICATIONS SHOWCASE
   ============================================================ */
.cert-logo-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 5rem;
	margin-top: 4rem;
}

.cert-logo {
	width: 160px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	filter: grayscale(1);
	opacity: 0.5;
}

.cert-logo:hover {
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-10px);
}

.cert-img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	max-height: 100px;
}

.cert-placeholder {
	font-weight: 800;
	color: #94a3b8;
	font-size: 1.1rem;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
	padding: 80px 0;
	background: #fff;
}

.newsletter-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 32px;
	padding: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
	box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.newsletter-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.newsletter-content h3 {
	color: #fff;
	font-size: 2.25rem;
	font-weight: 800;
	margin-bottom: 1rem;
	letter-spacing: -1px;
}

.newsletter-content p {
	color: #94a3b8;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.newsletter-form {
	position: relative;
}

.newsletter-input-group {
	display: flex;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 8px;
	backdrop-filter: blur(10px);
}

.newsletter-input-group input {
	flex-grow: 1;
	background: transparent;
	border: none;
	color: #fff;
	padding: 0 20px;
	font-size: 1rem;
	outline: none;
}

.newsletter-input-group input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.newsletter-msg {
	margin-top: 1rem;
	font-weight: 600;
	font-size: 0.9rem;
	min-height: 20px;
}

.newsletter-msg.success {
	color: #4ade80;
}

.newsletter-msg.error {
	color: #f87171;
}

@media (max-width: 991px) {

	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.75rem;
	border-radius: var(--radius-full);
	font-family: var(--font);
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .25s ease;
	border: none;
	white-space: nowrap;
	text-decoration: none;
}

.btn-primary {
	background: var(--gradient-accent);
	color: var(--white);
	box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(37, 99, 235, .45);
	color: var(--white);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--blue-600);
	color: var(--blue-600);
}

.btn-outline:hover {
	background: var(--blue-600);
	color: var(--white);
}

.btn-ghost {
	background: rgba(255, 255, 255, .1);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, .3);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, .2);
	color: var(--white);
}

.btn-white {
	background: var(--white);
	color: var(--blue-700);
	box-shadow: var(--shadow-md);
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: var(--blue-700);
}

/* ============================================================
   HEADER – STICKY GLASS NAV
   ============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, .85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	padding: 1rem 0;
}

/* Fixed Header Spacing Fix */
.site-main,
#primary {
	margin-top: 80px;
}

/* Pages with built-in hero/banner spacing */
.home .site-main,
.home #primary,
.single-product .site-main,
.single-product #primary,
.page-template-page-about-us .site-main,
.archive .site-main {
	margin-top: 0;
}

/* Ultra-Motion Effects */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-15px);
	}

	100% {
		transform: translateY(0px);
	}
}

.floating {
	animation: float 4s ease-in-out infinite;
}

/* Heading Reveal Mask */
.reveal-text {
	overflow: hidden;
	display: block;
}

.reveal-text span {
	display: block;
	transform: translateY(110%);
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.2s;
}

.reveal-on-scroll.active .reveal-text span {
	transform: translateY(0);
}

/* Mouse Parallax */
.parallax-wrap {
	perspective: 1000px;
}

.parallax-layer {
	transition: transform 0.1s ease-out;
	will-change: transform;
}

/* Skew on Scroll */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(50px) skewY(2deg);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
	opacity: 1;
	transform: translateY(0) skewY(0deg);
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: .75rem;
	text-decoration: none;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-accent);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-blue);
}

.site-title,
.site-title a {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--slate-900);
	text-decoration: none;
}

.site-title span {
	color: var(--blue-600);
}

.main-navigation ul {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	color: var(--slate-700);
	font-weight: 500;
	font-size: .95rem;
	padding: .35rem .1rem;
	transition: color .2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a,
.main-navigation .current-menu-ancestor>a,
.main-navigation .current-post-ancestor>a,
.main-navigation .current_page_item>a,
.main-navigation .current_page_parent>a,
.main-navigation .current_page_ancestor>a {
	color: var(--blue-600);
}

.nav-cta {
	margin-left: 1rem;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: .5rem;
	color: var(--slate-900);
	font-size: 1.5rem;
}

/* ============================================================
   PREMIUM SPLIT HERO SLIDER
   ============================================================ */
.hero-slider-section {
	height: 100vh;
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #020617;
	padding-top: 80px;
	/* Accounts for the fixed navigation header */
}

.hero-slider-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(at 0% 100%, rgba(37, 99, 235, 0.1) 0, transparent 50%),
		radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.1) 0, transparent 50%);
	z-index: 1;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	z-index: 1;
	transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	background-size: cover;
	background-position: center;
	background-image: linear-gradient(to right, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.7) 40%, rgba(2, 6, 23, 0) 100%), var(--slide-bg);
}

.hero-slide.active {
	opacity: 1;
	z-index: 2;
}

.hero-split {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: 4rem;
	width: 100%;
	padding-top: 20px;
	/* Reduced for better vertical center */
}

.hero-content-left {
	position: relative;
	z-index: 10;
	text-align: left;
}

.hero-slide .hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.2);
	padding: 6px 16px;
	border-radius: var(--radius-full);
	color: var(--blue-400);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

.hero-slide .hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1.05;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.2rem;
	letter-spacing: -2px;
}

.hero-slide .hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 580px;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.hero-slide .hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Mockup Design */
.hero-mockup-right {
	position: relative;
	z-index: 5;
}

.floating-mockup {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 10px;
	backdrop-filter: blur(20px);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
	transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
	animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {

	0%,
	100% {
		transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
	}

	50% {
		transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px);
	}
}

.mockup-header {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	gap: 15px;
}

.mockup-dots {
	display: flex;
	gap: 6px;
}

.mockup-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.mockup-url {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.3);
	background: rgba(0, 0, 0, 0.2);
	padding: 4px 20px;
	border-radius: 4px;
	flex: 1;
	text-align: center;
}

.mockup-body {
	padding: 25px;
	text-align: left;
}

.mockup-title {
	color: white;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mockup-title span {
	font-size: 9px;
	background: #10b981;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

.mockup-stats-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.mockup-card-mini {
	background: rgba(255, 255, 255, 0.03);
	padding: 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-card-mini small {
	display: block;
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin-bottom: 5px;
}

.mockup-card-mini strong {
	display: block;
	font-size: 16px;
	color: white;
	margin-bottom: 8px;
}

.m-bar {
	height: 4px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 2px;
}

.m-bar-in {
	height: 100%;
	background: var(--blue-500);
	border-radius: 2px;
}

.mockup-chart-v {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 80px;
	margin-bottom: 20px;
	background: rgba(255, 255, 255, 0.02);
	padding: 10px;
	border-radius: 8px;
}

.m-v-bar {
	flex: 1;
	background: linear-gradient(to top, var(--blue-600), var(--blue-400));
	border-radius: 4px 4px 0 0;
	animation: barGrow 2s ease-out forwards;
}

@keyframes barGrow {
	from {
		transform: scaleY(0);
	}

	to {
		transform: scaleY(1);
	}
}

.mockup-tasks {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.m-task {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	gap: 8px;
}

.m-task span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10b981;
}

/* Staggered Animations */
.hero-content-left>* {
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-content-left>* {
	opacity: 1 !important;
	transform: translateX(0) !important;
	visibility: visible !important;
}

.hero-slide.active .hero-badge {
	transition-delay: 0.2s;
}

.hero-slide.active .hero-title {
	transition-delay: 0.35s;
}

.hero-slide.active .hero-subtitle {
	transition-delay: 0.5s;
}

.hero-slide.active .hero-cta {
	transition-delay: 0.65s;
}

.hero-mockup-right {
	opacity: 0;
	transform: scale(0.9) translateX(40px);
	transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.hero-slide.active .hero-mockup-right {
	opacity: 1;
	transform: scale(1) translateX(0);
}

.slider-controls {
	position: absolute;
	bottom: 4rem;
	width: 100%;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
	transform: translateY(10px);
}

.slider-controls.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: all .3s ease;
}

.slider-dot:hover {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
	background: var(--white);
	border-color: var(--white);
	transform: scale(1.2);
}

/* ============================================================
   RESPONSIVE HERO SECTION (Tablet & Low Res Laptops)
   ============================================================ */
@media (max-width: 1440px) {
	.hero-slider-section {
		height: auto;
		min-height: 100vh;
	}

	.hero-split {
		gap: 1.5rem;
		grid-template-columns: 1.6fr 1fr;
		padding-top: 60px;
	}

	.hero-slide .hero-title {
		font-size: clamp(2rem, 3.5vw, 2.8rem);
		margin-bottom: 1.25rem;
	}

	.hero-slide .hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 2rem;
	}

	.hero-slide .hero-badge {
		margin-bottom: 1.5rem;
	}
}

@media (max-height: 850px) {
	.hero-split {
		padding-top: 40px;
	}

	.hero-slide .hero-badge {
		margin-bottom: 1rem;
	}

	.hero-slide .hero-title {
		margin-bottom: 1rem;
	}

	.hero-slide .hero-subtitle {
		margin-bottom: 1.5rem;
	}

	.slider-controls {
		bottom: 2rem;
	}
}

@media (max-width: 991px) {
	.hero-slider-section {
		height: 100vh;
		min-height: 600px;
		display: flex;
		align-items: center;
		padding: 80px 0 0;
		/* Clear header but keep it immersive */
		margin-top: 0;
	}

	.hero-slide {
		background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.5) 50%, rgba(2, 6, 23, 0.9) 100%), var(--slide-bg);
	}

	.hero-split {
		grid-template-columns: 1fr;
		padding-top: 10px;
		/* Minimal top space */
	}

	.hero-content-left {
		text-align: left;
		padding: 1rem 0;
		/* Tightened internal padding */
	}

	/* Certifications Responsive */
	.cert-logo-grid {
		gap: 3rem;
		margin-top: 3rem;
	}

	.cert-logo {
		width: 120px;
	}

	.cert-img {
		max-height: 80px;
	}

	/* Newsletter Responsive */
	.newsletter-card {
		grid-template-columns: 1fr;
		padding: 40px 30px;
		gap: 2.5rem;
		text-align: center;
		border-radius: 24px;
	}

	.newsletter-content h3 {
		font-size: 1.75rem;
	}

	.newsletter-input-group {
		flex-direction: column;
		background: transparent;
		border: none;
		padding: 0;
		gap: 15px;
	}

	.newsletter-input-group input {
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		padding: 1.25rem;
		border-radius: 12px;
		width: 100%;
	}

	.newsletter-input-group button {
		width: 100%;
		padding: 1.25rem !important;
	}

	.hero-slide .hero-title {
		font-size: 2.2rem;
		margin-bottom: 0.8rem;
	}

	.hero-slide .hero-subtitle {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.hero-mockup-right {
		display: none;
	}
}

/* ============================================================
   TRUST INDICATORS (PHASE 1)
   ============================================================ */
.trust-section {
	background: var(--white);
	padding: 3rem 0;
	border-bottom: 1px solid var(--slate-100);
}

.trust-label {
	text-align: center;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--slate-500);
	margin-bottom: 2rem;
}

.logo-strip {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	opacity: .55;
	transition: opacity .3s;
}

.logo-strip:hover {
	opacity: .85;
}

.client-logo {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: 1rem;
	font-weight: 800;
	color: var(--slate-700);
	letter-spacing: -.02em;
}

.logo-icon-sm {
	width: 28px;
	height: 28px;
	border-radius: 6px;
}


/* ============================================================
   PRODUCTS (PHASE 2)
   ============================================================ */
.products-section {
	background: var(--slate-50);
	overflow: hidden;
	width: 100%;
}

.products-grid-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: block;
}

.filter-bar {
	display: flex;
	justify-content: center;
	gap: .75rem;
	margin-bottom: 3rem;
	background: var(--glass);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	flex-wrap: wrap;
}

.filter-btn {
	padding: .55rem 1.4rem;
	border-radius: var(--radius-full);
	border: 2px solid var(--slate-300);
	background: var(--white);
	color: var(--slate-700);
	font-size: .875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
	font-family: var(--font);
}

.filter-btn:hover {
	border-color: var(--blue-600);
	color: var(--blue-600);
}

.filter-btn.active {
	background: var(--gradient-accent);
	border-color: transparent;
	color: var(--white);
	box-shadow: var(--shadow-blue);
}

.product-card {
	height: 100%;
	position: relative;
	z-index: 1;
}

.product-card-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	border-radius: var(--radius-xl);
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-card-inner {
	transform: translateY(-10px) scale(1.015);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
	border-color: var(--blue-400) !important;
}

.product-image-header {
	position: relative;
	height: 180px;
	background: var(--blue-900);
	overflow: hidden;
}

.product-image-wrap {
	width: 100%;
	height: 100%;
}

.product-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
	transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image-wrap img {
	opacity: 1;
	transform: scale(1.1);
}

.product-badges {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	z-index: 2;
}

.product-card-body {
	padding: 1.25rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-title-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.product-card-title {
	font-size: 1.1rem;
	margin-bottom: 0;
	color: var(--slate-900);
	font-weight: 800;
	flex: 1;
	line-height: 1.3;
}

.product-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-card:hover .product-card-title a,
.product-card-title a:hover {
	color: var(--blue-600);
}

.product-price-inline {
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.product-price-inline .price-val {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--blue-600);
	display: none;
}

.product-price-inline .price-val.active {
	display: flex;
}

.currency-text-btn {
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--blue-600);
	background: var(--blue-50);
	border: 1px solid var(--blue-100);
	padding: 2px 6px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
}

.currency-text-btn:hover {
	background: var(--blue-600);
	color: var(--white);
	border-color: var(--blue-600);
}

.explore-pill {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--slate-500);
	text-decoration: none;
	padding: 4px 10px;
	border-radius: 100px;
	background: var(--slate-100);
	transition: all 0.2s;
}

.explore-pill:hover {
	background: var(--slate-900);
	color: var(--white);
}

.product-card-excerpt {
	font-size: 0.88rem;
	color: var(--slate-500);
	margin-bottom: 1rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.7rem;
	/* Exactly 2 lines at 1.5 line-height */
}

.product-card-footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.product-more-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--blue-600);
	text-decoration: none;
	transition: all 0.3s ease;
}

.product-more-link svg {
	transition: transform 0.3s ease;
}

.product-more-link:hover {
	color: var(--blue-700);
}

.product-more-link:hover svg {
	transform: translateX(5px);
}

.btn-sm {
	padding: 0.6rem 1.25rem;
	font-size: 0.85rem;
}

.product-card-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1), transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.product-card:hover .product-card-glow {
	opacity: 1;
}


.product-image-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.product-card:hover .product-image-header img {
	transform: scale(1.08);
}

.product-icon-placeholder {
	width: 56px;
	height: 56px;
	background: rgba(37, 99, 235, .1);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-600);
}

.product-card-body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-card-title {
	font-size: 1.25rem;
	margin-bottom: .75rem;
	color: var(--slate-900);
}

.product-card-excerpt {
	color: var(--slate-500);
	font-size: .875rem;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card-tags {
	display: flex;
	gap: .4rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}


.price-label {
	display: block;
	font-size: 0.65rem;
	color: var(--slate-500);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	margin-bottom: 2px;
}

.price-display {
	display: flex;
	align-items: baseline;
	height: 1.8rem;
	position: relative;
}

.price-val {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--slate-900);
	display: none;
	align-items: baseline;
}

.price-val.active {
	display: flex;
	animation: fadeInSlide 0.3s ease-out forwards;
}

.price-val sup {
	font-size: 0.75rem;
	margin-right: 2px;
	color: var(--blue-600);
	top: -0.2em;
}

.currency-indicator {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--slate-400);
	background: var(--white);
	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid var(--slate-100);
}

.currency-indicator span.active {
	color: var(--blue-600);
}

@keyframes fadeInSlide {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Single Product Price Enhancement */
.product-price-card:hover {
	transform: translateY(-3px);
	border-color: var(--blue-200) !important;
	background: var(--white) !important;
	box-shadow: var(--shadow-md);
}

.product-price-card:hover .currency-switcher {
	border-color: var(--blue-100);
}

.currency-switcher span {
	transition: color 0.3s ease;
}

.currency-switcher span.active {
	color: var(--blue-600) !important;
}

.tag {
	font-size: .65rem;
	font-weight: 700;
	padding: .2rem .65rem;
	border-radius: var(--radius-full);
	background: var(--blue-50);
	color: var(--blue-700);
	text-transform: uppercase;
	letter-spacing: .05em;
	border: 1px solid var(--blue-100);
}

.product-card-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--slate-100);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-card-btns {
	display: flex;
	gap: 0.5rem;
}

.btn-xs {
	padding: 0.4rem 0.75rem !important;
	font-size: 0.75rem !important;
	border-radius: 6px !important;
}

.product-card-link {
	color: var(--blue-600);
	font-weight: 700;
	font-size: .85rem;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}

.product-card-link::after {
	content: '→';
	transition: transform .2s;
}

.product-card-link:hover::after {
	transform: translateX(4px);
}

/* ============================================================
   PRODUCT DETAIL (PHASE 3)
   ============================================================ */
.product-hero-section {
	background: #01040e;
	padding: 8rem 0 6rem;
	position: relative;
	overflow: hidden;
}

.product-hero-bg {
	pointer-events: none;
	will-change: transform, opacity;
}

.product-hero-section::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(37, 99, 235, .4) 0%, transparent 70%);
	right: -100px;
	top: -100px;
}

/* Product Hero — Right Side Image */
.product-visual-wrap {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-main-image-wrap {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(4px);
}

.product-main-image-wrap:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.main-product-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.product-detail-label {
	color: var(--blue-400);
}

.product-detail-title {
	color: var(--white);
	margin: .5rem 0 1rem;
}

.product-detail-excerpt {
	color: rgba(255, 255, 255, .7);
	font-size: 1.15rem;
	max-width: 500px;
	margin-bottom: 2rem;
}

.product-price-badge {
	display: inline-flex;
	flex-direction: column;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: var(--radius-md);
	padding: .85rem 1.5rem;
	margin-bottom: 2rem;
}

.product-price-label {
	font-size: .75rem;
	color: rgba(255, 255, 255, .5);
	font-weight: 500;
}

.product-price-value {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--white);
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	padding: .85rem 1rem;
	border-radius: var(--radius-md);
	margin-bottom: .5rem;
	background: var(--slate-50);
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .95rem;
}

.feature-check {
	color: var(--blue-600);
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ============================================================
   ABOUT (PHASE 4)
   ============================================================ */
.about-section {
	background: var(--white);
}

.mission-card {
	background: var(--blue-50);
	border: 1px solid var(--blue-100);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	height: 100%;
}

.mission-card-icon {
	width: 52px;
	height: 52px;
	background: var(--gradient-accent);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	box-shadow: var(--shadow-blue);
}

/* Timeline */
.timeline {
	position: relative;
	padding-left: 2.5rem;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 0;
	width: 2px;
	background: var(--blue-100);
}

.timeline-item {
	position: relative;
	margin-bottom: 2.5rem;
}

.timeline-dot {
	position: absolute;
	left: -2.5rem;
	top: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--gradient-accent);
	border: 3px solid var(--white);
	box-shadow: var(--shadow-blue);
}

.timeline-year {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--blue-600);
	text-transform: uppercase;
	margin-bottom: .25rem;
}

.timeline-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: .3rem;
	color: var(--slate-900);
}

.timeline-desc {
	font-size: .88rem;
	color: var(--slate-500);
}

/* Team */
.team-card {
	text-align: center;
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	transition: all .3s;
	box-shadow: var(--shadow-sm);
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	object-fit: cover;
	background: var(--slate-100);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	overflow: hidden;
}

.team-name {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: .25rem;
}

.team-role {
	font-size: .85rem;
	color: var(--blue-600);
	font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
	background: var(--slate-900);
	padding: 6rem 0;
}

.testimonials-section .section-header {
	color: var(--white);
}

.testimonials-section .section-header p {
	color: rgba(255, 255, 255, .6);
}

.testimonial-card {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--radius-lg);
	padding: 2rem;
	backdrop-filter: blur(8px);
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 1rem;
	margin-bottom: 1rem;
	letter-spacing: .1em;
}

.testimonial-quote {
	color: rgba(255, 255, 255, .8);
	font-size: .95rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gradient-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: .9rem;
}

.testimonial-name {
	font-size: .9rem;
	font-weight: 700;
	color: var(--white);
}

.testimonial-company {
	font-size: .78rem;
	color: rgba(255, 255, 255, .5);
}

/* ============================================================
   CONTACT (PHASE 5)
   ============================================================ */
.contact-section {
	background: var(--white);
}

.contact-info-card {
	background: var(--gradient-hero);
	border-radius: var(--radius-lg);
	padding: 3rem 2.5rem;
	height: 100%;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.contact-info-card::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(37, 99, 235, .5) 0%, transparent 70%);
	right: -80px;
	bottom: -80px;
}

.contact-info-title {
	color: var(--white);
	font-size: 1.75rem;
	margin-bottom: 2rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.contact-info-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.contact-info-label {
	font-size: .75rem;
	color: rgba(255, 255, 255, .55);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.contact-info-value {
	color: var(--white);
	font-weight: 500;
}

.contact-form-card {
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-lg);
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--slate-700);
	margin-bottom: .5rem;
}

.form-control {
	width: 100%;
	padding: .8rem 1rem;
	border: 1.5px solid var(--slate-300);
	border-radius: var(--radius-md);
	font-family: var(--font);
	font-size: .92rem;
	color: var(--slate-900);
	transition: border-color .2s, box-shadow .2s;
	background: var(--white);
}

.form-control:focus {
	outline: none;
	border-color: var(--blue-600);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.map-placeholder {
	margin-top: 3rem;
	height: 380px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--slate-100);
	border: 1px solid var(--slate-200);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ============================================================
   FLOATING WIDGET (PHASE 5)
   ============================================================ */
.floating-quote {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 9999;
}

.floating-quote-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background: var(--gradient-accent);
	color: var(--white);
	border: none;
	border-radius: 100px;
	width: 56px !important;
	height: 56px !important;
	padding: 0 !important;
	font-family: var(--font);
	font-size: .9rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(37, 99, 235, .3);
	animation: floatPulse 3s ease-in-out infinite;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
	white-space: nowrap;
	flex-shrink: 0;
}

.floating-quote-btn .btn-text {
	max-width: 0;
	opacity: 0;
	transition: all 0.4s ease;
	margin-left: 0;
}

.floating-quote-btn:hover {
	width: 170px !important;
	gap: .6rem;
	padding: 0 1.5rem !important;
	animation: none;
	transform: scale(1.05);
	color: var(--white);
}

.floating-quote-btn:hover .btn-text {
	max-width: 120px;
	opacity: 1;
	margin-left: 4px;
	display: inline-block;
}

@keyframes floatPulse {

	0%,
	100% {
		box-shadow: 0 8px 24px rgba(37, 99, 235, .5);
	}

	50% {
		box-shadow: 0 12px 35px rgba(37, 99, 235, .7), 0 0 0 8px rgba(37, 99, 235, .08);
	}
}

/* WhatsApp Floating Button */
.floating-whatsapp {
	position: fixed;
	bottom: 6.5rem;
	right: 2rem;
	z-index: 9999;
}

.floating-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #25D366;
	color: var(--white);
	border-radius: 100px;
	width: 56px !important;
	height: 56px !important;
	padding: 0 !important;
	box-shadow: 0 10px 25px rgba(37, 211, 102, .3);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
	white-space: nowrap;
}

.floating-whatsapp-btn .btn-text {
	max-width: 0;
	opacity: 0;
	transition: all 0.4s ease;
	font-family: var(--font);
	font-weight: 700;
	font-size: .9rem;
}

.floating-whatsapp-btn:hover {
	width: 170px !important;
	gap: .6rem;
	padding: 0 1.5rem !important;
	transform: scale(1.05);
	color: var(--white);
}

.floating-whatsapp-btn:hover .btn-text {
	max-width: 120px;
	opacity: 1;
	margin-left: 4px;
}

/* Mobile Optimization for Floating Buttons */
@media (max-width: 768px) {
	.floating-quote {
		bottom: 1.5rem;
		right: 1.25rem;
	}

	.floating-whatsapp {
		bottom: 5.25rem;
		right: 1.25rem;
	}

	.floating-quote-btn,
	.floating-whatsapp-btn {
		width: 50px !important;
		height: 50px !important;
	}

	.floating-quote-btn:hover,
	.floating-whatsapp-btn:hover {
		width: 50px !important;
		/* Disable expansion on mobile hover/tap to save space */
		padding: 0 !important;
	}

	.floating-quote-btn:hover .btn-text,
	.floating-whatsapp-btn:hover .btn-text {
		display: none;
	}
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--slate-900);
	color: rgba(255, 255, 255, .7);
	padding: 5rem 0 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.footer-brand-desc {
	color: rgba(255, 255, 255, .5);
	font-size: .9rem;
	margin: 1rem 0 1.5rem;
	max-width: 280px;
}

.footer-heading {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: .6rem;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, .6);
	font-size: .88rem;
}

.footer-contact svg {
	color: var(--blue-500);
	flex-shrink: 0;
}

.footer-links a {
	color: rgba(255, 255, 255, .55);
	font-size: .88rem;
	transition: color .2s;
}

.footer-links a:hover {
	color: var(--white);
}

.footer-social {
	display: flex;
	gap: .75rem;
	margin-top: 1.25rem;
}

.social-btn {
	width: 38px;
	height: 38px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
	color: rgba(255, 255, 255, .6);
	transition: all .2s;
}

.social-btn:hover {
	background: var(--blue-600);
	color: var(--white);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, .08);
	font-size: .8rem;
	color: rgba(255, 255, 255, .35);
}

/* ============================================================
   PAGE HEADER BANNER (Inner Pages)
   ============================================================ */
.page-banner {
	background: var(--gradient-hero);
	padding: 8rem 0 6rem;
	position: relative;
	overflow: hidden;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-banner .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.page-banner-label {
	color: var(--blue-400);
	margin-bottom: 1rem;
}

.page-banner-title {
	color: var(--white);
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin: 0.5rem 0 1.5rem;
	text-align: center;
}

.page-banner-desc {
	color: rgba(255, 255, 255, .65);
	font-size: 1.1rem;
	max-width: 550px;
	margin: 0 auto;
}

/* ============================================================
   SIMPLE & SHORT CTA SECTION
   ============================================================ */
.cta-section {
	padding: 60px 0;
	background: #fff;
}

.cta-card {
	background: #0f172a;
	border-radius: 24px;
	padding: 40px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	position: relative;
	overflow: hidden;
	gap: 2rem;
}

.cta-content {
	flex: 1;
}

.cta-title {
	color: #fff !important;
	font-size: 2rem !important;
	font-weight: 800 !important;
	margin-bottom: 0.5rem !important;
	letter-spacing: -0.5px !important;
}

.cta-desc {
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: 1.1rem !important;
	margin-bottom: 0 !important;
	max-width: 100% !important;
}

.cta-btns {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.cta-card {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
		border-radius: 20px;
	}

	.cta-title {
		font-size: 1.75rem !important;
	}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

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

@media (max-width: 768px) {

	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 3rem 0 !important;
	}

	.testimonials-section {
		padding: 3rem 0 !important;
	}

	.section-header {
		margin-bottom: 2rem !important;
	}

	.page-banner {
		padding: 3.5rem 0 3rem !important;
	}

	.blog-card-body {
		padding: 1.25rem !important;
	}

	.blog-widget {
		padding: 1.25rem !important;
	}

	.testimonial-card {
		padding: 2rem 1.5rem !important;
	}

	.testimonial-quote {
		font-size: 1rem !important;
		margin-bottom: 1.5rem !important;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	/* ── MOBILE HERO: Deep‑Night Immersive Full‑Screen ── */
	.hero-slider-section {
		height: auto;
		min-height: 450px;
		padding: 15rem 0 6rem;
		/* Increased top & bottom padding for mobile */
		background: #01040e;
		margin-top: -85px;
		overflow: visible;
	}

	.hero-slide {
		position: relative !important;
		opacity: 1 !important;
		visibility: visible !important;
		display: none;
	}

	.hero-slide.active {
		display: flex !important;
	}

	/* Subtle ambient glow – now very muted */
	.hero-slider-section::before {
		background:
			radial-gradient(ellipse at 15% 85%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
			radial-gradient(ellipse at 85% 15%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
		z-index: 3;
		pointer-events: none;
	}

	/* Transparent overlay to show slide image clearly on mobile */
	.hero-slide::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(to bottom, rgba(1, 4, 14, 0.4) 0%, rgba(1, 4, 14, 0.8) 100%);
		opacity: 0.7;
		z-index: 1;
	}

	/* Content container for better legibility */
	.hero-content-left {
		text-align: left !important;
		background: linear-gradient(to bottom, transparent, rgba(1, 4, 14, 0.6)) !important;
		padding: 1rem 0 !important;
		border-radius: 12px !important;
		position: relative;
		z-index: 10;
	}

	/* Staggered entrance animations */
	.hero-content-left>* {
		opacity: 0;
		transform: translateY(20px) !important;
		transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1) !important;
	}

	.hero-slide.active .hero-content-left>* {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	.hero-slide.active .hero-badge {
		transition-delay: 0.1s !important;
	}

	.hero-slide.active .hero-title {
		transition-delay: 0.25s !important;
	}

	.hero-slide.active .hero-subtitle {
		transition-delay: 0.4s !important;
	}

	.hero-slide.active .hero-cta {
		transition-delay: 0.55s !important;
	}

	/* Badge pill */
	.hero-slide .hero-badge {
		font-size: 11px;
		padding: 5px 14px;
		margin-bottom: 1.25rem;
		background: rgba(37, 99, 235, 0.12);
		border: 1px solid rgba(96, 165, 250, 0.25);
		color: var(--blue-400);
	}

	/* Title — bright white */
	.hero-slide .hero-title {
		font-size: 2.1rem !important;
		line-height: 1.15 !important;
		margin: 0.75rem 0 1.25rem !important;
		font-weight: 800 !important;
		letter-spacing: -1px !important;
		color: #ffffff !important;
		-webkit-text-fill-color: unset !important;
		background: none !important;
	}

	/* Subtitle */
	.hero-slide .hero-subtitle {
		font-size: 0.9rem !important;
		margin-bottom: 2.25rem !important;
		color: #cbd5e1 !important;
		line-height: 1.6 !important;
		max-width: 100% !important;
		opacity: 0.9;
	}

	/* CTA — refined layout */
	.hero-slide .hero-cta {
		flex-direction: row !important;
		gap: 0.85rem !important;
		justify-content: flex-start !important;
		margin-top: 0.5rem;
	}

	.hero-slide .hero-cta .btn {
		width: auto !important;
		padding: 0.75rem 1.4rem !important;
		font-size: 0.88rem !important;
		border-radius: 8px !important;
		font-weight: 600;
	}

	.hero-slide .hero-cta .btn-primary {
		background: var(--blue-600) !important;
		border: none !important;
		box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
	}

	.hero-slide .hero-cta .btn-outline {
		border: 1px solid rgba(255, 255, 255, 0.35) !important;
		color: #ffffff !important;
		background: rgba(255, 255, 255, 0.05) !important;
	}

	/* Hide mockup column */
	.hero-mockup-right {
		display: none !important;
	}

	/* Slider nav arrows - smaller and at bottom */
	.slider-controls {
		bottom: 1rem !important;
		width: 100%;
		display: flex;
		justify-content: center;
		left: 0;
		z-index: 20;
	}

	.slider-btn {
		width: 32px !important;
		height: 32px !important;
		font-size: 0.8rem !important;
		background: rgba(255, 255, 255, 0.08) !important;
		border: 1px solid rgba(255, 255, 255, 0.15) !important;
		backdrop-filter: blur(4px);
		color: white !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.hero-section {
		padding: 5rem 0 4rem;
		min-height: auto;
	}

	/* .hero-cta column override only for non-slider hero pages */
	.hero-section .hero-cta {
		flex-direction: row !important;
		justify-content: flex-start !important;
	}

	.hero-section .hero-cta .btn {
		text-align: center;
		justify-content: center;
	}

	.dashboard-mockup {
		display: none;
	}

	.stats-section {
		padding: 1.5rem 0 !important;
	}

	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
		padding: 0 !important;
	}

	.stat-item {
		padding: 0.5rem !important;
	}

	.stat-number {
		font-size: 1.5rem !important;
		margin-bottom: 0.25rem !important;
	}

	.stat-label {
		font-size: 0.65rem !important;
		line-height: 1.2 !important;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.logo-strip {
		gap: 1.5rem;
	}

	/* Trust Section Mobile: Stack Label on Top */
	.trust-section {
		padding: 2rem 0 !important;
	}

	.trust-section .container {
		flex-direction: column !important;
		align-items: center !important;
		gap: 1.5rem !important;
		text-align: center;
	}

	.trust-section .trust-label {
		font-size: 0.7rem !important;
		opacity: 0.8;
	}

	.trust-section .logo-marquee-container {
		width: 100% !important;
	}

	.menu-toggle {
		display: block;
		order: 2;
	}

	.main-navigation {
		display: none;
		order: 3;
		width: 100%;
	}

	.main-navigation.toggled {
		display: block !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border-bottom: 1px solid var(--slate-100);
		padding: 1rem 1.5rem;
		box-shadow: var(--shadow-md);
		z-index: 1001;
	}

	.main-navigation.toggled ul {
		flex-direction: column;
		gap: 1rem;
		display: flex !important;
	}

	.site-logo {
		order: 1;
	}

	.nav-cta {
		display: none;
	}

	.contact-info-card {
		margin-bottom: 2rem;
	}

	.floating-quote {
		bottom: 1.5rem;
		right: 1.5rem;
		z-index: 1000;
	}

	.floating-quote-btn {
		width: 50px !important;
		height: 50px !important;
		padding: 0 !important;
		font-size: 0.8rem;
		box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
	}

	.floating-quote-btn:hover {
		width: 150px !important;
		padding: 0 1.2rem !important;
	}

	.site-footer {
		padding-bottom: 5rem;
		/* Space for floating widget */
	}

	.filter-bar {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 0 1.5rem 1.5rem;
		margin: 0 -1.5rem 2rem;
		-webkit-overflow-scrolling: touch;
		gap: 0.75rem;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

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

	.filter-btn {
		white-space: nowrap;
		flex-shrink: 0;
		padding: 0.6rem 1.2rem;
		font-size: 0.82rem;
	}
}

/* ============================================================
   CASE STUDY CARDS
   ============================================================ */
.cs-card {
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	flex-direction: column;
	gap: 1rem;
	transition: transform .25s, box-shadow .25s;
}

.cs-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.cs-card-header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.cs-icon-wrap {
	width: 46px;
	height: 46px;
	background: var(--blue-50);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cs-industry-label {
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--blue-600);
	margin-bottom: .2rem;
}

.cs-client-name {
	font-weight: 700;
	color: var(--slate-900);
	font-size: .95rem;
}

.cs-title {
	font-size: 1.15rem;
	line-height: 1.3;
	margin: 0;
}

.cs-title a {
	color: var(--slate-900);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cs-title a:hover {
	color: var(--blue-600);
}

.cs-excerpt {
	color: var(--slate-500);
	font-size: .9rem;
	line-height: 1.6;
	margin: 0;
}

.cs-results {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	background: var(--blue-50);
	border-radius: var(--radius-md);
	padding: .85rem 1rem;
}

.cs-result-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .85rem;
	color: var(--slate-700);
	font-weight: 500;
}

.cs-result-num {
	color: var(--blue-600);
	font-weight: 700;
}

.cs-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: .75rem;
	border-top: 1px solid var(--slate-100);
}

.cs-read-link {
	font-size: .85rem;
	color: var(--blue-600);
	font-weight: 600;
	text-decoration: none;
}

.cs-read-link:hover {
	text-decoration: underline;
}

/* ============================================================
   SINGLE CASE STUDY LAYOUT
   ============================================================ */
.cs-single-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	align-items: start;
}

.cs-sidebar-card {
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.cs-sidebar-card h4 {
	font-size: 1rem;
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--slate-100);
}

.cs-sidebar-cta {
	background: var(--gradient-accent);
	border: none;
	color: white;
}

.cs-sidebar-cta h4,
.cs-sidebar-cta p {
	color: white;
}

.cs-sidebar-cta p {
	font-size: .875rem;
	margin-bottom: 1rem;
	opacity: .9;
}

.cs-overview-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.cs-overview-list li {
	display: flex;
	justify-content: space-between;
	font-size: .875rem;
	border-bottom: 1px dashed var(--slate-100);
	padding-bottom: .5rem;
}

.cs-overview-list li:last-child {
	border: none;
	padding: 0;
}

.cs-overview-list span {
	color: var(--slate-500);
}

.cs-overview-list strong {
	color: var(--slate-900);
}

.cs-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	border-top: 1px solid var(--slate-100);
	margin-top: 2rem;
	gap: 1rem;
}

.cs-navigation a {
	text-decoration: none;
	color: var(--blue-600);
	font-weight: 500;
	font-size: .9rem;
}

/* ============================================================
   BLOG LAYOUT & CARDS
   ============================================================ */
.blog-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
	align-items: start;
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
}

.blog-card {
	background: var(--glass);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	z-index: 1;
}

.blog-card:hover {
	transform: translateY(-10px) scale(1.01);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
	border-color: var(--blue-400) !important;
}

.blog-card--featured {
	grid-column: 1 / -1;
	flex-direction: row;
}

.blog-card-img {
	position: relative;
	overflow: hidden;
	background: var(--blue-900);
	height: 240px;
	/* Standard height for regular cards */
	width: 100%;
}

.blog-card--featured .blog-card-img {
	width: 45%;
	min-height: 400px;
	height: auto;
	flex-shrink: 0;
}

.blog-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-body {
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.blog-card--featured .blog-card-body {
	padding: 3rem;
}

display: flex;
flex-direction: column;
flex: 1;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: .85rem;
}

.blog-category-tag {
	display: inline-block;
	background: var(--blue-50);
	color: var(--blue-700);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .25rem .65rem;
	border-radius: var(--radius-full);
	text-decoration: none;
}

.blog-category-tag:hover {
	background: var(--blue-100);
}

.blog-read-time {
	display: flex;
	align-items: center;
	gap: .3rem;
	font-size: .78rem;
	color: var(--slate-500);
}

.blog-card-title {
	font-size: 1.15rem;
	line-height: 1.35;
	margin: 0 0 .6rem;
}

.blog-card-title a {
	color: var(--slate-900);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card-title a:hover {
	color: var(--blue-600);
}

.blog-card-title--sm {
	font-size: .95rem;
}

.blog-card-excerpt {
	color: var(--slate-500);
	font-size: .875rem;
	flex: 1;
	margin-bottom: 1rem;
}

.blog-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--slate-100);
}

.blog-author {
	display: flex;
	align-items: center;
	gap: .6rem;
}

.blog-author-avatar {
	border-radius: 50%;
}

.blog-author-name {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--slate-900);
}

.blog-read-more {
	font-size: .82rem;
	font-weight: 600;
	color: var(--blue-600);
	text-decoration: none;
}

.blog-read-more:hover {
	text-decoration: underline;
}

/* Pagination */
.blog-pagination {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 2.5rem;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	border: 1px solid var(--slate-300);
	text-decoration: none;
	font-size: .875rem;
	color: var(--slate-700);
	transition: all .2s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: white;
}

/* Blog Sidebar */
.blog-sidebar {
	position: sticky;
	top: 6rem;
}

.blog-widget {
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.blog-widget-title {
	font-size: .95rem;
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--slate-100);
}

.blog-cat-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.blog-cat-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .875rem;
}

.blog-cat-list a {
	color: var(--slate-700);
	text-decoration: none;
}

.blog-cat-list a:hover {
	color: var(--blue-600);
}

.blog-cat-count {
	background: var(--slate-100);
	color: var(--slate-500);
	font-size: .72rem;
	padding: .15rem .5rem;
	border-radius: var(--radius-full);
}

.blog-recent-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.blog-recent-list li {
	display: flex;
	flex-direction: column;
	gap: .15rem;
	font-size: .85rem;
	padding-bottom: .6rem;
	border-bottom: 1px dashed var(--slate-100);
}

.blog-recent-list li:last-child {
	border: none;
}

.blog-recent-list a {
	color: var(--slate-700);
	text-decoration: none;
	font-weight: 500;
}

.blog-recent-list a:hover {
	color: var(--blue-600);
}

.blog-recent-list span {
	font-size: .75rem;
	color: var(--slate-500);
}

.blog-widget-cta {
	background: var(--gradient-accent);
	border: none;
	text-align: center;
}

.blog-widget-cta h4,
.blog-widget-cta p {
	color: white;
}

.blog-widget-cta h4 {
	border: none;
	padding: 0;
	margin-bottom: .5rem;
}

.blog-widget-cta p {
	font-size: .85rem;
	opacity: .9;
	margin-bottom: 1.25rem;
}

.blog-widget-cta-icon {
	font-size: 2rem;
	margin-bottom: .75rem;
}

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */
.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--blue-600);
	width: 0%;
	z-index: 9999;
	transition: width .1s;
}

.post-hero {
	background: var(--gradient-hero);
	padding: 5.5rem 0 3.5rem;
}

.post-hero-inner {
	max-width: 820px;
}

.post-hero-meta {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: 1.25rem;
}

.post-hero-title {
	color: white;
	font-size: clamp(1.5rem, 4vw, 2.75rem);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.post-hero-author {
	display: flex;
	align-items: center;
	gap: .85rem;
}

.post-author-avatar {
	border-radius: 50%;
}

.post-author-name {
	font-size: .9rem;
	font-weight: 600;
	color: white;
}

.post-author-date {
	font-size: .78rem;
	color: rgba(255, 255, 255, .6);
}

.post-featured-img {
	background: var(--slate-900);
	padding: 0;
}

.post-featured-img img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.post-single-content {
	max-width: 760px;
	width: 100%;
}

.entry-content {
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.entry-content img,
.entry-content figure,
.entry-content iframe,
.entry-content video {
	max-width: 100% !important;
	height: auto !important;
}

.post-single-content h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
}

.post-single-content h3 {
	font-size: 1.2rem;
	margin: 1.75rem 0 .75rem;
}

.post-single-content p {
	margin-bottom: 1.25rem;
	line-height: 1.8;
}

.post-single-content ul,
.post-single-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.post-single-content li {
	margin-bottom: .4rem;
	line-height: 1.7;
}

.post-single-content blockquote {
	border-left: 4px solid var(--blue-600);
	background: var(--blue-50);
	margin: 1.5rem 0;
	padding: 1rem 1.5rem;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-style: italic;
	color: var(--slate-700);
}

.post-tags-section {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--slate-100);
}

.post-tags-label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--slate-500);
}

.post-share {
	display: flex;
	align-items: center;
	gap: .6rem;
	flex-wrap: wrap;
	margin: 1.5rem 0;
}

.post-share-label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--slate-500);
}

.share-btn {
	padding: .4rem .9rem;
	border-radius: var(--radius-full);
	font-size: .8rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: opacity .2s;
}

.share-btn:hover {
	opacity: .85;
}

.share-li {
	background: #0077b5;
	color: white;
}

.share-tw {
	background: #000;
	color: white;
}

.share-copy {
	background: var(--slate-100);
	color: var(--slate-700);
}

.author-box {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	background: var(--slate-50);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	margin: 2rem 0;
}

.blog-cta-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 4rem 2rem;
	background: var(--glass);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-xl);
	margin-top: 5rem;
	box-shadow: var(--glass-shadow);
}

.blog-cta-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.blog-cta-box h4 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	color: var(--slate-900);
}

.blog-cta-box p {
	font-size: 1.1rem;
	color: var(--slate-500);
	margin-bottom: 2rem;
	max-width: 500px;
}

.author-box-avatar {
	border-radius: 50%;
	flex-shrink: 0;
}

.author-box-name {
	font-weight: 700;
	font-size: 1rem;
	color: var(--slate-900);
	margin-bottom: .35rem;
}

.author-box-bio {
	font-size: .875rem;
	color: var(--slate-500);
	margin: 0;
	line-height: 1.6;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 0;
	border-top: 1px solid var(--slate-100);
	margin-top: 1rem;
	gap: 1rem;
}

.post-navigation a {
	text-decoration: none;
	color: var(--blue-600);
	font-size: .875rem;
	font-weight: 500;
}

.related-posts {
	margin-top: 3rem;
}

.related-title {
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}

/* Search Form (WordPress standard) */
.search-form {
	display: flex;
	gap: .5rem;
}

.search-form input[type="search"] {
	flex: 1;
	padding: .6rem .9rem;
	border: 1px solid var(--slate-300);
	border-radius: var(--radius-md);
	font-size: .875rem;
	font-family: var(--font);
	outline: none;
}

.search-form input[type="search"]:focus {
	border-color: var(--blue-500);
}

.search-form button {
	padding: .6rem .9rem;
	background: var(--blue-600);
	color: white;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	font-family: var(--font);
	font-size: .875rem;
}

/* Blog home page teasers on front-page */
.blog-teaser-card {
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .25s, box-shadow .25s;
	display: flex;
	flex-direction: column;
}

.blog-teaser-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.blog-teaser-img {
	background: var(--blue-50);
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-teaser-img img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.blog-teaser-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-teaser-body h4 {
	font-size: 1rem;
	margin-bottom: .5rem;
}

.blog-teaser-body h4 a {
	color: var(--slate-900);
	text-decoration: none;
}

.blog-teaser-body h4 a:hover {
	color: var(--blue-600);
}

.blog-teaser-body p {
	font-size: .85rem;
	color: var(--slate-500);
	flex: 1;
}

/* No posts message */
.no-posts {
	color: var(--slate-500);
	text-align: center;
	padding: 3rem;
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px dashed var(--slate-300);
	grid-column: 1 / -1;
}

/* ============================================================
   CONTINUOUS PRODUCT SLIDER
   ============================================================ */
.product-slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 2rem 0 4rem;
}

.product-slider-track {
	display: flex;
	gap: 2rem;
	width: max-content;
	animation: scrollContinuous 60s linear infinite;
}

/* Pause on hover for better UX */
.product-slider-container:hover .product-slider-track {
	animation-play-state: paused;
}

.product-slider-track .product-card {
	width: 380px;
	flex-shrink: 0;
}

@keyframes scrollContinuous {
	0% {
		transform: translateX(0);
	}

	100% {
		/* We've duplicated the items, so we scroll exactly half the width */
		transform: translateX(-50%);
	}
}

/* ============================================================
   PAGINATION
   ============================================================ */
.doer-pagination {
	margin-top: 4rem;
	display: flex;
	justify-content: center;
	gap: .5rem;
}

.doer-pagination .page-numbers {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	background: var(--white);
	border: 1px solid var(--slate-100);
	color: var(--slate-700);
	font-weight: 600;
	transition: all .2s;
	text-decoration: none;
}

.doer-pagination .page-numbers:hover {
	border-color: var(--blue-600);
	color: var(--blue-600);
}

.doer-pagination .page-numbers.current {
	background: var(--gradient-accent);
	color: var(--white);
	border-color: transparent;
	box-shadow: var(--shadow-blue);
}

.doer-pagination .prev,
.doer-pagination .next {
	width: auto;
	padding: 0 1.25rem;
}

/* ============================================================
   BLOG & CASE STUDY RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

	.cs-single-layout,
	.blog-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.blog-sidebar {
		position: static;
		width: 100% !important;
	}

	.post-single-content {
		max-width: 100% !important;
	}
}

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-card--featured {
		flex-direction: column;
	}

	.blog-card--featured .blog-card-img {
		width: 100%;
		min-height: 200px;
	}

	.post-hero {
		padding: 2.5rem 0 2rem !important;
	}

	.post-hero-title {
		font-size: 1.75rem !important;
	}

	.post-featured-img img {
		max-height: 250px !important;
	}

	.post-single-content {
		font-size: 1.05rem !important;
	}

	.post-navigation {
		flex-direction: column;
		gap: 1.25rem;
		text-align: center;
	}

	.author-box {
		padding: 1.75rem 1.25rem !important;
		margin-top: 2.5rem !important;
	}
}

/* ============================================================
   ULTRA-PREMIUM CASE STUDY DESIGN (v16)
   ============================================================ */

/* --- Dynamic Grid Cards --- */
.cs-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(15, 23, 42, 0.08);
	/* slate-900 at 8% */
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
}

.cs-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
	border-color: var(--blue-400);
}

.cs-card-img {
	position: relative;
	height: 240px;
	overflow: hidden;
	margin: 5px;
	border-radius: 14px;
}

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

.cs-card:hover .cs-card-img img {
	transform: scale(1.15);
}

.cs-industry-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(8px);
	color: white;
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	z-index: 2;
}

.cs-results-highlight {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
	color: white;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
}

.cs-res-check {
	background: var(--blue-500);
	color: white;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.cs-res-val {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.cs-card-body {
	padding: 15px 25px 25px;
	flex: 1;
}

.cs-client-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--blue-600);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 8px;
	display: block;
}

.cs-title {
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 12px;
}

.cs-title a {
	color: var(--slate-900);
	text-decoration: none;
	background: linear-gradient(to right, var(--blue-600), var(--blue-600)) no-repeat 0 100%;
	background-size: 0 2px;
	transition: background-size 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cs-card:hover .cs-title a {
	background-size: 100% 2px;
}

.cs-excerpt {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--slate-500);
	margin-bottom: 20px;
}

.cs-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid var(--slate-50);
}

.cs-product-tag {
	font-size: 10px;
	background: var(--slate-50);
	color: var(--slate-400);
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 700;
}

.cs-link {
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--blue-600);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* --- Cinematic Detail Page --- */
.cs-hero {
	height: 70vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	color: white;
}

.cs-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95));
}

.cs-hero-content {
	position: relative;
	z-index: 3;
	max-width: 1000px;
	text-align: center;
}

.cs-hero-badge {
	background: var(--blue-600);
	padding: 8px 24px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.cs-hero-title {
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 25px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cs-impact-strip {
	background: #ffffff;
	margin-top: -60px;
	position: relative;
	z-index: 10;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 40px 100px rgba(15, 23, 42, 0.1);
	border: 1px solid rgba(15, 23, 42, 0.05);
}

.cs-impact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.cs-impact-item {
	text-align: center;
	border-right: 1px solid var(--slate-100);
}

.cs-impact-item:last-child {
	border: none;
}

/* Stats Strip */
.stats-section {
	padding: 4rem 0;
	background: #ffffff;
	border-bottom: 1px solid var(--slate-100);
}

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

.stat-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	border-radius: var(--radius-xl);
	transition: all 0.3s ease;
}

.stat-item:hover {
	background: var(--blue-50);
	transform: translateY(-5px);
}

.stat-icon {
	width: 64px;
	height: 64px;
	background: var(--blue-600);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
	transform: rotate(-10deg) scale(1.1);
	background: var(--blue-700);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--slate-900);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--slate-500);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Responsive Stats */
@media (max-width: 1024px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.stats-section {
		padding: 3rem 0;
	}

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

	.stat-item {
		padding: 1rem;
		gap: 1.25rem;
	}

	.stat-icon {
		width: 54px;
		height: 54px;
	}

	.stat-number {
		font-size: 2.25rem;
	}
}

.cs-impact-item strong {
	display: block;
	font-size: 3rem;
	font-weight: 900;
	color: var(--slate-900);
	line-height: 1;
	margin-bottom: 10px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cs-impact-item small {
	font-size: 11px;
	font-weight: 800;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.cs-main-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 80px;
	margin-top: 60px;
}

.cs-main-grid .entry-content p {
	text-align: justify;
}

.cs-section-block {
	margin-bottom: 80px;
}

.cs-block-tag {
	font-size: 11px;
	font-weight: 900;
	color: var(--blue-600);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.cs-block-tag::after {
	content: '';
	height: 1px;
	flex: 1;
	background: var(--slate-100);
}

.cs-intro {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--slate-800);
	line-height: 1.5;
	margin-bottom: 40px;
}

.cs-content-area {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--slate-600);
}

.cs-sidebar-card {
	background: var(--slate-50);
	border-radius: 20px;
	padding: 40px;
	border: 1px solid var(--slate-100);
	margin-bottom: 30px;
}

.cs-intel-list li {
	padding: 15px 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.cs-intel-list li i {
	color: var(--blue-600);
	margin-right: 15px;
}

.cs-intel-list li span {
	color: var(--slate-400);
	font-weight: 600;
}

.cs-intel-list li strong {
	float: right;
	color: var(--slate-900);
}

.cs-cta-card {
	background: var(--slate-900);
	color: white;
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
}

.cs-cta-card h3 {
	color: white;
	margin-bottom: 15px;
}

@media (max-width: 991px) {
	.cs-impact-grid {
		grid-template-columns: 1fr;
	}

	.cs-main-grid {
		grid-template-columns: 1fr;
	}

	.cs-impact-item {
		border: none;
		border-bottom: 1px solid var(--slate-100);
		padding-bottom: 20px;
	}
}

/* Minimalist Card Consistency (v17) */
.blog-card,
.cs-card {
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	background: white;
}

.blog-card-body,
.cs-card-body {
	padding: 20px 25px;
}

.blog-card-title,
.cs-title {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

/* Color Consistency Fixes for Details Page */
.cs-hero {
	background-color: #0f172a;
	/* Solid Slate 900 base */
}

.cs-impact-strip {
	background: white;
	margin-top: -40px;
	/* Less dramatic overlap */
}

.cs-impact-item strong {
	background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cs-sidebar-card {
	background: #f8fafc;
	/* Slate 50 */
	border: 1px solid #f1f5f9;
	/* Slate 100 */
}

.cs-intel-list li strong {
	color: var(--blue-700);
}

.cs-cta-card {
	background: var(--slate-900);
}

.btn-white {
	background: white;
	color: var(--blue-600) !important;
}

/* Luxury Minimal Case Study Cards (v18) */
.cs-card {
	height: 400px;
	/* Tall, cinematic aspect ratio */
	border: none !important;
	background: transparent !important;
	border-radius: 20px;
	overflow: hidden;
}

.cs-card-link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.cs-card-img {
	height: 100%;
	position: relative;
	overflow: hidden;
}

.cs-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
	display: flex;
	align-items: flex-end;
	padding: 30px;
	opacity: 1;
	transition: all 0.5s ease;
}

.cs-card:hover .cs-card-img img {
	transform: scale(1.1);
}

.cs-card-info {
	transform: translateY(20px);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-card:hover .cs-card-info {
	transform: translateY(0);
}

.cs-card .cs-title {
	color: white !important;
	font-size: 1.5rem !important;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.2;
}

.cs-read-btn {
	display: inline-block;
	color: var(--blue-400);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0;
	transition: all 0.4s ease;
	transform: translateX(-10px);
}

.cs-card:hover .cs-read-btn {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 768px) {
	.cs-card {
		height: 350px;
	}

	.cs-read-btn {
		opacity: 1;
		transform: translateX(0);
	}

	.cs-card-info {
		transform: translateY(0);
	}
}

/* High-Contrast Corporate Case Study Cards (v19) */
.cs-card {
	background: #ffffff !important;
	border-radius: 12px;
	border: 1px solid #f1f5f9;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cs-card-media {
	height: 220px;
	position: relative;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
}

.cs-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

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

.cs-card-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--blue-700);
	padding: 6px 14px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cs-card-content {
	padding: 25px;
	position: relative;
}

.cs-card-accent {
	position: absolute;
	left: 0;
	top: 25px;
	width: 3px;
	height: 24px;
	background: var(--blue-600);
}

.cs-card-title {
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	margin-bottom: 20px !important;
	margin-left: 10px;
}

.cs-card-title a {
	color: var(--slate-900);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cs-card-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-top: 1px solid #f8fafc;
	padding-top: 15px;
}

.cs-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: var(--slate-500);
	font-weight: 600;
}

.cs-meta-icon {
	font-size: 14px;
}

.cs-meta-success {
	color: #059669;
	/* emerald-600 */
}

/* ============================================================
   INFINITE LOGO MARQUEE (v35)
   ============================================================ */
.logo-marquee-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 1.5rem 0;
	background: #ffffff;
	border-bottom: 1px solid var(--slate-100);
}

.logo-marquee-track {
	display: flex;
	gap: 6rem;
	width: max-content;
	align-items: center;
	animation: logoScroll 40s linear infinite;
}

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

.logo-item {
	flex-shrink: 0;
}

/* ============================================================
   CASE STUDY DETAILS RESPONSIVE FIXES (v36)
   ============================================================ */
.cs-detail-main-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 6rem;
}

.cs-detail-main-grid .entry-content p {
	text-align: justify;
}

@media (max-width: 1200px) {
	.cs-detail-main-grid {
		gap: 3rem;
	}
}

@media (max-width: 991px) {
	.cs-detail-main-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.product-hero-section {
		padding: 4rem 0 8rem !important;
		text-align: center;
	}

	.product-hero-section .grid-2 {
		gap: 3rem !important;
	}

	.product-hero-section h1 {
		font-size: 2.5rem;
	}

	.product-hero-section div[style*="display:flex; gap:1rem"],
	.cs-hero-btns {
		justify-content: center;
		flex-wrap: wrap;
	}

	.product-hero-section div[style*="display: flex; align-items: center; gap: 10px;"],
	.cs-partnership-line {
		justify-content: center;
	}

	.impact-dashboard-container {
		margin-top: -4rem !important;
	}

	.impact-dashboard-container .grid-3 {
		gap: 1rem !important;
	}

	.cta-section {
		margin: 0 0 4rem !important;
		border-radius: 0 !important;
	}
}

@media (max-width: 768px) {
	.product-hero-section {
		padding-top: 8.5rem !important;
	}

	.product-hero-section h1 {
		font-size: 2.25rem;
	}

	.cs-section-block {
		margin-bottom: 3rem !important;
	}

	.cs-detail-main-grid {
		gap: 3rem;
	}

	.impact-dashboard-container .grid-3>div {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem !important;
	}
}

@keyframes logoScroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ============================================================
   ULTIMATE MOBILE RESPONSIVENESS FIX (v37)
   ============================================================ */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

@media (max-width: 991px) {
	.blog-layout {
		display: flex !important;
		flex-direction: column !important;
		gap: 3rem !important;
	}

	.blog-sidebar {
		width: 100% !important;
		position: static !important;
		margin-top: 2rem;
	}

	.post-single-content {
		width: 100% !important;
		max-width: 100% !important;
		padding-right: 0 !important;
	}

	.container {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 1.25rem !important;
	}

	.post-hero {
		padding: 3rem 1.25rem !important;
	}

	.post-hero-inner {
		max-width: 100% !important;
	}

	.post-hero-title {
		font-size: 2rem !important;
		word-break: break-word;
	}

	.entry-content {
		font-size: 1rem !important;
		line-height: 1.7 !important;
	}

	.entry-content img,
	.entry-content iframe,
	.entry-content video {
		max-width: 100% !important;
		height: auto !important;
	}
}

/* Mobile Portrait */
@media (max-width: 480px) {
	.cert-logo-grid {
		gap: 2rem;
		margin-top: 2rem;
	}

	.cert-logo {
		width: 100px;
	}

	.cert-img {
		max-height: 60px;
	}
}

.post-hero-title {
	font-size: 1.75rem !important;
}

.post-hero-meta {
	flex-wrap: wrap;
}

.blog-cta-box {
	padding: 2.5rem 1.5rem !important;
	margin-top: 3.5rem !important;
}

.blog-cta-icon {
	font-size: 2.5rem !important;
}

.blog-cta-box h4 {
	font-size: 1.35rem !important;
}

.blog-cta-box p {
	font-size: 0.95rem !important;
	margin-bottom: 1.5rem !important;
}
}