/* ============================================================
         VIKING CODERS — SHARED CASE STUDY STYLESHEET
         Matches Spa-Mart case study design system
         Colors: #2789b3 #4caad8 #cda61c #0e0d0d #f1ecec #e8d6d6
         Fonts: Montserrat Bold (headings) / Montserrat (body)
      ============================================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--vc-blue: #10719b;
	--vc-blue-light: #4caad8;
	--vc-gold: #cda61c;
	--vc-dark: #0e0d0d;
	--vc-off-white: #f1ecec;
	--vc-blush: #e8d6d6;
	--vc-white: #ffffff;
	--font-heading: "Montserrat", sans-serif;
	--font-body: "Montserrat", sans-serif;
	--max-width: 1200px;
	--section-pad: 30px 0;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	-webkit-font-smoothing: none;
	-moz-osx-font-smoothing: auto;
	text-rendering: auto;
}

body {
	font-family: var(--font-body) !important;
	background: var(--vc-dark) !important;
	color: var(--vc-dark) !important;
	line-height: 1.7 !important;
	font-size: 16px !important;
	overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-heading) !important;
	font-weight: 700;
	line-height: 1.2;
}
.section {
	padding: var(--section-pad);
}
.section-dark {
	background: var(--vc-dark);
	color: var(--vc-off-white);
}
.section-off-white {
	background: var(--vc-off-white);
}
.section-blush {
	background: var(--vc-blush);
}
.w-full {
	width: 100% !important;
}
.filter-bl50 {
	filter: brightness(50%);
}

.section-eyebrow {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vc-blue);
	display: block;
	margin-bottom: 10px;
}
.section-eyebrow.gold {
	color: var(--vc-gold);
}

/* ── NAV ── */
.cs-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(14, 13, 13, 0.96);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-nav__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cs-nav__brand {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 18px;
	color: var(--vc-white);
	text-decoration: none;
	letter-spacing: 0.02em;
}
.cs-nav__brand span {
	color: var(--vc-blue-light);
}
.cs-nav__links {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
}
.cs-nav__links a {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: color 0.2s;
}
.cs-nav__links a:hover {
	color: var(--vc-white);
}
.cs-nav__links .sep {
	color: rgba(255, 255, 255, 0.25);
	font-size: 11px;
}
.cs-nav__cta {
	background: var(--vc-gold) !important;
	color: var(--vc-dark) !important;
	font-weight: 700 !important;
	padding: 9px 20px;
	border-radius: 4px;
	font-size: 13px !important;
	transition:
		background 0.2s,
		transform 0.2s !important;
}
.cs-nav__cta:hover {
	background: #b8920f !important;
	transform: translateY(-1px);
}

/* ── HERO ── */
.cs-hero {
	min-height: 100vh;
	background: var(--vc-dark);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: 64px;
	position: relative;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("ukc-banner.jpg");
	background-size: cover;
	background-position: center;
}
.hero-overlay-1 {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #0c1a24 0%, rgba(12, 26, 36, 0.8) 50%, rgba(12, 26, 36, 0.3) 100%);
}

