:root {
	--tc-bg: #f7fbff;
	--tc-surface: rgba(255, 255, 255, 0.78);
	--tc-surface-strong: rgba(255, 255, 255, 0.94);
	--tc-text: #071421;
	--tc-muted: #64748b;
	--tc-primary: #28bbb3;
	--tc-primary-dark: #1d4ed8;
	--tc-cyan: #06b6d4;
	--tc-violet: #8b5cf6;
	--tc-emerald: #10b981;
	--tc-border: rgba(15, 23, 42, 0.1);
	--tc-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
	--tc-radius-xl: 32px;
	--tc-radius-lg: 22px;
	--tc-container: 1180px;
	--tc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
	font-family: 'Montserrat', sans-serif;
}

/* ===== SPRDH Simple Header ===== */

.sprdh-header {
	--header-teal: #28bbb3;
	--header-lime: #bbbd42;
	--header-text: #071421;
	--header-muted: #64748b;
	--header-border: rgba(15, 23, 42, 0.1);

	position: fixed;
	top: 18px;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 0 20px;
}

.sprdh-header,
.sprdh-header * {
	box-sizing: border-box;
}

.sprdh-header a {
	color: inherit;
	text-decoration: none;
}

.sprdh-header__container {
	width: min(100%, 1300px);
	margin: 0 auto;
	padding: 12px 16px 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.sprdh-header__brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.sprdh-header__brand img {
	width: auto;
	height: 46px;
	max-width: 185px;
	object-fit: contain;
	display: block;
}

.sprdh-header__nav {
	min-width: 0;
}

.sprdh-header__menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sprdh-header__menu li {
	margin: 0;
	padding: 0;
}

.sprdh-header__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	color: var(--header-text);
	font-size: 0.94rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	transition:
		color 220ms ease,
		background 220ms ease,
		box-shadow 220ms ease,
		transform 220ms ease;
}

.sprdh-header__menu a:hover {
	color: #148f89;
	background: rgba(40, 187, 179, 0.08);
	transform: translateY(-1px);
}

.sprdh-header__menu a:hover::before,
.sprdh-header__menu .current-menu-item>a::before,
.sprdh-header__menu .current_page_item>a::before {
	transform: scaleX(1);
}

.sprdh-header__menu .current-menu-item>a,
.sprdh-header__menu .current_page_item>a {
	color: #148f89;
	background:
		linear-gradient(135deg, rgba(40, 187, 179, 0.12), rgba(187, 189, 66, 0.11));
	box-shadow: inset 0 0 0 1px rgba(40, 187, 179, 0.16);
}

.sprdh-header__menu li:last-child a {
	color: #ffffff;
	background: linear-gradient(135deg, var(--header-teal), var(--header-lime));
	box-shadow: 0 14px 32px rgba(40, 187, 179, 0.22);
}

.sprdh-header__menu li:last-child a::before {
	display: none;
}

.sprdh-header__menu li:last-child a:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(40, 187, 179, 0.28);
}

/* Optional scrolled style - works when JS below is added */
.sprdh-header.is-scrolled .sprdh-header__container {
	min-height: 68px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 54px rgba(15, 23, 42, 0.12);
	border-radius: 20px;
}

.sprdh-header.is-scrolled .sprdh-header__brand img {
	height: 40px;
}

/* Mobile Menu Toggle */
.sprdh-header__toggle {
	display: none;
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 10000;
}

.sprdh-header__toggle-icon,
.sprdh-header__toggle-icon::before,
.sprdh-header__toggle-icon::after {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--header-text);
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.sprdh-header__toggle-icon {
	position: relative;
}

.sprdh-header__toggle-icon::before,
.sprdh-header__toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.sprdh-header__toggle-icon::before {
	top: -7px;
}

.sprdh-header__toggle-icon::after {
	bottom: -7px;
}

.sprdh-header.is-menu-open .sprdh-header__toggle-icon {
	background-color: transparent;
}

.sprdh-header.is-menu-open .sprdh-header__toggle-icon::before {
	transform: translateY(7px) rotate(45deg);
}

.sprdh-header.is-menu-open .sprdh-header__toggle-icon::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* Overlay for mobile menu */
.sprdh-header::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.4);
	backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s var(--tc-ease);
}

.sprdh-header.is-menu-open::before {
	opacity: 1;
	pointer-events: auto;
}

/* Mobile responsive adjustments */
@media (max-width: 1080px) {
	.sprdh-header {
		top: 10px;
		padding: 0 12px;
	}

	.sprdh-header__container {
		padding: 12px 16px;
		border-radius: 24px;
	}

	.sprdh-header__brand img {
		height: 38px;
		max-width: 155px;
	}

	.sprdh-header__toggle {
		display: block;
	}

	.sprdh-header__nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(100%, 320px);
		background: #ffffff;
		padding: 80px 30px 40px;
		transform: translateX(100%);
		transition: transform 0.4s var(--tc-ease);
		box-shadow: -10px 0 40px rgba(15, 23, 42, 0.1);
		z-index: 9999;
		overflow-y: auto;
	}

	.sprdh-header.is-menu-open .sprdh-header__nav {
		transform: translateX(0);
	}

	.sprdh-header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
	}

	.sprdh-header__menu a {
		font-size: 1.1rem;
		padding: 12px 15px;
		width: 100%;
	}

	.sprdh-header__menu li {
		width: 100%;
	}

	.sprdh-header__menu li:last-child a {
		justify-content: center;
		margin-top: 16px;
		padding: 14px 0;
	}
}

.tc-hero,
.tc-hero * {
	box-sizing: border-box;
}

.tc-hero a {
	color: inherit;
	text-decoration: none;
}

.tc-hero button,
.tc-hero a {
	font: inherit;
}

.tc-hero {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	display: grid;
	align-items: center;
	padding: 80px 20px;
	overflow: hidden;
	color: var(--tc-text);
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 32rem),
		radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.16), transparent 28rem),
		linear-gradient(135deg, #ffffff 0%, var(--tc-bg) 48%, #eef7ff 100%);
}

.tc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	opacity: 0.5;
	background-image:
		linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: radial-gradient(circle at 50% 45%, black 0 42%, transparent 74%);
}

.tc-hero::after {
	content: "";
	position: absolute;
	width: 72vw;
	height: 72vw;
	right: -38vw;
	top: -34vw;
	z-index: -2;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.05) 34%, transparent 62%);
	pointer-events: none;
}

.tc-hero__container {
	width: min(100%, var(--tc-container));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 56px;
	align-items: center;
}

.tc-hero__content {
	position: relative;
	z-index: 2;
}