.cs-hero__content {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 80px 24px 60px;
	width: 100%;
}
.cs-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vc-blue-light);
	margin-bottom: 24px;
}
.cs-hero__badge::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: var(--vc-blue-light);
}
.cs-hero__client-url {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.06em;
	margin-bottom: 20px;
	display: block;
}
.cs-hero__client-url a {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.2s;
}
.cs-hero__client-url a:hover {
	color: var(--vc-blue-light);
}
.cs-hero__title {
	font-size: clamp(48px, 8vw, 88px);
	font-weight: 900;
	color: var(--vc-white);
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 16px;
}
.cs-hero__subtitle {
	font-size: clamp(13px, 2vw, 16px);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--vc-gold);
	margin-bottom: 28px;
}
.cs-hero__platform-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(39, 137, 179, 0.15);
	border: 1px solid rgba(39, 137, 179, 0.35);
	border-radius: 4px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--vc-blue-light);
	letter-spacing: 0.06em;
	margin-bottom: 28px;
}
.cs-hero__desc {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 640px;
	line-height: 1.75;
	margin-bottom: 36px;
}
.cs-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 48px;
}
.cs-hero__tag {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 14px;
	border-radius: 100px;
	transition: all 0.2s;
}
.cs-hero__tag:hover {
	border-color: var(--vc-blue-light);
	color: var(--vc-blue-light);
}
.hero-scroll {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #ffffffb8;
	font-size: 0.875rem;
	font-weight: 500;
}
.hero-scroll span {
	color: #ffffffb8;
	font-size: 0.875rem;
	font-weight: 500;
}
.hero-scroll-line {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}
.hero-scroll-bar {
	width: 1px;
	height: 2rem;
	background: linear-gradient(to bottom, #ffffffb8, transparent);
}
.hero-scroll-dot {
	position: relative;
	width: 0.6rem;
	height: 0.6rem;
	animation: scrollBob 1.6s ease-in-out infinite;
}
.hero-scroll-dot::before,
.hero-scroll-dot::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0.07rem;
	height: 0.6rem;
	background: #ffffff99;
	border-radius: 1px;
}
.hero-scroll-dot::before {
	left: 75%;
	transform: rotate(45deg);
}
.hero-scroll-dot::after {
	right: 75%;
	transform: rotate(-45deg);
}

@keyframes scrollBob {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}

/* ── GLANCE STATS ── */
.cs-glance {
	background: var(--vc-off-white);
	padding: 50px 0;
}
.cs-glance__label {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vc-blue);
	text-align: center;
	margin-bottom: 48px;
}
.cs-glance__grid {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(14, 13, 13, 0.08);
	border: 1px solid rgba(14, 13, 13, 0.08);
}
.cs-glance__item {
	background: var(--vc-off-white);
	padding: 40px 32px;
	text-align: center;
}
.cs-glance__number {
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 900;
	color: var(--vc-blue);
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}
.cs-glance__number.gold {
	color: var(--vc-gold);
}
.cs-glance__title {
	font-size: 13px;
	font-weight: 700;
	color: var(--vc-dark);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.cs-glance__desc {
	font-size: 13px;
	color: rgba(14, 13, 13, 0.75);
	line-height: 1.6;
}

/* ── INTEGRATIONS MARQUEE ── */
.cs-integrations {
	background: var(--vc-blush);
	padding: 50px 0;
	overflow: hidden;
	border-top: 1px solid rgba(14, 13, 13, 0.06);
	border-bottom: 1px solid rgba(14, 13, 13, 0.06);
}
.cs-integrations__label {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(14, 13, 13, 0.6);
	margin-bottom: 20px;
}
.cs-marquee-track {
	display: flex;
	width: max-content;
	animation: marqueeScroll 36s linear infinite;
}
.cs-marquee-track:hover {
	animation-play-state: paused;
}
@keyframes marqueeScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.cs-marquee-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	flex-shrink: 0;
	height: 72px;
}
.cs-marquee-item img {
	height: 84px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%) opacity(0.85);
	transition: filter 0.3s;
}
.cs-marquee-item img:hover {
	filter: grayscale(0%) opacity(1);
}
.cs-integration-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: rgba(14, 13, 13, 0.38);
	letter-spacing: 0.04em;
	white-space: nowrap;
	transition: color 0.3s;
}
.cs-integration-badge:hover {
	color: var(--vc-blue);
}
.cs-integration-badge .badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}
.cs-integration-desc {
	text-align: center;
	color: rgba(14, 13, 13, 0.6);
	margin-bottom: 32px;
}
/* ── VIKING SOLUTIONS SECTION ── */
.cs-viking-solutions {
	background: var(--vc-dark);
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.cs-viking-solutions__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}
.cs-viking-solutions__header {
	text-align: center;
	margin-bottom: 48px;
}
.cs-viking-solutions__header h2 {
	font-weight: 700;
	font-size: clamp(22px, 3vw, 32px);
	color: var(--vc-white);
	margin-bottom: 12px;
}
.cs-viking-solutions__header p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	max-width: 560px;
	margin: 0 auto;
}
.cs-viking-solutions__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.05);
}
.cs-viking-solutions__grid.owl-carousel {
	display: grid;
}
.cs-viking-solution-card {
	background: rgba(255, 255, 255, 0.03);
	padding: 32px 28px;
	border-left: 3px solid var(--vc-blue);
	transition: background 0.2s;
}
.cs-viking-solution-card:hover {
	background: rgba(39, 137, 179, 0.08);
}
.cs-viking-solution-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--vc-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}
.cs-viking-solution-card p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
}
.cs-viking-solution-card .vc-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vc-gold);
	background: rgba(205, 166, 28, 0.12);
	border: 1px solid rgba(205, 166, 28, 0.25);
	border-radius: 3px;
	padding: 3px 8px;
	margin-bottom: 10px;
}