.tc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-bottom: 22px;
	padding: 9px 14px;
	border: 1px solid var(--tc-border);
	border-radius: 999px;
	background: var(--tc-surface);
	color: #000;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
	backdrop-filter: blur(18px);
	animation: tcRevealUp 700ms var(--tc-ease) both;
}

.tc-eyebrow__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--tc-cyan), var(--tc-primary));
	box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.12);
}

.tc-hero__title {
	margin: 0;
	max-width: 780px;
	font-size: clamp(2.8rem, 7vw, 4rem);
	letter-spacing: -0.08em;
	text-wrap: balance;
	animation: tcRevealUp 780ms var(--tc-ease) 80ms both;
}

.tc-hero__title span {
	display: inline-block;
	background: linear-gradient(100deg, #000 8%, #28bbb3 48%, #bbbd42 86%);
	background-clip: border-box;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.tc-slider-copy {
	position: relative;
	min-height: 132px;
	margin-top: 28px;
	overflow: hidden;
	animation: tcRevealUp 820ms var(--tc-ease) 160ms both;
}

.tc-slide {
	position: absolute;
	inset: 0 auto auto 0;
	width: min(100%, 640px);
	opacity: 0;
	transform: translateY(18px) scale(0.985);
	pointer-events: none;
	transition: opacity 650ms var(--tc-ease), transform 650ms var(--tc-ease);
}

.tc-slide.is-active {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.tc-slide__label {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--tc-primary);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.tc-slide__text {
	margin: 0;
	color: var(--tc-muted);
	font-size: clamp(1.05rem, 1.7vw, 1rem);
	line-height: 1.75;
	text-wrap: pretty;
}

.tc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
	animation: tcRevealUp 860ms var(--tc-ease) 240ms both;
}

.tc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.tc-btn:hover {
	transform: translateY(-2px);
}

.tc-btn--primary {
	color: #ffffff !important;
	background: linear-gradient(135deg, var(--tc-primary), var(--tc-cyan));
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
}

.tc-btn--primary:hover {
	box-shadow: 0 22px 48px rgba(37, 99, 235, 0.3);
}

.tc-btn--ghost {
	color: var(--tc-text);
	background: var(--tc-surface-strong);
	border-color: var(--tc-border);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.tc-slider-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 36px;
	animation: tcRevealUp 900ms var(--tc-ease) 320ms both;
}

.tc-slider-dot {
	position: relative;
	width: 42px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.16);
	cursor: pointer;
	overflow: hidden;
	transition: width 260ms ease, background 260ms ease;
}

.tc-slider-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--tc-primary), var(--tc-cyan));
}

.tc-slider-dot.is-active {
	width: 78px;
	background: rgba(37, 99, 235, 0.1);
}

.tc-slider-dot.is-active::after {
	animation: tcProgress 5200ms linear both;
}

.tc-hero__visual {
	position: relative;
	min-height: 640px;
	perspective: 1200px;
	animation: tcRevealScale 900ms var(--tc-ease) 140ms both;
}

.tc-creative-stage {
	position: absolute;
	inset: 32px 0 auto auto;
	width: min(100%, 560px);
	height: 560px;
	border-radius: 44px;
	transform-style: preserve-3d;
	will-change: transform;
}

.tc-creative-stage::before {
	content: "";
	position: absolute;
	inset: 34px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 45% 42%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.48) 34%, transparent 64%),
		conic-gradient(from 210deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.24), rgba(139, 92, 246, 0.16), rgba(37, 99, 235, 0.1));
	filter: drop-shadow(0 28px 70px rgba(37, 99, 235, 0.16));
}

.tc-orbit {
	position: absolute;
	inset: 42px;
	border-radius: 999px;
	border: 1px solid rgba(37, 99, 235, 0.16);
	transform-style: preserve-3d;
	animation: tcRotate 28s linear infinite;
}

.tc-orbit--middle {
	inset: 96px;
	border-style: dashed;
	border-color: rgba(6, 182, 212, 0.24);
	animation-duration: 22s;
	animation-direction: reverse;
}

.tc-orbit--inner {
	inset: 152px;
	border-color: rgba(139, 92, 246, 0.18);
	animation-duration: 18s;
}

.tc-node {
	position: absolute;
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
	backdrop-filter: blur(18px);
	animation: tcCounterRotate 28s linear infinite;
}

.tc-node svg {
	width: 30px;
	height: 30px;
	color: var(--tc-primary);
}

.tc-node--ai {
	top: -36px;
	left: calc(50% - 37px);
}

.tc-node--web {
	right: -36px;
	top: calc(50% - 37px);
}

.tc-node--mobile {
	bottom: -36px;
	left: calc(50% - 37px);
}

.tc-node--event {
	left: -36px;
	top: calc(50% - 37px);
}

.tc-orbit--middle .tc-node {
	width: 58px;
	height: 58px;
	border-radius: 20px;
	animation-duration: 22s;
	animation-direction: normal;
}

.tc-orbit--middle .tc-node svg {
	width: 24px;
	height: 24px;
	color: var(--tc-cyan);
}

.tc-node--brand {
	right: 10px;
	top: 20px;
}

.tc-node--open-source {
	left: 8px;
	bottom: 22px;
}

.tc-core-card {
	position: absolute;
	inset: 172px 112px auto 112px;
	min-height: 226px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 32px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.68)),
		radial-gradient(circle at top right, rgba(6, 182, 212, 0.24), transparent 48%);
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
	backdrop-filter: blur(24px);
	transform: translateZ(52px);
	overflow: hidden;
}

.tc-core-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.82) 46%, transparent 62%);
	transform: translateX(-120%);
	animation: tcShimmer 5.8s ease-in-out infinite;
}

.tc-core-card__top {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.tc-core-card__status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tc-core-card__status::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--tc-emerald);
	box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.tc-core-card__tag {
	color: #1e40af;
	font-size: 0.78rem;
	font-weight: 700;
}

.tc-core-card h3 {
	position: relative;
	margin: 0;
	font-size: clamp(1.45rem, 2.4vw, 2.05rem);
	line-height: 1.04;
	letter-spacing: -0.055em;
}

.tc-core-card p {
	position: relative;
	margin: 12px 0 0;
	color: var(--tc-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.tc-data-stream {
	position: relative;
	display: flex;
	align-items: flex-end;
	gap: 7px;
	height: 46px;
	margin-top: 18px;
}

.tc-data-stream span {
	width: 100%;
	border-radius: 999px 999px 5px 5px;
	background: linear-gradient(180deg, var(--tc-cyan), var(--tc-primary));
	opacity: 0.78;
	animation: tcBarPulse 1.9s ease-in-out infinite;
}

.tc-data-stream span:nth-child(1) {
	height: 42%;
	animation-delay: 0ms;
}

.tc-data-stream span:nth-child(2) {
	height: 72%;
	animation-delay: 120ms;
}

.tc-data-stream span:nth-child(3) {
	height: 52%;
	animation-delay: 240ms;
}

.tc-data-stream span:nth-child(4) {
	height: 88%;
	animation-delay: 360ms;
}

.tc-data-stream span:nth-child(5) {
	height: 62%;
	animation-delay: 480ms;
}

.tc-data-stream span:nth-child(6) {
	height: 78%;
	animation-delay: 600ms;
}

.tc-data-stream span:nth-child(7) {
	height: 48%;
	animation-delay: 720ms;
}

.tc-floating-panel {
	position: absolute;
	z-index: 4;
	min-width: 188px;
	padding: 15px 16px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 20px 54px rgba(15, 23, 42, 0.1);
	backdrop-filter: blur(20px);
	will-change: transform;
}

.tc-floating-panel strong {
	display: block;
	margin-bottom: 5px;
	font-size: 1.15rem;
	letter-spacing: -0.04em;
}

.tc-floating-panel span {
	display: block;
	color: var(--tc-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.tc-floating-panel--top {
	top: 64px;
	left: 0;
	animation: tcFloat 7s ease-in-out infinite;
}

.tc-floating-panel--bottom {
	right: 0;
	bottom: 58px;
	animation: tcFloat 8s ease-in-out infinite reverse;
}

.tc-ambient-orb {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	will-change: transform;
}

.tc-ambient-orb--blue {
	width: 220px;
	height: 220px;
	top: 16px;
	right: 38px;
	background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(37, 99, 235, 0.24) 38%, rgba(6, 182, 212, 0.1));
	filter: blur(1px);
	animation: tcFloat 7.2s ease-in-out infinite;
}

.tc-ambient-orb--violet {
	width: 140px;
	height: 140px;
	left: 42px;
	bottom: 104px;
	background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(139, 92, 246, 0.22) 42%, rgba(37, 99, 235, 0.1));
	animation: tcFloat 8.5s ease-in-out infinite reverse;
}

@keyframes tcRevealUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

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

@keyframes tcRevealScale {
	from {
		opacity: 0;
		transform: translateY(28px) scale(0.96);
	}

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

@keyframes tcFloat {

	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -18px, 0);
	}
}

@keyframes tcRotate {
	to {
		transform: rotate(360deg);
	}
}

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

@keyframes tcProgress {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

@keyframes tcShimmer {

	0%,
	48% {
		transform: translateX(-120%);
	}

	72%,
	100% {
		transform: translateX(120%);
	}
}

@keyframes tcBarPulse {

	0%,
	100% {
		transform: scaleY(0.72);
	}

	50% {
		transform: scaleY(1);
	}
}

@media (max-width: 980px) {
	.tc-hero {
		padding: 56px 18px 72px;
	}

	.tc-hero__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tc-hero__visual {
		min-height: 590px;
	}

	.tc-creative-stage {
		inset: 0;
		margin: auto;
	}
}

@media (max-width: 640px) {
	.tc-hero {
		align-items: start;
		min-height: auto;
		padding-block: 80px 60px;
	}

	.tc-hero__title {
		letter-spacing: -0.065em;
	}

	.tc-slider-copy {
		min-height: 184px;
	}

	.tc-btn {
		width: 100%;
	}

	.tc-hero__visual {
		min-height: 520px;
		transform: scale(0.88);
		transform-origin: top center;
		margin-bottom: -52px;
	}

	.tc-creative-stage {
		width: 100%;
		max-width: none;
		left: 0;
		right: auto;
	}

	.tc-core-card {
		inset-inline: 60px;
		min-width: 200px;
	}

	.tc-floating-panel {
		min-width: 162px;
	}

	.tc-orbit {
		border: none;
	}
}

@media all and (max-width: 480px) {
	.tc-core-card h3 {
		font-size: 1rem;
	}

	.tc-core-card p {
		font-size: 0.7rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.tc-hero *,
	.tc-hero *::before,
	.tc-hero *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

.sprdh-home {
	--sprdh-bg: #f7fbff;
	--sprdh-surface: rgba(255, 255, 255, 0.78);
	--sprdh-surface-strong: rgba(255, 255, 255, 0.94);
	--sprdh-text: #071421;
	--sprdh-muted: #64748b;
	--sprdh-primary: #2563eb;
	--sprdh-cyan: #06b6d4;
	--sprdh-teal: #28bbb3;
	--sprdh-lime: #bbbd42;
	--sprdh-dark: #0f172a;
	--sprdh-border: rgba(15, 23, 42, 0.1);
	--sprdh-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
	--sprdh-radius-xl: 32px;
	--sprdh-radius-lg: 22px;
	--sprdh-container: 1300px;
	--sprdh-ease: cubic-bezier(0.22, 1, 0.36, 1);
	color: var(--sprdh-text);
	background: #fff;
}

.sprdh-home,
.sprdh-home * {
	box-sizing: border-box;
}

.sprdh-home a {
	color: inherit;
	text-decoration: none;
}

.sprdh-home img,
.sprdh-home svg {
	display: block;
	max-width: 100%;
}

.sprdh-section {
	position: relative;
	isolation: isolate;
	padding: clamp(72px, 9vw, 128px) 20px;
	overflow: hidden;
}

.sprdh-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: radial-gradient(circle at 50% 40%, black 0 42%, transparent 78%);
}

.sprdh-container {
	width: min(100%, var(--sprdh-container));
	margin: 0 auto;
}

.sprdh-section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(30px, 5vw, 58px);
}

.sprdh-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding: 9px 14px;
	border: 1px solid var(--sprdh-border);
	border-radius: 999px;
	background: var(--sprdh-surface);
	color: #1e40af;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
	backdrop-filter: blur(18px);
}

/* ===== Why SPRDH - Editorial / Industry Standard ===== */

.sprdh-why-editorial {
	background:
		radial-gradient(circle at 12% 18%, rgba(40, 187, 179, 0.10), transparent 28rem),
		radial-gradient(circle at 88% 82%, rgba(187, 189, 66, 0.10), transparent 30rem),
		linear-gradient(180deg, #ffffff 0%, var(--sprdh-bg) 100%);
}

.sprdh-why-editorial__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 6vw, 96px);
	align-items: start;
}

.sprdh-why-editorial__intro {
	position: sticky;
	top: 120px;
}

.sprdh-why-editorial__lead {
	margin: 24px 0 16px;
	color: var(--sprdh-text);
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.035em;
}

.sprdh-why-editorial__text {
	margin: 0;
	max-width: 560px;
	color: var(--sprdh-muted);
	font-size: 1rem;
	line-height: 1.85;
}