/* ── BEFORE & AFTER ── */
.cs-before-after {
	background: var(--vc-dark);
	padding: 50px 0;
}
.cs-before-after__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}
.cs-before-after__header {
	text-align: center;
	margin-bottom: 48px;
}
.cs-before-after__header h2 {
	font-size: clamp(28px, 4vw, 48px);
	color: var(--vc-white);
	margin-bottom: 16px;
}
.cs-before-after__header p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.55);
	max-width: 580px;
	margin: 0 auto;
}
.tab-toggle {
	display: flex;
	gap: 4px;
	background: #0c1a24;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	padding: 4px;
	width: fit-content;
	margin-bottom: 1rem;
}
.tab-btn {
	padding: 0.6rem 1.5rem;
	border-radius: 3px;
	font-size: 0.8rem;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	color: #8aabbd;
	background: transparent;
}
.tab-btn:hover {
	color: white;
}
.before-after-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}
.ba-slider-wrap.owl-carousel {
	display: block;
	overflow: hidden;
}
.ba-slider-wrap.owl-carousel .owl-dots {
	text-align: center;
	padding-bottom: 5px;
}
.ba-slider-wrap.owl-carousel .owl-dot {
	width: 10px !important;
	height: 10px !important;
	background: rgba(14, 13, 13, 0.08) !important;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
	transition: background 0.3s;
}

.ba-slider-wrap.owl-carousel .owl-dot {
	background: var(--vc-off-white) !important;
}
.ba-slider-wrap.owl-carousel .owl-dot.active {
	background: var(--vc-blue) !important;
}
.ba-slider-wrap.owl-carousel .owl-nav {
	height: 0;
}
.before-grid,
.after-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}
.cs-ba-slide {
	width: 100%;
	position: relative;
}
.cs-ba-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	min-height: 380px;
}
.cs-ba-slide-placeholder {
	width: 100%;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: center;
	background: rgba(255, 255, 255, 0.02);
}
.cs-ba-slide-placeholder .ph-icon {
	font-size: 48px;
	opacity: 0.2;
}
.cs-ba-slide-placeholder .ph-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.25);
}
.cs-ba-slide-placeholder .ph-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.15);
}
.mockup-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.3rem 0.75rem;
	border-radius: 3px;
	z-index: 2;
	pointer-events: none;
}
.mockup-badge.before {
	background: rgba(127, 29, 29, 0.8);
	color: #fca5a5;
	border: 1px solid rgba(185, 28, 28, 0.5);
}
.mockup-badge.after {
	background: rgba(39, 137, 179, 0.8);
	color: white;
	border: 1px solid rgba(76, 170, 216, 0.5);
}

/* Slideshow nav arrows */
.cs-ba-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-100%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background 0.2s;
	line-height: 1;
}
.cs-ba-arrow:hover {
	background: rgba(39, 137, 179, 0.6);
}
.cs-ba-arrow.prev {
	left: 10px;
}
.cs-ba-arrow.next {
	right: 10px;
}