.sprdh-why-editorial__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sprdh-why-editorial__meta div {
	min-width: 160px;
}

.sprdh-why-editorial__meta strong {
	display: block;
	color: var(--sprdh-text);
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.sprdh-why-editorial__meta span {
	display: block;
	margin-top: 6px;
	color: var(--sprdh-muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.sprdh-why-editorial__content {
	position: relative;
}

.sprdh-why-editorial__list {
	position: relative;
	display: grid;
}

.sprdh-why-editorial__item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 22px;
	padding: 26px 0;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	transition: transform 220ms ease;
}

.sprdh-why-editorial__item:first-child {
	padding-top: 0;
	border-top: 0;
}

.sprdh-why-editorial__item:last-child {
	padding-bottom: 0;
}

.sprdh-why-editorial__item:hover {
	transform: translateX(4px);
}

.sprdh-why-editorial__num {
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	justify-content: flex-start;
	color: rgba(7, 20, 33, 0.22);
	font-size: clamp(1.15rem, 1.8vw, 1.6rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
}

.sprdh-why-editorial__num::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--sprdh-teal), var(--sprdh-lime));
}

.sprdh-why-editorial__body h3 {
	margin: 0 0 10px;
	color: var(--sprdh-text);
	font-size: clamp(1.18rem, 1.8vw, 1.5rem);
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.sprdh-why-editorial__body p {
	margin: 0;
	max-width: 680px;
	color: var(--sprdh-muted);
	font-size: 0.98rem;
	line-height: 1.75;
}

/* subtle hover emphasis */
.sprdh-why-editorial__item:hover .sprdh-why-editorial__num {
	color: #148f89;
}

.sprdh-why-editorial__item:hover .sprdh-why-editorial__body h3 {
	color: #148f89;
}

/* Responsive */
@media (max-width: 980px) {
	.sprdh-why-editorial__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sprdh-why-editorial__intro {
		position: relative;
		top: auto;
	}
}

@media (max-width: 640px) {
	.sprdh-why-editorial__item {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 22px 0;
	}

	.sprdh-why-editorial__num::after {
		bottom: -10px;
	}

	.sprdh-why-editorial__meta {
		gap: 18px;
	}
}

/* ===== Why Us Vertical Loop Carousel ===== */

.sprdh-why-editorial__content {
	--why-visible-items: 3;
	--why-item-height: 150px;
	--why-item-gap: 18px;

	position: relative;
	height: calc((var(--why-item-height) * var(--why-visible-items)) + (var(--why-item-gap) * (var(--why-visible-items) - 1)));
	overflow: hidden;
	padding-right: 6px;
	mask-image: linear-gradient(180deg,
			transparent 0%,
			#000 10%,
			#000 90%,
			transparent 100%);
}

.sprdh-why-editorial__list {
	display: flex;
	flex-direction: column;
	gap: var(--why-item-gap);
	will-change: transform;
	transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sprdh-why-editorial__item {
	min-height: var(--why-item-height);
	height: var(--why-item-height);
	padding: 20px 0;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	flex: 0 0 var(--why-item-height);
}

.sprdh-why-editorial__item:first-child {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sprdh-why-editorial__item:hover {
	transform: none;
}

.sprdh-why-editorial__body h3 {
	margin-bottom: 8px;
}

.sprdh-why-editorial__body p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.sprdh-why-editorial__num {
	color: rgba(7, 20, 33, 0.22);
	transition: color 260ms ease;
}

.sprdh-why-editorial__item.is-active .sprdh-why-editorial__num,
.sprdh-why-editorial__item:hover .sprdh-why-editorial__num {
	color: #148f89;
}

.sprdh-why-editorial__item.is-active .sprdh-why-editorial__body h3,
.sprdh-why-editorial__item:hover .sprdh-why-editorial__body h3 {
	color: #148f89;
}

.sprdh-why-editorial__content::before,
.sprdh-why-editorial__content::after {
	content: "";
	position: absolute;
	left: 0;
	right: 6px;
	z-index: 3;
	height: 70px;
	pointer-events: none;
}

.sprdh-why-editorial__content::before {
	top: 0;
	background: linear-gradient(180deg, var(--sprdh-bg), transparent);
}

.sprdh-why-editorial__content::after {
	bottom: 0;
	background: linear-gradient(0deg, var(--sprdh-bg), transparent);
}

@media (max-width: 980px) {
	.sprdh-why-editorial__content {
		--why-item-height: 145px;
	}
}

@media (max-width: 640px) {
	.sprdh-why-editorial__content {
		--why-visible-items: 3;
		--why-item-height: 170px;
		--why-item-gap: 14px;
	}

	.sprdh-why-editorial__item {
		grid-template-columns: 52px 1fr;
		gap: 16px;
		padding: 18px 0;
	}

	.sprdh-why-editorial__num::after {
		bottom: -12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sprdh-why-editorial__content {
		height: auto;
		overflow: visible;
		mask-image: none;
	}

	.sprdh-why-editorial__list {
		transition: none;
		transform: none !important;
	}

	.sprdh-why-editorial__item {
		height: auto;
		min-height: auto;
		flex-basis: auto;
	}
}

/* ===== Case Studies Section ===== */

.sprdh-case-studies {
	background:
		radial-gradient(circle at 80% 14%, rgba(40, 187, 179, 0.12), transparent 30rem),
		linear-gradient(180deg, #ffffff 0%, var(--sprdh-bg) 100%);
}

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

.sprdh-case-card {
	overflow: hidden;
	border-radius: var(--sprdh-radius-xl);
	transition: transform 260ms ease, box-shadow 260ms ease;
	border: 1px solid rgba(0, 0, 0, 0.05)
}

.sprdh-case-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 88px rgba(15, 23, 42, 0.16);
	border: 1px solid rgba(0, 0, 0, 0.0)
}

.sprdh-case-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1.22;
	overflow: hidden;
	background: #e8f1ff;
}

.sprdh-case-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms var(--sprdh-ease);
}

.sprdh-case-card:hover .sprdh-case-card__image img {
	transform: scale(1.06);
}

.sprdh-case-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 20, 33, 0) 30%, rgba(7, 20, 33, 0.82) 100%),
		linear-gradient(135deg, rgba(40, 187, 179, 0.15), rgba(187, 189, 66, 0.12));
}

.sprdh-case-card__image-title {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	color: #ffffff;
}

.sprdh-case-card__image-title strong {
	display: block;
	font-size: clamp(1.05rem, 1.5vw, 1.34rem);
	line-height: 1.22;
	letter-spacing: -0.045em;
}

.sprdh-case-card__body {
	padding: 24px;
}