/* Right-side detail panel */
.ba-title {
	font-weight: 700;
	font-size: 1.15rem;
	color: white;
	margin-bottom: 1rem;
}
.ba-desc {
	color: #8aabbd;
	font-size: 0.82rem;
	line-height: 1.7;
	font-weight: 400;
	margin-bottom: 1.5rem;
}
.ba-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.ba-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}
.ba-icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.ba-icon.before {
	background: rgba(127, 29, 29, 0.4);
	border: 1px solid rgba(185, 28, 28, 0.5);
}
.ba-icon.after {
	background: rgba(39, 137, 179, 0.2);
	border: 1px solid rgba(39, 137, 179, 0.4);
}
.ba-icon svg {
	width: 0.6rem;
	height: 0.6rem;
}
.ba-icon.before svg {
	color: #f87171;
}
.ba-icon.after svg {
	color: #4caad8;
}
.ba-text {
	color: #8aabbd;
	font-size: 0.82rem;
	line-height: 1.6;
	font-weight: 400;
}

.before-after-wrap .after-grid,
.before-after-wrap .before-grid {
	display: none;
}
.tab-radio {
	display: none;
}
#view-after:checked ~ .tab-toggle .active-after {
	background: var(--vc-blue);
	color: white;
}
#view-before:checked ~ .tab-toggle .active-before {
	background: rgba(127, 29, 29, 0.7);
	color: #fca5a5;
}
#view-after:checked ~ .before-after-wrap .after-grid {
	display: grid;
}
#view-before:checked ~ .before-after-wrap .before-grid {
	display: grid;
}

@media (max-width: 768px) {
	.before-after-grid {
		grid-template-columns: 1fr;
	}
	.cs-ba-slideshow {
		min-height: 240px;
	}
	.cs-ba-slide img,
	.cs-ba-slide-placeholder {
		min-height: 240px;
	}
}

/* ── CHALLENGE ── */
.cs-challenge {
	background: var(--vc-off-white);
	padding: 50px 0;
}
.cs-challenge__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}
.cs-challenge__header {
	text-align: center;
	margin-bottom: 56px;
}
.cs-challenge__header h2 {
	font-size: clamp(26px, 4vw, 40px);
	color: var(--vc-dark);
	margin-bottom: 12px;
	font-weight: 700;
}
.cs-challenge__header p {
	font-size: 15px;
	color: rgba(14, 13, 13, 0.72);
	max-width: 560px;
	margin: 0 auto;
}
.cs-challenge__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: rgba(14, 13, 13, 0.08);
}
.cs-challenge__grid.owl-carousel {
	display: grid;
}
.cs-challenge__item {
	background: var(--vc-off-white);
	padding: 36px 28px;
	transition: background 0.2s;
}
.cs-challenge__item:hover {
	background: var(--vc-blush);
}
.cs-challenge__num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--vc-blue);
	display: block;
	margin-bottom: 12px;
}
.cs-challenge__item h3 {
	font-size: 16px;
	color: var(--vc-dark);
	margin-bottom: 10px;
	line-height: 1.3;
}
.cs-challenge__item p {
	font-size: 13px;
	color: rgba(14, 13, 13, 0.6);
	line-height: 1.7;
}

/* ── SOLUTION INTRO ── */
.cs-solution-intro {
	background: var(--vc-dark);
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-solution-intro__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.cs-solution-intro h2 {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--vc-white);
	margin-bottom: 20px;
}
.cs-solution-intro p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.75;
	margin-bottom: 16px;
}
.cs-solution-intro__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--vc-gold);
	letter-spacing: 0.06em;
}
.cs-solution-intro__badge::before {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: var(--vc-gold);
}
.cs-solution-intro__right {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.cs-solution-intro__right.owl-carousel {
	display: flex;
}
.cs-solution-intro__feature {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-left: 3px solid var(--vc-blue);
	padding: 18px 22px;
}
.cs-solution-intro__feature h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--vc-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}
.cs-solution-intro__feature p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0;
	line-height: 1.6;
}