.sprdh-case-card__body h4 {
	margin: 0;
	color: var(--sprdh-text);
	font-size: clamp(1.1rem, 1.6vw, 1.38rem);
	line-height: 1.28;
	letter-spacing: -0.04em;
}

.sprdh-case-card__body h4 a:hover {
	color: var(--sprdh-teal);
}

@media (max-width: 920px) {
	.sprdh-case-grid {
		grid-template-columns: 1fr;
	}
}

#zinvos {
	padding: 90px 0;
}

/* ===== Inner Page Template Content ===== */
.sprdh-page-content {
	color: var(--sprdh-muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.sprdh-page-content h2,
.sprdh-page-content h3,
.sprdh-page-content h4 {
	color: var(--sprdh-text);
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	letter-spacing: -0.03em;
}

.sprdh-page-content a {
	color: var(--sprdh-primary);
	text-decoration: underline;
}

.sprdh-page-content a:hover {
	color: var(--sprdh-teal);
}

.sprdh-page-content ul,
.sprdh-page-content ol {
	padding-left: 1.5em;
	margin-bottom: 1.5em;
}

.sprdh-page-content p {
	margin-bottom: 1.5em;
}

#zinvos .row {
	align-items: center;
}

#zinvos .mobile_screen {
	text-align: center;
	position: relative;
}

#zinvos .mobile_screen .cover {
	position: relative;
}

#zinvos .feature_card {
	background: #fff;
	border-radius: 10px;
	position: absolute;
	left: -40px;
	top: 25%;
	z-index: 3;
	color: #000;
	font-weight: 600;
	padding: 20px;
	text-align: left;
	width: 180px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-out;
}

#zinvos .feature_card small {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 5;
}

#zinvos .card2 {
	background: #f7a600;
	left: -50px;
	top: 60%;
	color: #fff;
}

#zinvos .card3 {
	background: #2281c5;
	color: #fff;
	top: 65%;
	left: unset;
	right: -40px;
}

#zinvos .card4 {
	background: #e50056;
	color: #fff;
	top: 20%;
	left: unset;
	right: -40px;
}

#zinvos .mobile_screen img {
	max-width: 100%;
	width: 350px;
	height: auto;
	transform: rotateZ(0deg);
	position: relative;
	z-index: 2;
}

#zinvos .content {
	padding-left: 80px;
}

#zinvos .content .zinvos_logo {
	margin-bottom: 30px;
	max-width: 100%;
	width: 300px;
}

#zinvos_clients .left_to_right {
	margin-bottom: 30px;
}

#zinvos .content h3,
#zinvos .content h4,
#zinvos_clients_list h4 {
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 700;
	color: #333;
}

#zinvos .content h4,
#zinvos_clients_list h4 {
	font-size: 25px;
}

#zinvos p {
	font-size: 22px;
	margin-bottom: 30px;
}

#zinvos_clients_list {
	padding-top: 60px;
}

#zinvos_clients img {
	max-width: 80%;
	height: auto;
	display: block;
	border: none;
	border-radius: 10px;
	transition: 0.4s ease all;
	background: #fff;
}

#zinvos_clients img:hover {
	filter: grayscale(0);
}

#zinvos_clients .owl-nav {
	display: flex;
	justify-content: end;
	margin-top: 30px;
	margin-right: 15px;
	display: none;
}

#zinvos_clients .owl-nav div {
	width: 25px;
	height: 25px;
	background: url(../images/listing_arrow.svg) no-repeat scroll 0 0;
	background-size: contain;
	text-indent: -9999px;
	overflow: hidden;
}

#zinvos_clients .owl-nav .owl-prev {
	transform: rotate(180deg);
	margin-right: 20px;
}

#zinvos .buttons {
	display: flex;
}

#zinvos .buttons {
	display: flex;
}

#zinvos .app_button {
	border: 1px solid #000;
	padding: 10px 23px;
	display: block;
	width: 90%;
	display: flex;
	color: #000;
	text-decoration: none;
	border-radius: 40px;
	margin: 20px 0;
	max-width: 240px;
	margin-right: 10px;
}

#zinvos .app_button svg path {
	fill: #000;
}

#zinvos .app_button:hover {
	background: #2281c5;
	border-color: #2281c5;
}

#zinvos .app_button .sc_button_icon {
	margin-right: 10px;
}

#zinvos .sc_button_subtitle {
	font-size: 15px;
}

#zinvos .app_button svg {
	width: 50px;
	height: 50px;
}

#zinvos .app_button .sc_button_title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 23px;
}

#zinvos .app_button:hover svg path {
	fill: #fff;
}

#zinvos .app_button:hover {
	border-color: #fff;
	color: #fff;
}

#zinvos {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(34, 129, 197, 0.18), transparent 30rem),
		radial-gradient(circle at 86% 20%, rgba(118, 184, 40, 0.16), transparent 28rem),
		radial-gradient(circle at 20% 88%, rgba(247, 166, 0, 0.12), transparent 26rem),
		radial-gradient(circle at 88% 82%, rgba(230, 0, 85, 0.10), transparent 28rem),
		linear-gradient(180deg, #eef6fb 0%, #e4f0f5 48%, #dbe9ee 100%);
	padding: 90px 0;
}

#zinvos .mobile_screen {
	text-align: center;
	position: relative;
	background:
		radial-gradient(circle at 35% 25%, rgba(118, 184, 40, 0.24), transparent 30%),
		radial-gradient(circle at 72% 28%, rgba(34, 129, 197, 0.24), transparent 32%),
		radial-gradient(circle at 28% 78%, rgba(247, 166, 0, 0.18), transparent 30%),
		radial-gradient(circle at 76% 76%, rgba(230, 0, 85, 0.14), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(223, 237, 243, 0.82));
	border-radius: 42px;
}

#zinvos .mobile_screen::before {
	content: "";
	position: absolute;
	inset: 22px;
	border-radius: 36px;
	border: 1px solid rgba(34, 129, 197, 0.18);
	background-image:
		linear-gradient(rgba(34, 129, 197, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(118, 184, 40, 0.065) 1px, transparent 1px);
	background-size: 34px 34px;
	pointer-events: none;
}

#zinvos .mobile_screen .cover {
	position: relative;
	z-index: 2;
}

@media all and (max-width: 1200px) {
	#zinvos .mobile_screen img {
		width: 350px;
	}

	#zinvos p {
		font-size: 18px;
	}
}

@media all and (max-width: 1080px) {
	#zinvos .mobile_screen {
		margin-bottom: 40px;
		background-size: 60%;
	}

	#zinvos .mobile_screen,
	#zinvos .content {
		width: 100%;
	}

	#zinvos .content {
		padding-left: 15px;
	}

	#zinvos .mobile_screen .cover {
		max-width: 560px;
		margin: 0 auto;
		width: 90%;
	}
}