/* ── SOLUTION MODULES ── */
.cs-solution-module {
	padding: 50px 0;
}
.cs-solution-module:nth-child(odd) {
	background: var(--vc-off-white);
}
.cs-solution-module:nth-child(even) {
	background: var(--vc-white);
}
.cs-solution-module__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}
.cs-solution-module__inner.reverse {
	direction: rtl;
}
.cs-solution-module__inner.reverse > * {
	direction: ltr;
}
.cs-solution-module__text h2 {
	font-size: clamp(22px, 3.5vw, 34px);
	color: var(--vc-dark);
	margin-bottom: 14px;
	line-height: 1.25;
}
.cs-solution-module__text p {
	font-size: 14px;
	color: rgba(14, 13, 13, 0.62);
	line-height: 1.75;
	margin-bottom: 20px;
}
.cs-feature-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cs-feature-list li {
	font-size: 14px;
	color: rgba(14, 13, 13, 0.72);
	display: flex;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.6;
}
.cs-feature-list li::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vc-blue);
	margin-top: 7px;
	flex-shrink: 0;
}
.cs-solution-module__visual {
	background: var(--vc-blush);
	border: 1px solid rgba(14, 13, 13, 0.08);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	padding: 32px;
	text-align: center;
}
.cs-solution-module__visual.dark {
	background: rgba(14, 13, 13, 0.06);
}
.cs-visual-placeholder {
	font-size: 13px;
	font-weight: 600;
	color: rgba(14, 13, 13, 0.35);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.cs-visual-placeholder-icon {
	font-size: 40px;
	opacity: 0.25;
	margin-bottom: 8px;
}

/* ── VIDEO PLACEHOLDER ── */
.cs-video-placeholder {
	background: var(--vc-dark);
	min-height: 340px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 40px;
}
.cs-video-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(39, 137, 179, 0.08) 0%, transparent 70%);
}
.cs-video-play {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--vc-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
.cs-video-play::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid white;
	margin-left: 5px;
}
.cs-video-placeholder p {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.cs-video-placeholder span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	position: relative;
	z-index: 1;
}