@media all and (max-width: 786px) {
	#zinvos .mobile_screen {
		background-size: 70%;
	}

	#zinvos .content .zinvos_logo {
		font-weight: 240px;
	}

	#zinvos .mobile_screen img {
		width: 300px;
	}
}

@media all and (max-width: 640px) {
	#zinvos .feature_card {
		font-size: 13px;
		padding: 15px;
		width: 150px;
	}

	#zinvos .feature_card small {
		font-size: 18px;
	}

	#zinvos .mobile_screen {
		background-size: 90%;
	}

	#zinvos .content h3,
	#zinvos .content h4 {
		font-size: 21px;
		margin-bottom: 15px;
	}

	#zinvos .content h4 {
		font-size: 21px;
	}
}

@media all and (max-width: 560px) {
	#zinvos .app_button .sc_button_icon {
		margin-right: 5px;
	}

	#zinvos .buttons {
		margin-top: 25px;
	}

	#zinvos .sc_button_subtitle {
		font-size: 12px;
	}

	#zinvos .app_button svg {
		width: 30px;
		height: 30px;
	}

	#zinvos .app_button .sc_button_title {
		font-size: 15px;
	}

	#zinvos .app_button {
		align-items: center;
		max-width: 160px;
		padding: 5px;
		margin: 0 5px;
	}
}

@media all and (max-width: 480px) {

	header .brand img,
	header .brand svg {
		max-width: 175px;
	}

	#zinvos .buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	#zinvos .app_button {
		margin-bottom: 10px;
	}

	#zinvos .feature_card {
		font-size: 13px;
	}

	#zinvos .mobile_screen .cover {
		width: 80%
	}

	#zinvos .feature_card small {
		font-size: 20px;
	}
}

/* ===== Services Section - Dark Theme ===== */

.sprdh-services {
	position: relative;
	color: #ffffff;
	background:
		radial-gradient(circle at 12% 18%, rgba(40, 187, 179, 0.26), transparent 30rem),
		radial-gradient(circle at 88% 76%, rgba(187, 189, 66, 0.20), transparent 30rem),
		radial-gradient(circle at 50% 100%, rgba(40, 187, 179, 0.12), transparent 36rem),
		linear-gradient(180deg, #071421 0%, #08111c 52%, #03070c 100%);
}

.sprdh-services::before {
	opacity: 0.32;
	background-image:
		linear-gradient(rgba(40, 187, 179, 0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(187, 189, 66, 0.10) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: radial-gradient(circle at 50% 42%, black 0 44%, transparent 82%);
}

.sprdh-services::after {
	content: "";
	position: absolute;
	width: 58vw;
	height: 58vw;
	right: -30vw;
	top: -34vw;
	z-index: -2;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(40, 187, 179, 0.18), transparent 62%);
	pointer-events: none;
}

/* Section heading overrides */
.sprdh-services .sprdh-kicker {
	color: #dffdfa;
	border-color: rgba(40, 187, 179, 0.26);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.sprdh-services .sprdh-kicker::before {
	background: linear-gradient(135deg, #28bbb3, #bbbd42);
	box-shadow: 0 0 0 6px rgba(40, 187, 179, 0.16);
}

.sprdh-services .sprdh-title {
	color: #ffffff;
}

.sprdh-services .sprdh-title span {
	color: transparent;
	background: linear-gradient(100deg, #ffffff 8%, #28bbb3 48%, #bbbd42 86%);
	-webkit-background-clip: text;
	background-clip: text;
}

.sprdh-services .sprdh-lead {
	color: rgba(255, 255, 255, 0.68);
}

/* Grid */
.sprdh-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Card */
.sprdh-service-card {
	position: relative;
	isolation: isolate;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px;
	border-radius: var(--sprdh-radius-xl);
	overflow: hidden;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 44%);
	box-shadow: 0 24px 78px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(22px);
	transition:
		transform 260ms ease,
		box-shadow 260ms ease,
		border-color 260ms ease;
}

.sprdh-service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 82% 8%, var(--service-accent), transparent 36%),
		radial-gradient(circle at 8% 92%, rgba(40, 187, 179, 0.14), transparent 34%);
	opacity: 0.24;
}

.sprdh-service-card::after {
	content: "";
	position: absolute;
	width: 170px;
	height: 170px;
	right: -78px;
	top: -78px;
	z-index: -1;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: radial-gradient(circle, var(--service-accent), transparent 70%);
	opacity: 0.18;
	transition:
		transform 360ms var(--sprdh-ease),
		opacity 360ms ease;
}

.sprdh-service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(40, 187, 179, 0.36);
	box-shadow: 0 32px 96px rgba(0, 0, 0, 0.34);
}

.sprdh-service-card:hover::after {
	transform: scale(1.28);
	opacity: 0.32;
}

.sprdh-service-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

/* Icon */
.sprdh-service-card__icon {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	border-radius: 26px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.26);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.sprdh-service-card__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

/* Number */
.sprdh-service-card__number {
	color: #dffdfa;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Text */
.sprdh-service-card h3 {
	margin: 34px 0 18px;
	color: #ffffff;
	font-size: clamp(1.28rem, 1.8vw, 1.68rem);
	line-height: 1.12;
	letter-spacing: -0.055em;
}

.sprdh-service-card p {
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.96rem;
	line-height: 1.65;
}

/* Button */
.sprdh-service-card .sprdh-btn {
	width: fit-content;
	padding: 10px 18px;
	border-radius: 30px;
}

.sprdh-service-card .sprdh-btn--light {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.sprdh-service-card .sprdh-btn--light:hover {
	color: #071421;
	border-color: transparent;
	background: linear-gradient(135deg, #28bbb3, #bbbd42);
	box-shadow: 0 18px 42px rgba(40, 187, 179, 0.24);
}

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

@media (max-width: 680px) {
	.sprdh-service-grid {
		grid-template-columns: 1fr;
	}

	.sprdh-service-card {
		min-height: 310px;
	}

	.sprdh-service-card .sprdh-btn {
		width: 100%;
	}
}

/* ===== Clients Section ===== */

.sprdh-clients {
	background:
		radial-gradient(circle at 82% 20%, rgba(187, 189, 66, 0.13), transparent 28rem),
		radial-gradient(circle at 16% 78%, rgba(40, 187, 179, 0.12), transparent 30rem),
		linear-gradient(180deg, #ffffff 0%, var(--sprdh-bg) 100%);
}

.sprdh-client-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.sprdh-client-card {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 118px;
	padding: 22px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
		radial-gradient(circle at top right, rgba(40, 187, 179, 0.08), transparent 42%);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
	overflow: hidden;
	transition:
		transform 240ms ease,
		box-shadow 240ms ease,
		border-color 240ms ease;
}

.sprdh-client-card:hover::before {
	transform: scaleX(1);
}

.sprdh-client-card img {
	width: 100%;
	max-width: 150px;
	max-height: 72px;
	object-fit: contain;
	filter: saturate(0.9);
	transition: filter 240ms ease, transform 240ms ease;
}

.sprdh-client-card:hover img {
	filter: saturate(1.08);
	transform: scale(1.04);
}

@media (max-width: 1080px) {
	.sprdh-client-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 760px) {
	.sprdh-client-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sprdh-client-card {
		min-height: 106px;
		padding: 18px;
	}
}

@media (max-width: 460px) {
	.sprdh-client-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Contact Section ===== */

.sprdh-contact {
	background:
		radial-gradient(circle at 14% 18%, rgba(40, 187, 179, 0.14), transparent 30rem),
		radial-gradient(circle at 90% 82%, rgba(187, 189, 66, 0.14), transparent 30rem),
		linear-gradient(180deg, var(--sprdh-bg) 0%, #ffffff 100%);
}

.sprdh-contact__grid {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: clamp(28px, 6vw, 72px);
	align-items: start;
}

.sprdh-contact-card {
	position: relative;
	padding: clamp(28px, 4vw, 46px);
	border-radius: var(--sprdh-radius-xl);
	overflow: hidden;
}

.sprdh-contact-card::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	right: -110px;
	top: -120px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(40, 187, 179, 0.2), transparent 68%);
}

.sprdh-contact-card::after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	left: -70px;
	bottom: -80px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(187, 189, 66, 0.2), transparent 68%);
}

.sprdh-contact-card__content {
	position: relative;
	z-index: 2;
}

.sprdh-contact-card h3 {
	margin: 0 0 22px;
	color: var(--sprdh-text);
	font-size: clamp(2rem, 3.5vw, 2.5rem);
	line-height: 1.2;
	letter-spacing: -0.075em;
}

.sprdh-contact-card h3 span {
	color: transparent;
	background: linear-gradient(100deg, var(--sprdh-text) 8%, var(--sprdh-teal) 48%, var(--sprdh-lime) 86%);
	-webkit-background-clip: text;
	background-clip: text;
}

.sprdh-contact-info {
	display: grid;
	gap: 16px;
	margin-top: 30px;
}

.sprdh-contact-info__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.sprdh-contact-info__icon {
	display: grid;
	place-items: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--sprdh-teal), var(--sprdh-lime));
	box-shadow: 0 14px 28px rgba(40, 187, 179, 0.2);
}

.sprdh-contact-info__icon svg {
	width: 22px;
	height: 22px;
}

.sprdh-contact-info__text small {
	display: block;
	margin-bottom: 4px;
	color: var(--sprdh-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sprdh-contact-info__text a {
	color: var(--sprdh-text);
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	font-weight: 700;
	transition: color 220ms ease;
}

.sprdh-contact-info__text a:hover {
	color: var(--sprdh-teal);
}

.sprdh-contact-form-wrap {
	position: relative;
	padding: clamp(24px, 4vw, 38px);
	border-radius: var(--sprdh-radius-xl);
	overflow: hidden;
}

.sprdh-contact-form-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(40, 187, 179, 0.12), transparent 38%),
		radial-gradient(circle at bottom left, rgba(187, 189, 66, 0.1), transparent 34%);
	pointer-events: none;
}

.sprdh-contact-form {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.sprdh-contact-form-wrap {
	display: grid;
	gap: 8px;
	margin: 0;
}

.sprdh-contact-form-wrap--full {
	grid-column: 1 / -1;
}

.sprdh-contact-form-wrap label {
	color: var(--sprdh-text);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sprdh-contact-form-wrap input,
.sprdh-contact-form-wrap textarea {
	width: 100%;
	border: 1px solid rgba(15, 23, 42, 0.11);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--sprdh-text);
	font: inherit;
	outline: none;
	transition:
		border-color 200ms ease,
		box-shadow 200ms ease,
		background 200ms ease;
}

.sprdh-contact-form-wrap input {
	min-height: 56px;
	padding: 0 16px;
}

.sprdh-contact-form-wrap textarea {
	min-height: 158px;
	resize: vertical;
	padding: 16px;
}

.sprdh-contact-form-wrap input:focus,
.sprdh-contact-form-wrap textarea:focus {
	border-color: rgba(40, 187, 179, 0.48);
	background: #ffffff;
	box-shadow: 0 0 0 5px rgba(40, 187, 179, 0.1);
}

.sprdh-submit {
	width: fit-content;
	border: 0;
	cursor: pointer;
}

@media (max-width: 920px) {
	.sprdh-contact__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.sprdh-contact-form {
		grid-template-columns: 1fr;
	}

	.sprdh-submit {
		width: 100%;
	}

	.sprdh-contact-info__item {
		align-items: flex-start;
	}
}

/* ===== Dark Footer Section ===== */

.sprdh-footer {
	position: relative;
	isolation: isolate;
	padding: 82px 20px 0;
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(circle at 14% 0%, rgba(40, 187, 179, 0.28), transparent 32rem),
		radial-gradient(circle at 90% 28%, rgba(187, 189, 66, 0.18), transparent 30rem),
		radial-gradient(circle at 50% 100%, rgba(40, 187, 179, 0.12), transparent 36rem),
		linear-gradient(180deg, #071421 0%, #08111c 48%, #03070c 100%);
}

.sprdh-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.26;
	background-image:
		linear-gradient(rgba(40, 187, 179, 0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(187, 189, 66, 0.1) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: radial-gradient(circle at 50% 38%, black 0 44%, transparent 82%);
}

.sprdh-footer::after {
	content: "";
	position: absolute;
	width: 56vw;
	height: 56vw;
	right: -28vw;
	top: -34vw;
	z-index: -1;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(40, 187, 179, 0.18), transparent 62%);
	pointer-events: none;
}

.sprdh-footer__top {
	display: grid;
	grid-template-columns: 0.86fr 1.44fr;
	gap: clamp(32px, 6vw, 76px);
	padding-bottom: 46px;
}

.sprdh-footer__brand-logo {
	width: min(100%, 228px);
	height: auto;
	margin-bottom: 22px;
}

/* Use this only if you are using the dark text logo on the dark footer */

.sprdh-footer__brand p {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 30px;
}

.sprdh-footer__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	padding: 10px 14px;
	border: 1px solid rgba(40, 187, 179, 0.22);
	border-radius: 999px;
	color: #dffdfa;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(18px);
	font-size: 0.86rem;
	font-weight: 700;
}

.sprdh-footer__badge::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sprdh-teal), var(--sprdh-lime));
	box-shadow: 0 0 0 6px rgba(40, 187, 179, 0.16);
}