/* ── RENDERS SHOWCASE ── */
.cs-renders {
	background: #0e0d0d;
	padding: 50px 0;
}
.cs-renders__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 48px;
}
.cs-renders__eyebrow {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #cda61c;
	margin-bottom: 14px;
}
.cs-renders__title {
	text-align: center;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 900;
	color: #f1ecec;
	margin-bottom: 16px;
	line-height: 1.1;
}
.cs-renders__subtitle {
	text-align: center;
	font-size: 1rem;
	color: rgba(241, 236, 236, 0.6);
	max-width: 600px;
	margin: 0 auto 52px;
	line-height: 1.75;
}
/* Stats bar */
.cs-renders__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #161515;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	margin-bottom: 64px;
	overflow: hidden;
}
.cs-renders__stat {
	padding: 30px 20px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.cs-renders__stat:last-child {
	border-right: none;
}
.cs-renders__stat-num {
	display: block;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 900;
	color: #4caad8;
	line-height: 1;
	margin-bottom: 10px;
}
.cs-renders__stat-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(241, 236, 236, 0.7);
}
/* Three-panel collage */
.cs-renders__collage {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
	height: 680px;
}
.cs-renders__collage.owl-carousel {
	display: grid;
}
.cs-renders__panel {
	position: relative;
	overflow: hidden;
}
.cs-renders__panel-bg {
	position: absolute;
	inset: -12px;
	background-size: cover;
	background-position: center;
	filter: blur(4px) brightness(0.4) saturate(0.85);
	transition: filter 0.5s ease;
}
.cs-renders__panel:hover .cs-renders__panel-bg {
	filter: blur(2px) brightness(0.5) saturate(1);
}
.cs-renders__panel-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 13, 13, 0.08) 0%, rgba(14, 13, 13, 0.45) 100%);
	z-index: 1;
}
.cs-renders__panel:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(205, 166, 28, 0.55) 50%, transparent 100%);
	z-index: 5;
}
/* Floating cabinet renders */
.cs-renders__cabinet {
	position: absolute;
	z-index: 3;
	filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.72));
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}
.cs-renders__cabinet:hover {
	z-index: 10;
	filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.9));
}
.cs-renders__cabinet img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
/* Panel 1 positions */
.cs-renders__panel--1 .cs-renders__cabinet--a {
	width: 36%;
	top: 5%;
	left: 5%;
	transform: rotate(-2deg);
}
.cs-renders__panel--1 .cs-renders__cabinet--a:hover {
	transform: rotate(-2deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--1 .cs-renders__cabinet--b {
	width: 38%;
	top: 4%;
	right: 4%;
	transform: rotate(2.5deg);
}
.cs-renders__panel--1 .cs-renders__cabinet--b:hover {
	transform: rotate(2.5deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--1 .cs-renders__cabinet--c {
	width: 72%;
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%) rotate(-1.5deg);
}
.cs-renders__panel--1 .cs-renders__cabinet--c:hover {
	transform: translateX(-50%) rotate(-1.5deg) scale(1.05) translateY(-4px);
}
/* Panel 2 positions */
.cs-renders__panel--2 .cs-renders__cabinet--a {
	width: 48%;
	top: 4%;
	left: 3%;
	transform: rotate(-2.5deg);
}
.cs-renders__panel--2 .cs-renders__cabinet--a:hover {
	transform: rotate(-2.5deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--2 .cs-renders__cabinet--b {
	width: 42%;
	top: 3%;
	right: 2%;
	transform: rotate(2deg);
}
.cs-renders__panel--2 .cs-renders__cabinet--b:hover {
	transform: rotate(2deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--2 .cs-renders__cabinet--c {
	width: 52%;
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%) rotate(1.5deg);
}
.cs-renders__panel--2 .cs-renders__cabinet--c:hover {
	transform: translateX(-50%) rotate(1.5deg) scale(1.06) translateY(-4px);
}
/* Panel 3 positions */
.cs-renders__panel--3 .cs-renders__cabinet--a {
	width: 30%;
	top: 4%;
	left: 4%;
	transform: rotate(-2deg);
}
.cs-renders__panel--3 .cs-renders__cabinet--a:hover {
	transform: rotate(-2deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--3 .cs-renders__cabinet--b {
	width: 32%;
	top: 3%;
	right: 4%;
	transform: rotate(2.5deg);
}
.cs-renders__panel--3 .cs-renders__cabinet--b:hover {
	transform: rotate(2.5deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--3 .cs-renders__cabinet--c {
	width: 50%;
	bottom: 4%;
	left: 2%;
	transform: rotate(-2deg);
}
.cs-renders__panel--3 .cs-renders__cabinet--c:hover {
	transform: rotate(-2deg) scale(1.07) translateY(-6px);
}
.cs-renders__panel--3 .cs-renders__cabinet--d {
	width: 38%;
	bottom: 5%;
	right: 2%;
	transform: rotate(3deg);
}
.cs-renders__panel--3 .cs-renders__cabinet--d:hover {
	transform: rotate(3deg) scale(1.07) translateY(-6px);
}
/* Footer note */
.cs-renders__footer {
	background: #0e0d0d;
	padding: 28px 0;
	padding-top: 48px;
	text-align: center;
}
.cs-renders__footer-note {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(241, 236, 236, 0.65);
	margin-bottom: 0;
}
.cs-renders__footer-note span {
	color: #cda61c;
}

/* ── RESULTS ── */
.cs-results {
	background: var(--vc-dark);
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-results__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}
.cs-results__header {
	text-align: center;
	margin-bottom: 56px;
}
.cs-results__header h2 {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--vc-white);
	margin-bottom: 12px;
}
.cs-results__header p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	max-width: 520px;
	margin: 0 auto;
}
.cs-results__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.05);
	margin-bottom: 2px;
}
.cs-result-card {
	background: rgba(255, 255, 255, 0.03);
	padding: 40px 28px;
	text-align: center;
	position: relative;
	transition: background 0.2s;
}
.cs-result-card:hover {
	background: rgba(255, 255, 255, 0.06);
}
.cs-result-card.gold {
	background: rgba(205, 166, 28, 0.08);
	border-top: 3px solid var(--vc-gold);
}
.cs-result-card__num {
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 900;
	color: var(--vc-blue-light);
	display: block;
	line-height: 1;
	margin-bottom: 10px;
}
.cs-result-card.gold .cs-result-card__num {
	color: var(--vc-gold);
}
.cs-result-card__label {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}
.cs-result-card__desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.65;
}
.cs-result-card__placeholder {
	display: block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vc-gold);
	background: rgba(205, 166, 28, 0.1);
	border: 1px dashed rgba(205, 166, 28, 0.3);
	padding: 4px 10px;
	border-radius: 3px;
	margin-top: 12px;
}
.cs-result-disclaimer__text {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	margin: 18px 0 0;
	line-height: 1.7;
	letter-spacing: 0.02em;
	margin-bottom: 1rem;
}
.cs-result-disclaimer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 2px;
}
.cs-result-disclaimer__card {
	background: rgba(255, 255, 255, 0.03);
	padding: 28px;
	text-align: center;
}
.cs-result-disclaimer__label {
	font-size: 12px;
	font-weight: 700;
	color: var(--vc-blue-light);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}
.cs-result-disclaimer__desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
}

/* ── TESTIMONIAL ── */
.cs-testimonial {
	background: var(--vc-blue);
	padding: 50px 0;
}
.cs-testimonial__inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}
.cs-testimonial__quote {
	font-size: clamp(16px, 2.2vw, 20px);
	font-weight: 500;
	color: var(--vc-white);
	line-height: 1.75;
	margin-bottom: 32px;
	font-style: italic;
	position: relative;
}
.cs-testimonial__quote::before {
	content: "\201C";
	font-size: 80px;
	color: rgba(255, 255, 255, 0.15);
	position: absolute;
	top: -20px;
	left: -20px;
	font-family: Georgia, serif;
	line-height: 1;
}
.cs-testimonial__author {
	font-size: 15px;
	font-weight: 700;
	color: var(--vc-white);
	letter-spacing: 0.04em;
}
.cs-testimonial__company {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 4px;
}

/* ── CTA FOOTER ── */
.cs-cta-footer {
	background: var(--vc-dark);
	padding: 50px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-cta-footer__inner {
	max-width: 680px;
	margin: 0 auto;
}
.cs-cta-footer__inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--vc-white);
	margin-bottom: 16px;
}
.cs-cta-footer__inner p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 40px;
	line-height: 1.75;
}
.cs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 14px 32px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}
.cs-btn--gold {
	background: var(--vc-gold);
	color: var(--vc-dark);
}
.cs-btn--gold:hover {
	background: #b8920f;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(205, 166, 28, 0.3);
}
.cs-btn--outline {
	background: transparent;
	color: var(--vc-white);
	border: 1px solid rgba(255, 255, 255, 0.25);
	margin-left: 12px;
}
.cs-btn--outline:hover {
	border-color: var(--vc-white);
	background: rgba(255, 255, 255, 0.06);
}
.cs-cta-footer__links {
	margin-top: 24px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
}
.cs-cta-footer__links a {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.2s;
}
.cs-cta-footer__links a:hover {
	color: var(--vc-blue-light);
}