.sprdh-footer__columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.sprdh-footer__column {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 26px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
		radial-gradient(circle at top right, rgba(40, 187, 179, 0.1), transparent 40%);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(22px);
}

.sprdh-footer__column h3,
.sprdh-footer__column strong {
	display: block;
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.sprdh-footer__column p {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.64);
	line-height: 1.75;
}

.sprdh-footer__column ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sprdh-footer__column a {
	color: #dffdfa;
	transition: color 220ms ease;
	font-size: 1.4em;
}

.sprdh-footer__column a:hover {
	color: var(--sprdh-lime);
}

.sprdh-recognition {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding: 34px 0 46px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sprdh-recognition__group {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	backdrop-filter: blur(18px);
}

.sprdh-recognition__group h3 {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.78rem;
	font-weight: 6 00;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sprdh-recognition__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sprdh-recognition__logo {
	display: block;
	width: 108px;
	height: 70px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.96);
	background-position: center;
	background-size: 80%;
	background-repeat: no-repeat;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.sprdh-recognition__logo:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(40, 187, 179, 0.16);
}

.sprdh-footer__bottom {
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sprdh-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.sprdh-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.95rem;
}

.sprdh-socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sprdh-socials a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 999px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
	transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.sprdh-socials a:hover {
	transform: translateY(-3px);
	border-color: rgba(40, 187, 179, 0.38);
	background: linear-gradient(135deg, rgba(40, 187, 179, 0.22), rgba(187, 189, 66, 0.16));
}

.sprdh-socials img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

@media (max-width: 1080px) {
	.sprdh-recognition {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 920px) {
	.sprdh-footer__top {
		grid-template-columns: 1fr;
	}

	.sprdh-footer__columns {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.sprdh-footer {
		padding: 64px 16px 0;
	}

	.sprdh-recognition {
		grid-template-columns: 1fr;
	}

	.sprdh-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* ===== Zivents Homepage Section ===== */

.zivents-home {
	--zivents-green: #b7ef00;
	--zivents-orange: #ff6132;
	--zivents-purple: #6a5dc9;
	--zivents-text: #111319;
	--zivents-muted: #606977;
	--zivents-border: rgba(17, 19, 25, 0.08);

	position: relative;
	overflow: hidden;
	padding: 100px 20px;
	background:
		radial-gradient(circle at 12% 16%, rgba(183, 239, 0, 0.12), transparent 26rem),
		radial-gradient(circle at 86% 18%, rgba(255, 97, 50, 0.12), transparent 26rem),
		radial-gradient(circle at 88% 82%, rgba(106, 93, 201, 0.13), transparent 28rem),
		linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.zivents-home__container {
	width: min(100%, 1240px);
	margin: 0 auto;
}

.zivents-home__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(34px, 5vw, 74px);
	align-items: start;
}

/* Left side */
.zivents-home__intro {
	top: 120px;
}

.zivents-home__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--zivents-purple);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.zivents-home__eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--zivents-green), var(--zivents-orange));
}

.zivents-home__brand {
	display: grid;
	gap: 16px;
	margin-bottom: 28px;
	padding: 24px 26px;
	border-radius: 28px;
}

.zivents-home__logo {
	width: min(100%, 240px);
	height: auto;
	display: block;
}

.zivents-home__brand p {
	margin: 0;
	color: var(--zivents-muted);
	font-size: 0.96rem;
	line-height: 1.7;
}

.zivents-home__intro h2 {
	margin: 0 0 18px;
	color: var(--zivents-text);
	font-size: clamp(2rem, 3.8vw, 2rem);
	line-height: 1.3;
	letter-spacing: -0.065em;
}

.zivents-home__lead {
	margin: 0 0 14px;
	color: var(--zivents-text);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.75;
}

.zivents-home__text {
	margin: 0;
	color: var(--zivents-muted);
	font-size: 1rem;
	line-height: 1.85;
}

.zivents-home__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 30px;
}

.zivents-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 999px;
	text-decoration: none;
	color: #ffffff;
	font-size: 0.95rem;
	background: linear-gradient(135deg, var(--zivents-purple), var(--zivents-orange));
	box-shadow: 0 18px 34px rgba(106, 93, 201, 0.22);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.zivents-home__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(106, 93, 201, 0.28);
}

.zivents-home__meta {
	color: var(--zivents-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

/* Right panel */
.zivents-home__panel {
	position: relative;
	padding: 34px;
	border: 1px solid var(--zivents-border);
	border-radius: 34px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
	box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
	overflow: hidden;
}

.zivents-home__panel-top {
	margin-bottom: 26px;
}

.zivents-home__panel-label {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--zivents-purple);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.zivents-home__panel-top h3 {
	margin: 0;
	color: var(--zivents-text);
	font-size: clamp(1.45rem, 2.4vw, 2.2rem);
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.zivents-home__sectors {
	display: grid;
	gap: 0;
}

.zivents-home__sector {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	padding: 24px 0;
	border-top: 1px solid rgba(17, 19, 25, 0.08);
}

.zivents-home__sector:first-child {
	padding-top: 0;
	border-top: 0;
}

.zivents-home__sector-no {
	display: inline-flex;
	align-items: flex-start;
	justify-content: flex-start;
	color: rgba(17, 19, 25, 0.22);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.zivents-home__sector h4 {
	margin: 0 0 8px;
	color: var(--zivents-text);
	font-size: 1.22rem;
	line-height: 1.22;
	letter-spacing: -0.03em;
}

.zivents-home__sector p {
	margin: 0;
	color: var(--zivents-muted);
	font-size: 0.96rem;
	line-height: 1.72;
}

.zivents-home__capability-block {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(17, 19, 25, 0.08);
}

.zivents-home__capabilities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.zivents-home__capabilities span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	color: var(--zivents-text);
	background: #ffffff;
	border: 1px solid rgba(17, 19, 25, 0.08);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
	font-size: 0.84rem;
	font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
	.zivents-home__grid {
		grid-template-columns: 1fr;
	}

	.zivents-home__intro {
		position: relative;
		top: auto;
	}
}

@media (max-width: 680px) {
	.zivents-home {
		padding: 76px 16px;
	}

	.zivents-home__brand,
	.zivents-home__panel {
		padding: 22px;
		border-radius: 24px;
	}

	.zivents-home__sector {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.zivents-home__logo {
		width: min(100%, 200px);
	}

	.zivents-home__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.sprdh-section-header {
		flex-wrap: wrap;
	}

	.zivents-home__intro h2 {
		font-size: 1.5rem;
	}
}