/* ── FOOTER BAR ── */
.cs-footer {
	background: #080808;
	padding: 28px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cs-footer__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.cs-footer__brand {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.04em;
}
.cs-footer__brand span {
	color: var(--vc-blue-light);
}
.cs-footer__copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.2);
}

/* ── DIVIDER ── */
.cs-divider {
	height: 1px;
	background: rgba(14, 13, 13, 0.08);
	max-width: var(--max-width);
	margin: 0 auto;
}
.cs-divider.light {
	background: rgba(255, 255, 255, 0.06);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-24px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}
.fade-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
.delay-4 {
	transition-delay: 0.4s;
}
.result-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}
.result-icon.c-blue {
	background: rgba(39, 137, 179, 0.12);
	border: 1px solid rgba(39, 137, 179, 0.25);
	color: #4caad8;
}
.result-icon.gold {
	background: rgba(205, 166, 28, 0.12);
	border: 1px solid rgba(205, 166, 28, 0.25);
	color: #cda61c;
}
.result-icon svg {
	width: 1.1rem;
	height: 1.1rem;
}
/* ---- SECTION WRAPPER ---- */
.vc-solutions {
	background: #0e0d0d;
	padding: 80px 40px 90px;
	text-align: center;
}

.vc-solutions__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #cda61c;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.vc-solutions__title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.15;
}

.vc-solutions__subtitle {
	font-size: 15px;
	color: rgba(241, 236, 236, 0.55);
	max-width: 560px;
	margin: 0 auto 56px;
	line-height: 1.7;
}

/* ---- GRID ---- */
.vc-solutions__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	max-width: 1160px;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	overflow: hidden;
}

/* ---- CARD ---- */
.vc-sol-card {
	background: #141414;
	padding: 36px 28px 32px;
	text-align: left;
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.25s ease;
}
.vc-sol-card:hover {
	background: #1a1f26;
}
.vc-sol-card:nth-child(3n) {
	border-right: none;
}
.vc-sol-card:nth-child(4),
.vc-sol-card:nth-child(5),
.vc-sol-card:nth-child(6) {
	border-bottom: none;
}

/* Accent top bar */
.vc-sol-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background 0.25s ease;
}
.vc-sol-card:hover::before {
	background: linear-gradient(90deg, #2789b3, #cda61c);
}

/* ---- ICON CIRCLE ---- */
.vc-sol-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(39, 137, 179, 0.12);
	border: 1px solid rgba(39, 137, 179, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}
.vc-sol-card__icon svg {
	width: 32px;
	height: 32px;
}

/* Gold icon variant */
.vc-sol-card.gold-icon .vc-sol-card__icon {
	background: rgba(205, 166, 28, 0.12);
	border-color: rgba(205, 166, 28, 0.3);
}

/* ---- BADGE ---- */
.vc-sol-card__badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 3px;
	margin-bottom: 14px;
	background: rgba(205, 166, 28, 0.15);
	color: #cda61c;
	border: 1px solid rgba(205, 166, 28, 0.3);
}
.vc-sol-card__badge.blue {
	background: rgba(39, 137, 179, 0.15);
	color: #4caad8;
	border-color: rgba(39, 137, 179, 0.3);
}

/* ---- TEXT ---- */
.vc-sol-card__title {
	font-size: 15px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 10px;
	line-height: 1.3;
}

.vc-sol-card__desc {
	font-size: 13px;
	color: rgba(241, 236, 236, 0.5);
	line-height: 1.75;
}

/* ---- FEATURE TAG ROW ---- */
.vc-sol-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 16px;
}
.vc-sol-card__tag {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(76, 170, 216, 0.8);
	background: rgba(39, 137, 179, 0.1);
	border: 1px solid rgba(39, 137, 179, 0.2);
	padding: 3px 8px;
	border-radius: 3px;
}

/* ---- FEATURED CARD (spans 2 cols) ---- */
.vc-sol-card.featured {
	grid-column: span 2;
	display: flex;
	gap: 32px;
	align-items: flex-start;
}
.vc-sol-card.featured .vc-sol-card__icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	flex-shrink: 0;
}
.vc-sol-card.featured .vc-sol-card__icon svg {
	width: 40px;
	height: 40px;
}
.vc-sol-card.featured .vc-sol-card__title {
	font-size: 17px;
}
.vc-sol-card.featured .vc-sol-card__desc {
	font-size: 14px;
	color: rgba(241, 236, 236, 0.6);
}

/* ---- LABEL NOTE ---- */
.mockup-note {
	background: rgba(205, 166, 28, 0.08);
	border: 1px dashed rgba(205, 166, 28, 0.4);
	border-radius: 6px;
	padding: 12px 20px;
	font-size: 12px;
	color: #cda61c;
	max-width: 1160px;
	margin: 0 auto 30px;
	text-align: left;
}
