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

:root {
	--white: #ffffff;
	--off: #f7f6f2;
	--light: #eae8e1;
	--ink: #0c0c0e;
	--ink2: #18181c;
	--ink3: #252530;
	--muted: #6b6a76;
	--dim: #9d9caa;
	--border: rgba(12, 12, 14, 0.08);
	--green: #00c98c;
	--green2: #00b07a;
	--violet: #7c3aed;
	--blue: #2563eb;
	--amber: #f59e0b;
	--on-dark-high: rgba(255, 255, 255, 0.92);
	--on-dark-body: rgba(255, 255, 255, 0.8);
	--on-dark-muted: rgba(255, 255, 255, 0.68);
	--on-dark-soft: rgba(255, 255, 255, 0.56);
	--body: 'InterVar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--ease2: cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
	font-family: 'InterVar';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/InterVariable.woff2') format('woff2');
}

@font-face {
	font-family: 'InterVar';
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/InterVariable-Italic.woff2') format('woff2');
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--white);
	color: var(--ink);
	font-family: var(--body);
	overflow-x: hidden;
}

/* ══ CUSTOM CURSOR - only on hover ══ */
.cursor-fx {
	position: fixed;
	top: 0;
	left: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition:
		opacity 0.25s,
		width 0.3s var(--ease),
		height 0.3s var(--ease),
		background 0.3s;
	background: var(--ink);
	mix-blend-mode: difference;
}

.cursor-fx.active {
	opacity: 1;
}

.cursor-fx.clicking {
	width: 38px;
	height: 38px;
}

/* ══ LOADER ══ */
#loader {
	position: fixed;
	inset: 0;
	z-index: 9000;
	background: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	transition:
		clip-path 1s var(--ease),
		opacity 0.5s;
}

#loader.out {
	clip-path: circle(0% at 50% 50%);
	opacity: 0;
	pointer-events: none;
}

.ld-logo {
	font-family: var(--body);
	font-size: 52px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.05em;
	overflow: hidden;
}

.ld-logo span {
	display: inline-block;
	color: var(--green);
}

.ld-bar {
	width: 180px;
	height: 1.5px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
}

.ld-fill {
	height: 100%;
	background: var(--green);
	width: 0;
	transition: width 0.22s var(--ease2);
}

.ld-num {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.08em;
	font-family: var(--body);
	font-weight: 600;
}

/* ══ FLOATING PILL NAV ══ */
.nav-wrap {
	position: fixed;
	top: 24px;
	left: 0;
	right: 0;
	z-index: 500;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

nav {
	pointer-events: all;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(22px) saturate(185%);
	-webkit-backdrop-filter: blur(22px) saturate(185%);
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 100px;
	padding: 6px 6px 6px 20px;
	box-shadow:
		0 12px 36px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.55);
	transition: all 0.4s var(--ease);
	transform: translateY(-4px) scale(0.97);
	opacity: 0;
}

nav.ready {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.nav-logo {
	font-family: var(--body);
	font-size: 16px;
	font-weight: 800;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: -0.04em;
	margin-right: 8px;
	white-space: nowrap;
}

.nav-logo-img {
	display: block;
	height: 20px;
	width: auto;
}

.nav-logo span {
	color: var(--green);
	font-style: normal;
	margin-left: 0.08em;
	font-size: 1.18em;
	line-height: 1;
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(14px) saturate(170%);
	-webkit-backdrop-filter: blur(14px) saturate(170%);
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-direction: column;
	cursor: pointer;
}

.nav-toggle span {
	width: 16px;
	height: 1.8px;
	background: var(--ink);
	border-radius: 2px;
	transition:
		transform 0.25s var(--ease),
		opacity 0.2s;
}

/* Active pill indicator */
.nav-links {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
	position: relative;
}

.nav-lang {
	display: flex;
	align-items: center;
	padding-left: 10px;
}

/* ══ Language dropdown (custom, non-native) ══ */
.lang-dd {
	position: relative;
	display: inline-flex;
	align-items: center;
	z-index: 520;
}

.lang-dd__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	padding: 8px 12px;
	border: 1px solid rgba(12, 12, 14, 0.08);
	background: rgba(255, 255, 255, 0.5);
	color: var(--ink);
	cursor: pointer;
	font-family: var(--body);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	transition:
		background 0.2s var(--ease),
		border-color 0.2s var(--ease),
		transform 0.2s var(--ease);
	backdrop-filter: blur(14px) saturate(170%);
	-webkit-backdrop-filter: blur(14px) saturate(170%);
}

.lang-dd__btn:hover {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(12, 12, 14, 0.12);
	transform: translateY(-1px);
}

.lang-dd__btn:focus-visible {
	outline: 2px solid rgba(124, 58, 237, 0.35);
	outline-offset: 2px;
}

.lang-dd__label {
	letter-spacing: 0.06em;
}

.lang-dd__chev {
	width: 14px;
	height: 14px;
	opacity: 0.9;
	transition: transform 0.18s var(--ease);
}

.lang-dd.is-open .lang-dd__chev {
	transform: rotate(180deg);
}

.lang-dd__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 180px;
	border-radius: 16px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(12, 12, 14, 0.1);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(18px) saturate(185%);
	-webkit-backdrop-filter: blur(18px) saturate(185%);
	transform: translateY(6px);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.18s var(--ease),
		transform 0.18s var(--ease);
}

.lang-dd.is-open .lang-dd__menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.lang-dd--up .lang-dd__menu {
	top: auto;
	bottom: calc(100% + 10px);
}

.lang-dd__item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	color: var(--ink);
	font-family: var(--body);
	text-align: left;
	transition:
		background 0.16s var(--ease),
		border-color 0.16s var(--ease);
}

.lang-dd__item:hover {
	background: rgba(12, 12, 14, 0.06);
	border-color: rgba(12, 12, 14, 0.08);
}

.lang-dd__item[aria-checked='true'] {
	background: rgba(0, 201, 140, 0.12);
	border-color: rgba(0, 201, 140, 0.22);
}

.lang-dd__code {
	font-weight: 800;
	letter-spacing: 0.06em;
}

.lang-dd__name {
	font-size: 13px;
	font-weight: 600;
	color: rgba(12, 12, 14, 0.7);
}

.lang-dd-wrap {
	margin-top: 16px;
}

.lang-dd--footer .lang-dd__btn {
	width: 100%;
	max-width: 220px;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.lang-dd--footer .lang-dd__btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
}

.lang-dd--footer .lang-dd__menu {
	left: 0;
	right: auto;
	min-width: 0;
	width: 220px;
	max-width: min(260px, calc(100vw - 48px));
	background: rgba(12, 12, 14, 0.92);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow:
		0 24px 70px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lang-dd--footer .lang-dd__item {
	color: rgba(255, 255, 255, 0.92);
}

.lang-dd--footer .lang-dd__item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
}

.lang-dd--footer .lang-dd__name {
	color: rgba(255, 255, 255, 0.68);
}

.lang-dd--footer .lang-dd__item[aria-checked='true'] {
	background: rgba(0, 201, 140, 0.12);
	border-color: rgba(0, 201, 140, 0.25);
}

.nav-mobile-call {
	display: none;
}

.nav-pill-indicator {
	position: absolute;
	background: var(--ink);
	border-radius: 100px;
	transition: all 0.4s var(--ease);
	pointer-events: none;
	top: 0;
	left: 0;
	opacity: 0;
}

.nav-links a {
	position: relative;
	z-index: 1;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	padding: 7px 16px;
	border-radius: 100px;
	transition:
		color 0.2s,
		background 0.2s;
	white-space: nowrap;
	display: block;
}

.nav-links a:hover {
	color: var(--ink);
	background: rgba(12, 12, 14, 0.08);
}

.nav-links a.active {
	color: var(--white);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--ink);
	color: var(--white) !important;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 20px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.25s;
	font-family: var(--body);
	margin-left: 4px;
	white-space: nowrap;
}

.nav-cta:hover {
	background: var(--ink2);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav-avail-dot {
	width: 6px;
	height: 6px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(0.7);
	}
}

/* ══ HERO ══ */
#hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
	background: var(--ink);
}

#hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

@media (prefers-reduced-motion: reduce) {
	#hero-canvas {
		display: none;
	}
}

.hero-inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 64px 100px;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 28px;
	width: fit-content;
	backdrop-filter: blur(8px);
}

.hero-badge em {
	color: var(--green);
	font-style: normal;
}

.hero-hl {
	font-family: var(--body);
	font-size: clamp(58px, 8vw, 124px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
	color: var(--white);
	margin-bottom: 44px;
	will-change: transform, opacity;
}

.hero-hl em {
	font-style: italic;
	color: var(--green);
}

/* Animated text lines - room for ascenders/descenders (italic + Serbian diacritics) */
.hero-hl .tline {
	display: block;
	overflow: hidden;
	padding-bottom: 0.06em;
}

.hero-hl .tword {
	display: inline-block;
	transform: translateY(0);
	will-change: transform;
}

.hero-meta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

/* Hero animations are delayed until after first paint to avoid LCP render delay */
.hero-animate .hero-badge {
	animation: heroEnter 0.5s var(--ease) both;
}

.hero-animate .hero-hl {
	animation: heroEnter 0.6s var(--ease) both;
	animation-delay: 0.05s;
}

.hero-animate .hero-meta {
	animation: heroEnter 0.7s var(--ease) both;
	animation-delay: 0.15s;
}

.hero-animate .hero-hl .tword {
	animation: heroWordUp 0.6s var(--ease) both;
}

.hero-animate .tline:nth-child(2) .tword {
	animation-delay: 0.12s;
}

.hero-animate .tline:nth-child(3) .tword {
	animation-delay: 0.2s;
}

@keyframes heroEnter {
	from {
		transform: translateY(18px);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes heroWordUp {
	from {
		transform: translateY(12px);
	}
	to {
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-animate .hero-badge,
	.hero-animate .hero-hl,
	.hero-animate .hero-meta,
	.hero-animate .hero-hl .tword {
		animation: none !important;
	}
}

.hero-sub {
	font-size: 17px;
	color: var(--on-dark-muted);
	max-width: 400px;
	line-height: 1.75;
	font-weight: 300;
}

.hero-sub strong {
	color: var(--on-dark-high);
	font-weight: 500;
}

.hero-acts {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-shrink: 0;
}

.btn-light {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	color: var(--ink);
	font-family: var(--body);
	font-size: 14px;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s var(--ease);
}

.btn-light:hover {
	background: var(--green);
	box-shadow: 0 16px 48px rgba(0, 229, 160, 0.3);
	transform: translateY(-2px);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--on-dark-muted);
	font-size: 14px;
	font-weight: 500;
	padding: 14px 24px;
	border-radius: 100px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: all 0.25s;
}

.btn-outline:hover {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
}

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

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

/* Scroll cue */
.scroll-cue {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.2);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-family: var(--body);
	z-index: 2;
}

.scroll-cue-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(transparent, rgba(255, 255, 255, 0.25));
	animation: scLine 2s ease-in-out infinite;
}

@keyframes scLine {
	0%,
	100% {
		transform: scaleY(1);
		transform-origin: top;
		opacity: 1;
	}

	50% {
		transform: scaleY(0.3);
		transform-origin: top;
		opacity: 0.4;
	}
}

/* ══ STATS ══ */
.stats-band {
	background: var(--off);
	border-bottom: 1px solid var(--border);
}

.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 64px;
}

.sblock {
	padding: 44px 0 44px 40px;
	border-right: 1px solid var(--border);
}

.sblock:first-child {
	padding-left: 0;
}

.sblock:last-child {
	border-right: none;
}

.sn {
	font-family: var(--body);
	font-size: 54px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--ink);
	line-height: 1.12;
}

.sn em {
	color: var(--green);
	font-style: normal;
	margin-left: 0.12em;
}

.sl {
	font-size: 13px;
	color: var(--muted);
	margin-top: 6px;
	line-height: 1.55;
}

/* ══ MARQUEE ══ */
.marq-wrap {
	overflow: hidden;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--white);
	padding: 16px 0;
}

.marq-track {
	display: flex;
	animation: marqScroll 28s linear infinite;
	width: max-content;
}

.marq-group {
	display: flex;
	width: max-content;
}

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

.mi {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0 28px;
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	color: var(--dim);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.mdot {
	width: 4px;
	height: 4px;
	background: var(--green);
	border-radius: 50%;
	flex-shrink: 0;
}

@keyframes marqScroll {
	from {
		transform: translateX(0);
	}

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

/* ══ GENERIC SECTION ELEMENTS ══ */
.sec {
	padding: 140px 64px;
	position: relative;
	content-visibility: auto;
	contain-intrinsic-size: auto 800px;
}

/* Hero should always be visible - no content-visibility */
#hero {
	content-visibility: visible;
	contain-intrinsic-size: auto;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dim);
	margin-bottom: 18px;
}

.kicker::before {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--dim);
}

.hl2 {
	font-family: var(--body);
	font-size: clamp(38px, 4.5vw, 64px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
	color: var(--ink);
}

.hl2 em {
	font-style: italic;
	color: var(--green);
}

.hl2 em.g {
	color: var(--green);
}

/* Gray-background sections use purple highlights */
#services .hl2 em,
#pricing .hl2 em,
#comparison .hl2 em,
#contact .hl2 em,
#testimonials .hl2 em {
	color: var(--violet);
}

/* Green accent for services title (e.g. "usluge") */
#services .hl2 em.g {
	color: var(--green);
}

.line-lock {
	white-space: nowrap;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.9s var(--ease),
		transform 0.9s var(--ease);
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.reveal-l {
	opacity: 0;
	transform: translateX(-28px);
	transition:
		opacity 0.9s var(--ease),
		transform 0.9s var(--ease);
}

.reveal-l.in {
	opacity: 1;
	transform: translateX(0);
}

.mwrap {
	max-width: 1400px;
	margin: 0 auto;
}

/* ══ ABOUT ══ */
#about {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.about-body p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.9;
	font-weight: 300;
	margin-top: 20px;
}

.about-body p strong {
	color: var(--ink);
	font-weight: 600;
}

.team-row {
	display: flex;
	gap: 12px;
	margin-top: 36px;
	flex-wrap: wrap;
}

.tchip {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--off);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 7px 18px 7px 7px;
	transition: all 0.3s;
	text-decoration: none;
	color: inherit;
}

.tchip:hover {
	border-color: var(--ink);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.tchip.linkedin-chip:hover {
	border-color: #0a66c2;
	box-shadow: 0 4px 16px rgba(10, 102, 194, 0.15);
}

.linkedin-chip .li-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 2px;
	margin-right: 2px;
	color: #0a66c2;
	width: 0;
	opacity: 0;
	transform: translateX(-10px) scale(0.8);
	transition: all 0.3s var(--ease);
}

.linkedin-chip:hover .li-icon {
	width: 20px;
	opacity: 1;
	transform: translateX(0) scale(1);
	margin-left: 8px;
}

.tchip-av {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.tchip-av img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tcn {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
}

.tcr {
	font-size: 11px;
	color: var(--muted);
}

.about-visual {
	position: relative;
}

.av-card {
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 4/5;
	background: var(--ink);
	position: relative;
}

.av-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 0%, transparent 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
}

.av-ov-t {
	font-family: var(--body);
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 6px;
}

.av-ov-s {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* ══ SERVICES ══ */
#services {
	background: var(--off);
}

.svc-head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: end;
	margin-bottom: 72px;
}

.sh-note {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.8;
	font-weight: 300;
	padding-top: 40px;
}

.sh-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	font-family: var(--body);
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 2px solid var(--ink);
	transition: all 0.2s;
}

.sh-cta:hover {
	color: var(--violet);
	border-color: var(--violet);
}

.svc-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--light);
	border-radius: 20px;
	overflow: hidden;
}

.sc {
	--icon-accent: var(--violet);
	background: var(--white);
	padding: 40px 36px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s var(--ease);
	cursor: pointer;
}

.svc-bento .sc:nth-child(1) {
	--icon-accent: #00e5a0;
}

.svc-bento .sc:nth-child(2) {
	--icon-accent: #7c3aed;
}

.svc-bento .sc:nth-child(3) {
	--icon-accent: #2563eb;
}

.svc-bento .sc:nth-child(4) {
	--icon-accent: #f59e0b;
}

.svc-bento .sc:nth-child(5) {
	--icon-accent: #00c48c;
}

.svc-bento .sc:nth-child(6) {
	--icon-accent: #ef4444;
}

.svc-bento .sc:nth-child(7) {
	--icon-accent: #8b5cf6;
}

.sc:hover {
	background: var(--ink);
}

.sc-inner * {
	transition: color 0.4s;
}

.sc:hover .sc-inner * {
	color: var(--white) !important;
}

.sc:hover .sc-icon-box {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: var(--white);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		0 10px 26px rgba(0, 0, 0, 0.3);
}

.sc:hover .sc-icon-box svg {
	stroke: var(--white) !important;
}

.sc.wide {
	grid-column: span 2;
}

.sc-num {
	font-family: var(--body);
	font-size: 11px;
	font-weight: 700;
	color: var(--dim);
	letter-spacing: 0.1em;
	margin-bottom: 28px;
}

.sc-icon-box {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	color: var(--icon-accent);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 8px 18px rgba(12, 12, 14, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s;
}

.sc-icon-box svg {
	width: 22px;
	height: 22px;
	stroke: currentColor !important;
	fill: none;
	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.4s;
}

.sc-name {
	font-family: var(--body);
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 11px;
	line-height: 1.15;
}

.sc-desc {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 300;
	max-width: 300px;
}

.sc.wide .sc-desc {
	max-width: none;
}

.sc-arr {
	display: none;
}

.sc:hover .sc-arr {
	display: none;
}

.sc-arr svg {
	width: 13px;
	height: 13px;
	stroke: var(--white);
	fill: none;
}

/* Hover radial glow */
.sc::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 60% at var(--mx, 50%) var(--my, 50%),
		rgba(255, 255, 255, 0.04),
		transparent
	);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
}

.sc:hover::before {
	opacity: 1;
}

/* ══ AI SECTION ══ */
#ai {
	background: var(--ink);
	overflow: hidden;
}

.ai-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.ai-text .kicker {
	color: var(--on-dark-soft);
}

.ai-text .kicker::before {
	background: var(--on-dark-muted);
}

.ai-hl {
	font-family: var(--body);
	font-size: clamp(36px, 4.5vw, 60px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
	color: var(--white);
	margin-bottom: 24px;
}

.ai-hl em {
	font-style: italic;
	color: var(--green);
}

.ai-body {
	font-size: 16px;
	color: var(--on-dark-body);
	line-height: 1.85;
	font-weight: 300;
	margin-bottom: 36px;
}

.ai-body strong {
	color: var(--on-dark-high);
	font-weight: 500;
}

/* AI canvas visual */
.ai-visual {
	position: relative;
	min-width: 0;
}

.ai-float-card {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	background: rgba(12, 12, 14, 0.85);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px 24px;
}

.afc-label {
	font-size: 11px;
	color: var(--on-dark-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
}

.afc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.afc-tag {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

.afc-tag.active {
	background: rgba(0, 229, 160, 0.12);
	border-color: rgba(0, 229, 160, 0.25);
	color: var(--green);
}

/* ══ PROJECTS ══ */
#projects {
	background: var(--white);
	overflow: visible;
}

.proj-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 72px;
}

.proj-scroll {
	overflow: visible;
	margin: -12px -64px;
	padding: 16px 80px 24px;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.proj-scroll.is-dragging {
	cursor: grabbing;
	touch-action: none;
}

.proj-track {
	display: flex;
	gap: 32px;
	will-change: transform;
}

.pc {
	flex-shrink: 0;
	width: min(400px, 88vw);
	border-radius: 24px;
	overflow: hidden;
	background: var(--ink);
	border: 1.5px solid var(--border);
	transition:
		border-color 0.35s var(--ease),
		box-shadow 0.35s var(--ease);
	cursor: grab;
}

.pc:hover {
	border-color: rgba(12, 12, 14, 0.18);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.pc-media {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--ink);
}

.pc-img,
.pc-vid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pc-vid {
	pointer-events: none;
}

.pc-grad {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

.pc-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	max-height: 50%;
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	z-index: 2;
}

.pc-tags {
	display: flex;
	gap: 7px;
	margin-bottom: 2px;
	flex-wrap: wrap;
}

.pct {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.pct--dim {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.45);
}

#projects .pc .pc-name {
	font-family: var(--body);
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
}

#projects .pc .pc-desc {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
}

#projects .pc .pc-cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 6px;
	margin-top: 4px;
	background: var(--white);
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 100px;
	text-decoration: none;
	font-family: var(--body);
	transition:
		background 0.2s var(--ease),
		color 0.2s var(--ease);
}

#projects .pc .pc-cta:hover {
	background: var(--green);
	color: var(--ink);
}

/* Nav buttons */
.proj-nav {
	display: flex;
	gap: 10px;
}

.pnb {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s;
	flex-shrink: 0;
}

.pnb:hover:not(:disabled) {
	background: var(--ink);
	border-color: var(--ink);
}

.pnb:hover:not(:disabled) svg {
	stroke: var(--white);
}

.pnb:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.pnb svg {
	width: 17px;
	height: 17px;
	stroke: var(--ink);
	fill: none;
	stroke-width: 2;
	transition: stroke 0.25s;
}

/* Portfolio grid (featured works) */
.proj-featured-wrap {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.proj-featured-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 28px);
	width: 100%;
	margin: 0;
	transform: none !important;
	transition: none !important;
	will-change: auto;
}

.proj-featured-grid .pc--wide {
	grid-column: 1 / -1;
}

#projects .proj-featured-grid .pc--portfolio {
	width: 100%;
	max-width: none;
	min-width: 0;
	flex-shrink: 1;
	border-radius: 20px;
	overflow: hidden;
	cursor: default;
	scroll-margin-top: 96px;
	background: transparent;
	border: 1px solid rgba(12, 12, 14, 0.06);
	box-shadow:
		0 1px 2px rgba(12, 12, 14, 0.04),
		0 4px 24px rgba(12, 12, 14, 0.04);
	display: flex;
	flex-direction: column;
}

.pc-port-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: clamp(18px, 2.5vw, 24px) clamp(18px, 2.5vw, 24px) 0;
}

.pc-port-head__main {
	min-width: 0;
}

.pc-port-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #757575;
	margin-bottom: 6px;
	line-height: 1.3;
}

.pc-port-title {
	font-family: var(--body);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.pc-port-arrows {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.pc-port-arrows[hidden] {
	display: none !important;
}

.pc-port-arrow {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid rgba(12, 12, 14, 0.1);
	background: var(--white);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		background 0.2s var(--ease),
		border-color 0.2s var(--ease),
		color 0.2s var(--ease);
}

.pc-port-arrow:hover {
	background: var(--white);
	border-color: rgba(12, 12, 14, 0.18);
	color: var(--ink);
}

.pc-port-arrow svg {
	width: 18px;
	height: 18px;
}

.pc-port-viewport {
	position: relative;
	margin: clamp(14px, 2vw, 18px) clamp(18px, 2.5vw, 24px) 0;
	border-radius: 14px;
	overflow: hidden;
	background: transparent;
	max-height: 600px;
	height: min(600px, 62vw);
	min-height: 180px;
}

/* Cards that sit two-per-row should have a tighter media height. */
.proj-featured-grid .pc--portfolio:not(.pc--wide) .pc-port-viewport {
	max-height: 300px;
	height: min(300px, 62vw);
}

@media (max-width: 980px) {
	.proj-featured-grid {
		grid-template-columns: 1fr;
	}

	.proj-featured-grid .pc--wide {
		grid-column: auto;
	}

	.proj-featured-grid .pc--portfolio .pc-port-viewport {
		max-height: 300px;
		height: min(300px, 72vw);
	}
}

/* Inline carousel: native scroll-snap + peek of adjacent slides */
.pc-port-viewport[data-carousel] {
	container-type: inline-size;
	container-name: port-carousel;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
}

.pc-port-viewport[data-carousel]::-webkit-scrollbar {
	display: none;
}

.pc-port-viewport[data-carousel].is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.pc-port-viewport[data-carousel] .pc-port-track {
	display: flex;
	height: 100%;
	width: max-content;
	gap: 12px;
	padding-inline: 7cqw;
	box-sizing: border-box;
	will-change: auto;
}

.pc-port-viewport[data-carousel] .pc-port-slide {
	flex: 0 0 86cqw;
	scroll-snap-align: center;
}

.pc-port-track {
	display: flex;
	height: 100%;
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.pc-port-viewport[data-carousel] {
		scroll-behavior: auto;
	}
}

.pc-port-slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	position: relative;
	overflow: hidden;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.pc-port-slide .pc-vid,
.pc-port-slide .pc-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	display: block;
}

.pc-port-foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(16px, 3vw, 28px);
	padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.5vw, 24px) clamp(18px, 2.5vw, 24px);
	margin-top: auto;
	background: transparent;
}

.pc-port-desc {
	font-size: 16px;
	line-height: 1.65;
	color: #5c5c5c;
	flex: 1;
	min-width: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pc-port-cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--body);
	text-decoration: none;
	color: var(--ink);
	background: var(--white);
	border: 1px solid rgba(12, 12, 14, 0.1);
	box-shadow: 0 1px 2px rgba(12, 12, 14, 0.04);
	transition:
		background 0.2s var(--ease),
		border-color 0.2s var(--ease),
		color 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.pc-port-cta:hover {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
	box-shadow: 0 4px 14px rgba(12, 12, 14, 0.12);
}

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

	.proj-featured-grid .pc--wide {
		grid-column: auto;
	}

	.pc-port-foot {
		flex-direction: column;
		align-items: stretch;
	}

	.pc-port-cta {
		align-self: flex-start;
	}

	.contact-calendly iframe {
		height: 775px !important;
	}

	/* Keep AI terminal area stable to avoid content jump. */
	.ai-terminal {
		min-height: 170px;
	}

	.at-body {
		min-height: 96px;
	}

	/* Long typed lines must wrap instead of overflowing the viewport */
	.at-cmd,
	.at-out {
		flex: 1 1 0;
		min-width: 0;
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.at-line.at-res .at-out {
		flex-basis: 100%;
	}
}

/* ══ PROCESS ══ */
#process {
	background: var(--ink);
}

.proc-kicker {
	color: var(--on-dark-soft);
	margin-bottom: 18px;
}

.proc-kicker::before {
	background: rgba(255, 255, 255, 0.2);
}

.proc-hl {
	font-family: var(--body);
	font-size: clamp(38px, 4.5vw, 64px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.04em;
	color: var(--white);
	margin-bottom: 80px;
}

.proc-hl em {
	font-style: italic;
	color: var(--green);
}

.proc-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
}

.ps {
	background: rgba(12, 12, 14, 0.9);
	padding: 44px 36px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
	border: 1px solid transparent;
}

.ps:hover {
	background: rgba(37, 37, 48, 0.95);
	border-color: rgba(255, 255, 255, 0.06);
}

.ps-accent {
	width: 36px;
	height: 2px;
	background: var(--green);
	border-radius: 2px;
	margin-bottom: 32px;
}

.ps-n {
	font-family: var(--body);
	font-size: 11px;
	font-weight: 700;
	color: var(--on-dark-soft);
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.ps-title {
	font-family: var(--body);
	font-size: 19px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 12px;
	line-height: 1.2;
}

.ps-desc {
	font-size: 16px;
	color: var(--on-dark-body);
	line-height: 1.7;
	font-weight: 300;
}

.ps::after {
	content: attr(data-n);
	position: absolute;
	bottom: -16px;
	right: -8px;
	font-family: var(--body);
	font-size: 130px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.025);
	line-height: 1;
	pointer-events: none;
}

/* ══ COMPARISON ══ */
#comparison {
	background: var(--off);
}

.comp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 60px;
}

.comp-card {
	border-radius: 22px;
	overflow: hidden;
	border: 1.5px solid var(--border);
	background: var(--white);
}

.comp-card.feat {
	border-color: var(--ink);
}

.comp-head {
	padding: 26px 32px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.comp-card.feat .comp-head {
	background: var(--ink);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.comp-pname {
	font-family: var(--body);
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
}

.comp-card.feat .comp-pname {
	color: var(--white);
}

.cbadge {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 100px;
}

.cbadge.bad {
	background: rgba(239, 68, 68, 0.08);
	color: #dc2626;
}

.cbadge.good {
	background: rgba(0, 229, 160, 0.1);
	color: #009c6d;
}

.comp-rows {
}

.crow {
	display: flex;
	align-items: center;
	padding: 16px 32px;
	border-bottom: 1px solid var(--border);
	gap: 12px;
}

.crow:last-child {
	border-bottom: none;
}

.crow-lbl {
	flex: 1;
	font-size: 14px;
	color: var(--muted);
}

.crow-val {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 8px;
}

.cv-bad {
	color: #dc2626;
}

.cv-good {
	color: #009c6d;
}

.cvi {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

/* ══ TESTIMONIALS - Modern card wall ══ */
#testimonials {
	background: var(--white);
}

.testi-shell {
	background: var(--off);
	border-radius: 40px;
	padding: 80px 64px;
	border: 1px solid var(--border);
}

.testi-shell .kicker {
	justify-content: flex-start;
	margin-bottom: 14px;
}

.testi-shell .hl2 {
	margin-bottom: 44px;
}

.testi-grid {
	display: grid;
	grid-template-columns: 1.12fr 1fr 1fr;
	gap: 16px;
}

.tcard {
	border-radius: 24px;
	padding: 32px;
	border: 1.5px solid var(--border);
	background: var(--white);
	transition: all 0.35s;
	min-width: 0;
}

.tcard:hover {
	border-color: var(--ink);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.tcard-kpi-main {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	flex-direction: column;
}

.tcard-kpi-secondary {
	background: linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
}

.tcard-mini {
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.tcard-top-right {
	grid-column: 2 / 4;
	grid-row: 1;
}

.tcard-bottom-left {
	grid-column: 2;
	grid-row: 2;
}

.tcard-bottom-right {
	grid-column: 3;
	grid-row: 2;
}

.tcard-top-right,
.tcard-bottom-left,
.tcard-bottom-right {
	min-height: 220px;
	display: flex;
	flex-direction: column;
}

.tcard-top-right .tauthor,
.tcard-bottom-left .tauthor,
.tcard-bottom-right .tauthor {
	margin-top: auto;
}

.tcard-dark {
	background: var(--ink);
	border-color: transparent;
}

.tcard-dark .tbody {
	color: var(--on-dark-body);
}

.tcard-dark .tkpi-label {
	color: var(--white);
}

.tcard-dark .tbody strong,
.tcard-dark .ta-name {
	color: var(--white);
}

.tcard-dark .ta-role {
	color: var(--on-dark-muted);
}

.tkpi-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 18px;
}

.tkpi-val {
	font-size: clamp(44px, 6vw, 64px);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--ink);
}

.tkpi-label {
	font-size: 24px;
	line-height: 1.15;
	font-weight: 600;
	color: var(--ink2);
	max-width: 280px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tcard-kpi-main .tkpi-val {
	color: var(--violet);
}

.tcard-kpi-main .tkpi-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	margin-bottom: 12px;
}

.tcard-kpi-main .tkpi-label {
	max-width: none;
}

.tcard-kpi-secondary .tkpi-val {
	color: var(--green2);
}

.tcard-kpi .tbody {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.8;
}

.tcard-kpi-main .tauthor {
	margin-top: auto;
}

.tbody {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.8;
	font-style: italic;
	font-weight: 300;
	margin-bottom: 24px;
	position: relative;
	padding-left: 24px;
}

.tbody::before {
	content: '“';
	position: absolute;
	left: 0;
	top: -1px;
	font-size: 24px;
	line-height: 1;
	font-style: normal;
	font-weight: 700;
	color: var(--violet);
}

.tcard-dark .tbody::before {
	color: var(--green);
}

.tcard-kpi-secondary .tbody::before {
	color: var(--green);
}

.tcard-bottom-left .tbody::before {
	color: var(--green);
}

.tbody strong {
	color: var(--ink);
	font-style: normal;
	font-weight: 600;
}

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

.ta-av {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
	overflow: hidden;
}

.ta-av-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ta-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ta-role {
	font-size: 12px;
	color: var(--muted);
	margin-top: 4px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* ══ PRICING ══ */
#pricing {
	background: var(--off);
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 60px;
}

.price-card {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 22px;
	padding: 36px;
	transition: all 0.3s;
}

.price-card:hover {
	border-color: var(--ink);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.price-card.feat {
	background: var(--ink);
	border-color: transparent;
	position: relative;
	overflow: hidden;
}

.price-card.feat::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(0, 229, 160, 0.15), transparent 70%);
	pointer-events: none;
}

.pc-badge {
	display: inline-block;
	background: rgba(0, 229, 160, 0.12);
	color: #009c6d;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 20px;
}

.price-card.feat .pc-badge {
	background: rgba(0, 229, 160, 0.2);
	color: var(--green);
}

.pc-name {
	font-family: var(--body);
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 8px;
}

.price-card.feat .pc-name {
	color: var(--white);
}

.pc-desc {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 28px;
}

.price-card.feat .pc-desc {
	color: rgba(255, 255, 255, 0.72);
}

.pc-price {
	font-family: var(--body);
	font-size: 42px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 4px;
}

.pc-price.pc-price-text {
	font-size: clamp(28px, 3.2vw, 34px);
	letter-spacing: -0.02em;
}

.pc-price .pc-from {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-weight: 500;
	font-size: 0.62em;
	letter-spacing: 0;
	margin-right: 2px;
}

.price-card.feat .pc-price {
	color: var(--white);
}

.pc-per {
	font-size: 13px;
	color: var(--dim);
	margin-bottom: 28px;
}

.price-card.feat .pc-per {
	color: var(--on-dark-soft);
}

.pc-feats {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}

.pc-feat {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
}

.price-card.feat .pc-feat {
	color: var(--on-dark-muted);
}

.pf-check {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(0, 229, 160, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.price-card.feat .pf-check {
	background: rgba(0, 229, 160, 0.18);
}

.pf-check svg {
	width: 10px;
	height: 10px;
	stroke: var(--green);
	fill: none;
	stroke-width: 2.5;
}

.pc-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px;
	border-radius: 100px;
	font-family: var(--body);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	color: var(--ink);
	transition: all 0.25s;
	border: 1.5px solid var(--border);
}

.pc-btn:hover {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
	transform: translateY(-1px);
}

.price-card.feat .pc-btn {
	background: var(--green);
	color: var(--ink);
	border-color: transparent;
}

.price-card.feat .pc-btn:hover {
	background: var(--green2);
}

/* ══ WHY ══ */
#why {
	background: var(--white);
}

#why .why-qa-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-areas: 'qa-head qa-acc';
	column-gap: clamp(28px, 4vw, 48px);
	row-gap: 0;
	align-items: start;
	margin-bottom: 16px;
}

#why .why-qa-head {
	grid-area: qa-head;
	max-width: 560px;
	min-width: 0;
}

#why .why-qa-head .kicker {
	justify-content: flex-start;
	margin-bottom: 12px;
}

#why .why-qa-acc {
	grid-area: qa-acc;
	min-width: 0;
}

#why .why-qa-acc .talk-item {
	background: var(--white);
	color: var(--ink);
	border: 1.5px solid var(--border);
}

#why .why-qa-acc .talk-item:hover {
	border-color: rgba(12, 12, 14, 0.14);
}

#why .why-qa-acc .talk-item .talk-title {
	color: var(--ink);
}

#why .why-qa-acc .talk-item .talk-body p {
	color: var(--muted);
	opacity: 1;
}

#why .why-qa-acc .talk-item .talk-icon {
	background: var(--off);
	border: 1px solid var(--border);
}

#why .why-qa-head .hl2.why-qa-hl {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(2px, 0.6vw, 8px);
	margin: 0;
	max-width: 100%;
}

#why .why-qa-hl .why-qa-line {
	display: block;
	white-space: normal;
	max-width: 100%;
}

#why .why-qa-hl .why-qa-line-em em {
	font-style: italic;
	color: var(--green);
}

#why .why-qa-grid .talk-accordion {
	min-width: 0;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 60px;
}

.wcard {
	border-radius: 20px;
	padding: 32px;
	border: 1.5px solid var(--border);
	display: flex;
	gap: 18px;
	transition: all 0.3s;
	background: var(--white);
}

.wcard:hover {
	border-color: var(--ink);
	transform: translateY(-3px);
}

.wi {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
}

.wt {
	font-family: var(--body);
	font-size: 17px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 7px;
}

.wd {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 300;
}

/* Brand CTA banner (after testimonials): tighter gap above */
.sec.sec-brand-cta {
	padding-top: 44px;
	padding-bottom: 56px;
}

/* CTA card */
.why-cta {
	background: var(--ink);
	border-radius: 24px;
	padding: 52px 64px;
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.why-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 80% at 80% 50%, rgba(0, 229, 160, 0.07), transparent),
		radial-gradient(ellipse 40% 60% at 10% 80%, rgba(124, 58, 237, 0.06), transparent);
}

.wct-title {
	font-family: var(--body);
	font-size: clamp(26px, 3.5vw, 48px);
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	letter-spacing: -0.03em;
	position: relative;
}

.wct-title em {
	font-style: italic;
	color: var(--green);
}

.wct-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.72);
	margin-top: 14px;
	font-weight: 300;
	line-height: 1.65;
	position: relative;
	max-width: 34ch;
}

.rings {
	position: absolute;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
	width: 280px;
	height: 280px;
	pointer-events: none;
}

.ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(0, 229, 160, 0.07);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.r1 {
	width: 140px;
	height: 140px;
	animation: rEx 4s linear infinite;
}

.r2 {
	width: 210px;
	height: 210px;
	animation: rEx 4s 1.3s linear infinite;
}

.r3 {
	width: 280px;
	height: 280px;
	animation: rEx 4s 2.6s linear infinite;
}

@keyframes rEx {
	0% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(0.7);
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

.wct-action {
	position: relative;
	flex-shrink: 0;
	text-align: center;
}

.wct-btn {
	font-size: 14px !important;
	padding: 14px 28px !important;
	min-width: 0;
}

.wct-note {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.58);
	margin-top: 12px;
}

/* ══ CONTACT ══ */
#contact {
	background: var(--off);
}

.contact-page #contact {
	position: relative;
	overflow: hidden;
}

.contact-page #contact::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 48% 60% at 88% 18%, rgba(124, 58, 237, 0.14), transparent 72%),
		radial-gradient(ellipse 36% 44% at 12% 84%, rgba(124, 58, 237, 0.1), transparent 70%);
}

.contact-page #contact > .mwrap {
	position: relative;
	z-index: 1;
}

.contact-page #hero.contact-hero {
	position: relative;
	min-height: 100vh;
	height: auto;
	overflow: hidden;
	background: #fff;
}

.contact-page #hero.contact-hero::before {
	content: none;
}

.contact-page #hero.contact-hero #hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.contact-page #hero.contact-hero > .mwrap {
	position: relative;
	z-index: 1;
}

.contact-page .hl2,
.contact-page .pc-desc,
.contact-page .cdet,
.contact-page .cdet a {
	color: #0e0e13;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.contact-page .ci-kicker {
	color: rgba(12, 12, 14, 0.76);
}

.contact-page #hero .hl2 {
	margin-top: 16px;
	margin-bottom: 20px;
}

.contact-page #hero .hl2 em {
	color: var(--violet);
}

.contact-page #hero .pc-desc {
	margin-bottom: 36px;
}

.cont-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 80px;
	align-items: start;
}

.cont-hl {
	font-family: var(--body);
	font-size: clamp(34px, 4.2vw, 56px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.04em;
	color: var(--ink);
	margin-bottom: 20px;
	margin-top: 16px;
}

.cont-hl em {
	font-style: italic;
	color: var(--violet);
}

.cont-body {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 36px;
}

.cont-dets {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.cdet {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
	color: var(--ink);
}

.cdet svg {
	width: 15px;
	height: 15px;
	stroke: var(--violet);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.cdet a {
	color: var(--ink);
	text-decoration: none;
}

.cdet a:hover {
	text-decoration: underline;
}

.talk-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.talk-item {
	border-radius: 20px;
	padding: 28px 32px;
	cursor: pointer;
	transition: all 0.4s var(--ease);
	overflow: hidden;
	position: relative;
}

.talk-item:hover {
	transform: translateY(-2px);
}

.talk-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
}

.talk-title {
	font-family: var(--body);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.25;
	text-wrap: balance;
	color: inherit;
}

.talk-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.talk-item.dark .talk-icon {
	background: rgba(255, 255, 255, 0.15);
}

.talk-item.dark .talk-title {
	color: var(--white);
}

.talk-icon svg {
	width: 16px;
	height: 16px;
	stroke: var(--ink);
	stroke-width: 2.5;
	fill: none;
	position: absolute;
	transition: all 0.4s var(--ease);
}

.talk-item.dark .talk-icon svg {
	stroke: var(--white);
}

.talk-icon .t-minus {
	opacity: 0;
	transform: scale(0.88);
}

.talk-item.open .talk-icon .t-plus {
	opacity: 0;
	transform: scale(0.88);
}

.talk-item.open .talk-icon .t-minus {
	opacity: 1;
	transform: scale(1);
}

.talk-body {
	max-height: 0;
	opacity: 0;
	transition: all 0.5s var(--ease);
	visibility: hidden;
}

.talk-item.open .talk-body {
	max-height: 250px;
	opacity: 1;
	margin-top: 20px;
	visibility: visible;
}

.talk-body p {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.8;
	margin-bottom: 24px;
	font-weight: 400;
	max-width: 90%;
}

.talk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--ink);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.25s;
	border: 1.5px solid transparent;
}

.talk-btn:hover {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}

.talk-item.dark .talk-body p {
	color: var(--white);
}

.talk-item.dark .talk-btn {
	background: var(--white);
	color: var(--ink);
}

.talk-item.dark .talk-btn:hover {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

/* Contact page split: actions left, Calendly right */
.contact-left-actions {
	margin-top: 18px;
}

.contact-left-col {
	min-width: 0;
}

.contact-calendly {
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 20px;
	overflow: hidden;
	min-width: 0;
	backdrop-filter: blur(16px) saturate(165%);
	-webkit-backdrop-filter: blur(16px) saturate(165%);
	box-shadow:
		0 18px 48px rgba(32, 17, 65, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.78);
	transition:
		backdrop-filter 0.45s var(--ease),
		-webkit-backdrop-filter 0.45s var(--ease),
		box-shadow 0.45s var(--ease),
		background 0.45s var(--ease);
}

.contact-calendly:not(.glass-ready) {
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(6px) saturate(120%);
	-webkit-backdrop-filter: blur(6px) saturate(120%);
	box-shadow:
		0 10px 28px rgba(32, 17, 65, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.contact-calendly-head {
	padding: 20px 22px 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
}

.contact-calendly-head h3 {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 6px;
}

.contact-calendly-head p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 14px;
}

.contact-calendly iframe {
	width: 100%;
	height: 920px;
	border: 0;
	display: block;
	background: transparent;
}

/* ══ FOOTER ══ */
.site-footer {
	background: #000000;
	padding: 80px 64px 48px;
}

.foot-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 56px;
	max-width: 1400px;
	margin: 0 auto 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fl-logo {
	font-family: var(--body);
	font-size: 22px;
	font-weight: 800;
	color: var(--white);
	text-decoration: none;
	letter-spacing: -0.04em;
	display: block;
	margin-bottom: 14px;
}

.fl-logo-img {
	display: block;
	height: 24px;
	width: auto;
}

.fl-logo span {
	color: var(--green);
	font-style: normal;
	margin-left: 0.08em;
	font-size: 1.18em;
	line-height: 1;
}

.fl-desc {
	font-size: 14px;
	color: var(--on-dark-soft);
	line-height: 1.75;
	max-width: 250px;
	font-weight: 300;
}

.fl-mail {
	margin-bottom: 14px;
}

.fl-mail a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.2s;
}

.fl-mail svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.fl-mail a:hover {
	color: var(--white);
}

.fcol-t {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 18px;
}

.flinks {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.flinks a {
	color: var(--white);
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.2s;
}

.flinks a:hover {
	text-decoration: underline;
	opacity: 0.9;
}

.foot-bot {
	max-width: 1400px;
	margin: 60px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fcopy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.fsocs {
	display: flex;
	gap: 10px;
}

.fsoc {
	width: 38px;
	height: 38px;
	border: 1px solid var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--green);
	transition: all 0.25s;
}

.fsoc:hover {
	border-color: var(--green);
	color: var(--green);
	transform: translateY(-2px);
}

.fsoc svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.foot-big {
	font-family: var(--body);
	font-size: clamp(72px, 11vw, 160px);
	font-weight: 800;
	color: rgba(255, 255, 255, 0.1);
	letter-spacing: -0.05em;
	text-align: center;
	line-height: 1;
	padding: 40px 0 16px;
	max-width: 1400px;
	margin: 0 auto;
	overflow: hidden;
	white-space: nowrap;
}

/* ══ AI VISUAL COMBINED ══ */
.ai-vis-main {
	position: relative;
	border-radius: 0;
	overflow: visible;
	aspect-ratio: auto;
	background: transparent;
	flex-shrink: 0;
	min-width: 0;
	max-width: 100%;
}

.ai-terminal {
	position: relative;
	background: rgba(5, 5, 8, 0.88);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 229, 160, 0.18);
	border-radius: 12px;
	overflow: hidden;
	font-family: monospace;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.at-bar {
	background: rgba(255, 255, 255, 0.04);
	padding: 8px 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.atb {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.atb.r {
	background: #ff5f57;
}

.atb.y {
	background: #febc2e;
}

.atb.g {
	background: #28c840;
}

.at-bar-title {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	margin-left: 8px;
}

.at-body {
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-height: 108px;
	min-width: 0;
}

.at-line {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-size: 11px;
	line-height: 1.5;
	min-width: 0;
}

.at-prompt {
	color: var(--green);
	font-weight: 700;
	flex-shrink: 0;
}

.at-cmd {
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.at-res {
	padding-left: 14px;
}

.at-out {
	color: rgba(0, 229, 160, 0.75);
	font-size: 10px;
	line-height: 1.55;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.at-cursor-line {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 3px;
}

.at-blink {
	color: var(--green);
	animation: blink-c 0.8s infinite;
	font-size: 13px;
}

@keyframes blink-c {
	0%,
	49% {
		opacity: 1;
	}

	50%,
	100% {
		opacity: 0;
	}
}

/* Tool list strip */
.ai-tools-list {
	margin-top: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 18px 20px;
}

.atl-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.25);
	margin-bottom: 14px;
}

.atl-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.atl-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	transition: all 0.25s;
}

.atl-item.active {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.7);
}

.atl-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ══ WHY BENTO ══ */
.why-bento {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.wb-card {
	border-radius: 20px;
	padding: 28px;
	border: 1.5px solid var(--border);
	background: var(--white);
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.wb-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.wb-dark {
	background: var(--ink);
	border-color: transparent;
}

.wb-dark:hover {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.wb-light {
	background: var(--off);
	border-color: var(--border);
}

.wb-green-glow {
	background: var(--white);
	border-color: rgba(0, 229, 160, 0.2);
	grid-column: span 2;
}

.wb-green-glow:hover {
	border-color: rgba(0, 229, 160, 0.4);
}

.wb-accent-strip {
	grid-column: span 2;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: var(--green);
	border-color: transparent;
	padding: 24px 32px;
}

.wb-accent-strip:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(0, 229, 160, 0.25);
}

.wb-tall {
	min-height: 280px;
}

.wb-icon-wrap {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wb-dark .wb-icon-wrap {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.08);
}

.wb-light .wb-icon-wrap {
	background: rgba(12, 12, 14, 0.06);
	border-color: rgba(12, 12, 14, 0.08);
}

.wb-icon-wrap svg {
	stroke: rgba(255, 255, 255, 0.55);
}

.wb-dark .wb-icon-wrap svg,
.wb-dark svg {
	stroke: rgba(255, 255, 255, 0.5);
}

.wb-light .wb-icon-wrap svg,
.wb-light svg {
	stroke: var(--muted);
}

.wb-green-glow .wb-icon-wrap svg {
	stroke: var(--green);
}

.wb-big-num {
	font-family: var(--body);
	font-size: 48px;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	letter-spacing: -0.04em;
}

.wb-big-num span {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.01em;
	margin-top: 4px;
	font-family: var(--body);
}

.wb-title {
	font-family: var(--body);
	font-size: 18px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
}

.wb-dark .wb-title {
	color: var(--white);
}

.wb-light .wb-title,
.wb-green-glow .wb-title {
	color: var(--ink);
}

.wb-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.38);
	line-height: 1.7;
	font-weight: 300;
}

.wb-dark .wb-desc {
	color: rgba(255, 255, 255, 0.38);
}

.wb-light .wb-desc,
.wb-green-glow .wb-desc {
	color: var(--muted);
}

.wb-green-glow .wb-desc {
	color: rgba(12, 12, 14, 0.6);
}

.wb-metric {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wb-light .wb-metric,
.wb-green-glow .wb-metric {
	border-top-color: var(--border);
}

.wb-m-num {
	font-family: var(--body);
	font-size: 36px;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	letter-spacing: -0.04em;
}

.wb-light .wb-m-num,
.wb-green-glow .wb-m-num {
	color: var(--ink);
}

.wb-m-lbl {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.3);
}

.wb-light .wb-m-lbl,
.wb-green-glow .wb-m-lbl {
	color: var(--muted);
}

.wb-strip-left {
	display: flex;
	align-items: center;
	gap: 18px;
}

.wb-strip-badge {
	font-family: var(--body);
	font-size: 28px;
	font-weight: 800;
	color: rgba(12, 12, 14, 0.4);
	text-align: center;
	line-height: 1.1;
	flex-shrink: 0;
}

.wb-strip-badge span {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wb-tool-row {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	margin-top: auto;
}

.wb-tool {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
	#why .why-qa-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			'qa-head'
			'qa-acc';
		row-gap: clamp(28px, 4vw, 40px);
	}

	.why-bento {
		grid-template-columns: 1fr;
	}

	.wb-accent-strip {
		grid-column: span 1;
		flex-direction: column;
		align-items: flex-start;
	}

	.wb-green-glow {
		grid-column: span 1;
	}

	.wb-strip-badge {
		display: none;
	}
}

::-webkit-scrollbar {
	width: 3px;
}

::-webkit-scrollbar-track {
	background: var(--off);
}

::-webkit-scrollbar-thumb {
	background: var(--dim);
	border-radius: 2px;
}

/* ══ TOOL LINK PREVIEWS ══ */
.tool-link-wrap {
	position: relative;
	display: inline-block;
}

.tool-link {
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
	padding-bottom: 1px;
	transition:
		border-color 0.2s,
		color 0.2s;
}

.tool-link:hover {
	color: var(--green);
	border-color: var(--green);
}

.tool-link-dark {
	color: var(--green);
	border-color: rgba(0, 229, 160, 0.4);
}

.tool-link-dark:hover {
	color: var(--green);
	border-color: var(--green);
}

.tool-preview {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	width: 240px;
	background: var(--white);
	border-radius: 14px;
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.22s var(--ease),
		transform 0.22s var(--ease);
	z-index: 300;
}

.tool-link-wrap:hover .tool-preview {
	opacity: 1;
	pointer-events: all;
	transform: translateX(-50%) translateY(0);
}

/* Variant that opens upward from within dark card */
.tool-preview-up {
	bottom: calc(100% + 12px);
	top: auto;
}

.tp-img {
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.tp-img svg {
	width: 72px;
	height: auto;
	display: block;
}

.tp-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tp-name {
	font-family: var(--body);
	font-size: 14px;
	font-weight: 800;
	color: var(--ink);
}

.tp-desc {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.55;
	font-weight: 300;
}

.tp-url {
	font-size: 11px;
	font-weight: 700;
	color: var(--green);
	margin-top: 4px;
	letter-spacing: 0.02em;
}

/* Clickable pill links */
.spill-link {
	text-decoration: none;
	cursor: pointer;
}

.spill.good.spill-link:hover {
	background: rgba(0, 229, 160, 0.15);
	border-color: rgba(0, 229, 160, 0.35);
	transform: translateY(-1px);
}

/* Updated split-center - clean VS divider */
.split-vs {
	font-family: var(--body);
	font-size: 13px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.12em;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	user-select: none;
}

.split-card {
	display: grid;
	grid-template-columns: 1fr 52px 1fr;
	gap: 0;
	border-radius: 28px;
	overflow: visible;
	border: 1.5px solid var(--border);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
	isolation: isolate;
}

/* LEFT - light */
.split-left {
	background: var(--white);
	padding: 52px 44px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-radius: 28px 0 0 28px;
	border-right: none;
}

.split-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dim);
	padding: 5px 14px;
	background: var(--off);
	border-radius: 100px;
	width: fit-content;
}

.split-hl-l {
	font-family: var(--body);
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.split-body-l {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.75;
	font-weight: 300;
}

.split-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.spill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 100px;
}

.spill::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.spill.bad {
	background: rgba(239, 68, 68, 0.07);
	color: #b91c1c;
	border: 1px solid rgba(239, 68, 68, 0.15);
}

.spill.bad::before {
	background: #ef4444;
}

.spill.good {
	background: rgba(0, 229, 160, 0.08);
	color: #047857;
	border: 1px solid rgba(0, 229, 160, 0.2);
}

.spill.good::before {
	background: var(--green);
}

.split-rows {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: auto;
}

.srow {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	gap: 12px;
}

.srow:last-child {
	border-bottom: none;
}

.srow-lbl {
	font-size: 13px;
	color: var(--dim);
	width: 100px;
	flex-shrink: 0;
	font-weight: 500;
}

.srow-val {
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 7px;
}

.srow-val.bad {
	color: #dc2626;
}

.srow-val.bad svg {
	stroke: #dc2626;
}

/* CENTER - VS divider */
.split-center {
	background: var(--ink2);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	width: 52px;
	flex-shrink: 0;
}

.split-center::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: linear-gradient(
		to bottom,
		transparent,
		rgba(255, 255, 255, 0.08) 20%,
		rgba(255, 255, 255, 0.08) 80%,
		transparent
	);
}

#bubble-canvas {
	display: none;
}

/* RIGHT - dark */
.split-right {
	background: var(--ink);
	padding: 52px 44px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	overflow: visible;
	border-radius: 0 28px 28px 0;
}

.split-right::after {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(0, 229, 160, 0.1), transparent 70%);
	pointer-events: none;
	border-radius: 0 28px 0 0;
}

.split-eyebrow-r {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green);
	padding: 5px 14px;
	background: rgba(0, 229, 160, 0.1);
	border: 1px solid rgba(0, 229, 160, 0.2);
	border-radius: 100px;
	width: fit-content;
}

.split-hl-r {
	font-family: var(--body);
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--white);
}

.split-body-r {
	font-size: 14px;
	color: var(--on-dark-muted);
	line-height: 1.75;
	font-weight: 300;
}

.split-rows-r {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: auto;
}

.srow-r {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	gap: 12px;
}

.srow-r:last-child {
	border-bottom: none;
}

.srow-lbl-r {
	font-size: 13px;
	color: var(--on-dark-soft);
	width: 100px;
	flex-shrink: 0;
	font-weight: 500;
}

.srow-val-r {
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 7px;
}

.srow-val-r.good-r {
	color: var(--green);
}

.srow-val-r.good-r svg {
	stroke: var(--green);
}

.split-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--green);
	color: var(--ink);
	font-family: var(--body);
	font-size: 14px;
	font-weight: 800;
	padding: 13px 24px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.25s;
	width: fit-content;
	margin-top: 8px;
	position: relative;
}

.split-cta:hover {
	background: var(--green2);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 229, 160, 0.3);
}

/* Responsive */
@media (max-width: 1100px) {
	.split-card {
		grid-template-columns: 1fr;
		border-radius: 20px;
	}

	.split-center {
		height: 220px;
	}

	#bubble-canvas {
		height: 100%;
	}
}

@media (max-width: 768px) {
	.split-left,
	.split-right {
		padding: 36px 28px;
	}
}

.agency-tools {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.tool-card {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 20px;
	padding: 28px;
	transition: all 0.3s;
	cursor: default;
}

.tool-card:hover {
	border-color: var(--ink);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.tool-card.featured-tool {
	border-color: var(--ink);
	background: var(--ink);
}

.tool-card.featured-tool .tc-name {
	color: var(--white);
}

.tool-card.featured-tool .tc-role {
	color: rgba(255, 255, 255, 0.3);
}

.tool-card.featured-tool .tc-desc {
	color: rgba(255, 255, 255, 0.72);
}

.tool-card.featured-tool .tcp {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.5);
}

.tc-logo {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	margin-bottom: 18px;
	overflow: hidden;
}

.tc-logo svg {
	width: 100%;
	height: 100%;
	display: block;
}

.tc-name {
	font-family: var(--body);
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 4px;
}

.tc-role {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dim);
	margin-bottom: 14px;
}

.tc-desc {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 18px;
}

.tc-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tcp {
	background: var(--light);
	border-radius: 100px;
	padding: 4px 11px;
	font-size: 11px;
	font-weight: 600;
	color: var(--muted);
}

.agency-adv {
	background: var(--ink);
	border-radius: 24px;
	padding: 60px;
	margin-top: 20px;
}

.aa-head {
	margin-bottom: 48px;
}

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

.aa-icon {
	font-size: 28px;
	margin-bottom: 14px;
	display: block;
}

.aa-title {
	font-family: var(--body);
	font-size: 17px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 8px;
}

/* Unified heading hierarchy across sections/components */
.hl2,
.ai-hl,
.proc-hl,
.cont-hl {
	letter-spacing: -0.035em;
}

.hl2 {
	font-size: clamp(36px, 4.2vw, 60px);
	line-height: 1.13;
}

.ai-hl,
.proc-hl {
	font-size: clamp(35px, 4.1vw, 58px);
	line-height: 1.13;
}

.cont-hl {
	font-size: clamp(33px, 3.9vw, 54px);
	line-height: 1.14;
}

.sc-name,
.pc-port-title,
.pc-name,
.talk-title,
.wt,
.wb-title {
	letter-spacing: -0.02em;
}

.pc-port-title,
.pc-name {
	font-size: clamp(19px, 1.9vw, 23px);
	line-height: 1.2;
}

.sc-name {
	font-size: clamp(20px, 1.8vw, 22px);
}

.talk-title {
	font-size: clamp(20px, 1.8vw, 23px);
	line-height: 1.24;
}

.wt,
.wb-title,
.aa-title {
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.25;
}

.aa-desc {
	font-size: 13px;
	color: var(--on-dark-muted);
	line-height: 1.7;
	font-weight: 300;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
	.nav-links a {
		padding: 7px 12px;
	}

	.sec {
		padding: 100px 32px;
	}

	.sec.sec-brand-cta {
		padding-top: 32px;
		padding-bottom: 44px;
	}

	.stats-inner {
		padding: 0 32px;
	}

	.foot-top {
		padding: 0 32px 56px;
	}

	#hero .hero-inner {
		padding: 0 32px 80px;
	}

	.about-grid,
	.ai-grid,
	.cont-grid,
	.svc-head,
	.why-cta {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.why-cta {
		padding: 40px 36px;
	}

	.wct-btn {
		font-size: 14px !important;
		padding: 13px 24px !important;
	}

	.why-cta .rings {
		display: none;
	}

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

	.sc.wide {
		grid-column: span 2;
	}

	.proc-steps {
		grid-template-columns: 1fr 1fr;
		gap: 2px;
	}

	.agency-tools {
		grid-template-columns: 1fr 1fr;
	}

	.aa-grid {
		grid-template-columns: 1fr 1fr;
	}

	.agency-adv {
		padding: 36px 28px;
	}

	.testi-grid {
		grid-template-columns: 1fr;
	}

	.testi-shell {
		padding: 28px 16px;
	}

	.testi-shell {
		padding: 56px 40px;
		border-radius: 30px;
	}

	.tcard-kpi-main {
		grid-row: auto;
	}

	.tcard-top-right,
	.tcard-bottom-left,
	.tcard-bottom-right {
		grid-column: auto;
		grid-row: auto;
		min-height: 0;
	}

	.price-grid {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.why-cta {
		grid-column: span 1;
	}

	.proj-scroll {
		margin: 0 -32px;
		padding: 12px 40px 20px;
	}

	.sblock {
		padding: 32px 0 32px 28px;
	}

	.site-footer {
		padding: 60px 32px 40px;
	}

	.foot-top {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	#about .av-w1 {
		right: -10px;
	}

	.about-visual .av-w2 {
		left: -10px;
	}

	.frow {
		grid-template-columns: 1fr;
	}

	.hl2,
	.ai-hl,
	.proc-hl,
	.cont-hl {
		font-size: clamp(32px, 6.4vw, 46px);
		line-height: 1.15;
	}

	.pc-port-title,
	.pc-name,
	.sc-name,
	.talk-title {
		font-size: clamp(18px, 2.9vw, 21px);
	}

	.wt,
	.wb-title,
	.aa-title {
		font-size: clamp(17px, 2.4vw, 19px);
	}
}

@media (max-width: 768px) {
	.line-lock {
		white-space: normal;
	}

	.nav-wrap {
		top: max(10px, env(safe-area-inset-top));
		padding: 0 10px;
	}

	nav {
		padding: 7px 7px 7px 13px;
		position: relative;
		width: 100%;
		max-width: 100%;
		justify-content: space-between;
		border-radius: 18px;
		gap: 8px;
		background: rgba(255, 255, 255, 0.58);
		border: 1px solid rgba(255, 255, 255, 0.62);
		box-shadow:
			0 16px 44px rgba(0, 0, 0, 0.16),
			inset 0 1px 0 rgba(255, 255, 255, 0.62);
		backdrop-filter: blur(22px) saturate(190%);
		-webkit-backdrop-filter: blur(22px) saturate(190%);
		transform: none;
		opacity: 1;
	}

	.nav-logo {
		font-size: 14px;
		font-weight: 800;
	}

	.nav-logo-img {
		height: 18px;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
		width: 36px;
		height: 36px;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.8);
		border: 1px solid rgba(255, 255, 255, 0.76);
		backdrop-filter: blur(12px) saturate(170%);
		-webkit-backdrop-filter: blur(12px) saturate(170%);
	}

	.nav-cta {
		display: none;
		margin-left: auto;
		margin-right: 4px;
		white-space: nowrap;
	}

	.nav-links {
		position: absolute;
		top: calc(100% + 9px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		padding: 12px;
		background: #ffffff;
		border: 1px solid rgba(12, 12, 14, 0.08);
		border-radius: 18px;
		box-shadow:
			0 18px 46px rgba(0, 0, 0, 0.12),
			inset 0 1px 0 rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(22px) saturate(190%);
		-webkit-backdrop-filter: blur(22px) saturate(190%);
	}

	nav.menu-open .nav-links {
		display: flex;
	}

	.nav-pill-indicator {
		display: none;
	}

	.nav-links a {
		color: var(--ink);
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(12, 12, 14, 0.06);
		border-radius: 12px;
		padding: 12px 14px;
		font-size: 13px;
		font-weight: 700;
	}

	.nav-links li:not(.nav-mobile-call) a {
		background: rgba(255, 255, 255, 0.5);
		border-color: rgba(12, 12, 14, 0.08);
	}

	.nav-links .nav-mobile-call a {
		background: linear-gradient(135deg, var(--ink), #2a2142);
		color: var(--white);
		border-color: transparent;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 4px;
		box-shadow: 0 10px 24px rgba(20, 16, 34, 0.28);
	}

	.nav-links .nav-mobile-call {
		display: block;
	}

	.nav-lang {
		padding-left: 0;
		width: 100%;
	}

	.lang-dd {
		width: 100%;
	}

	.lang-dd__btn {
		width: 100%;
		justify-content: space-between;
		border-radius: 12px;
		padding: 12px 14px;
		font-weight: 800;
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(12, 12, 14, 0.06);
	}

	.lang-dd__menu {
		left: 0;
		right: 0;
		min-width: 0;
	}

	.nav-links .nav-mobile-call .nav-avail-dot {
		width: 7px;
		height: 7px;
	}

	.nav-links .nav-mobile-call a:hover,
	.nav-links .nav-mobile-call a.active {
		background: linear-gradient(135deg, #100f16, #37285d);
		color: var(--white);
	}

	.nav-links a.active,
	nav:hover .nav-links a:hover {
		color: var(--white);
		background: var(--ink);
	}

	.nav-links li:not(.nav-mobile-call) a.active,
	.nav-links li:not(.nav-mobile-call) a:hover {
		color: var(--white);
		background: var(--ink);
		border-color: var(--ink);
	}

	nav.menu-open .nav-toggle span:nth-child(1) {
		transform: translateY(5.8px) rotate(45deg);
	}

	nav.menu-open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	nav.menu-open .nav-toggle span:nth-child(3) {
		transform: translateY(-5.8px) rotate(-45deg);
	}

	.stats-inner {
		grid-template-columns: 1fr 1fr;
		padding: 0 24px;
	}

	.sblock {
		padding: 24px 0 24px 20px;
		border-right: none;
		border-bottom: 1px solid var(--border);
	}

	.sblock:nth-child(odd) {
		border-right: 1px solid var(--border);
		padding-left: 0;
		padding-right: 16px;
	}

	.sblock:nth-child(even) {
		padding-left: 16px;
	}

	.sblock:nth-child(n + 3) {
		border-bottom: none;
	}

	.agency-tools {
		grid-template-columns: 1fr;
	}

	.aa-grid {
		grid-template-columns: 1fr;
	}

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

	.sc.wide {
		grid-column: span 1;
	}

	.proc-steps {
		grid-template-columns: 1fr;
	}

	.testi-grid {
		grid-template-columns: 1fr;
	}

	.price-grid {
		grid-template-columns: 1fr;
	}

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

	#projects .pc {
		width: 100%;
		max-width: 100%;
		cursor: default;
	}

	.proj-track,
	.proj-featured-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		transform: none !important;
		transition: none !important;
		will-change: auto;
	}

	.proj-scroll {
		margin: 0;
		padding: 0;
		overflow: visible;
		cursor: default;
		touch-action: auto;
		user-select: auto;
	}

	.pc-port-foot > * {
		min-width: 0;
	}

	.pc-port-desc {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.proj-nav {
		display: none;
	}

	.hero-inner {
		padding: 112px 24px 80px !important;
		justify-content: center;
		align-items: flex-start;
	}

	.scroll-cue {
		display: none;
	}

	.hero-hl {
		font-size: clamp(44px, 13vw, 66px);
		text-align: left;
	}

	.hero-sub {
		font-size: 15px;
		line-height: 1.72;
		color: rgba(255, 255, 255, 0.62);
		max-width: 36ch;
		text-align: left;
	}

	.hero-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.hero-acts {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.sec {
		padding: 80px 24px !important;
	}

	.sec.sec-brand-cta {
		padding-top: 22px !important;
		padding-bottom: 32px !important;
	}

	.talk-item {
		padding: 22px 20px;
		border-radius: 16px;
	}

	.talk-title {
		font-size: 18px;
	}

	.wct-title {
		font-size: clamp(34px, 9.2vw, 44px);
		line-height: 1.12;
	}

	.wct-sub {
		font-size: 15px;
		line-height: 1.62;
		max-width: 30ch;
	}

	.wct-btn {
		font-size: 13px !important;
		padding: 12px 22px !important;
	}

	.hl2,
	.ai-hl,
	.proc-hl,
	.cont-hl {
		font-size: clamp(30px, 9vw, 38px);
		line-height: 1.16;
	}

	.sc-name,
	.pc-port-title,
	.pc-name {
		font-size: clamp(19px, 5.1vw, 22px);
		line-height: 1.22;
	}

	.talk-title,
	.wt,
	.wb-title,
	.aa-title {
		font-size: clamp(17px, 4.6vw, 20px);
		line-height: 1.28;
	}

	.talk-body p {
		max-width: 100%;
	}

	.cont-grid {
		gap: 36px;
	}

	.site-footer {
		padding: 52px 24px 32px;
	}

	.foot-top {
		padding: 0 0 40px 0 !important;
		gap: 28px;
		margin-bottom: 32px;
	}

	.fl-desc {
		max-width: 100%;
	}

	.foot-bot {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.foot-big {
		font-size: clamp(40px, 16vw, 70px);
		white-space: normal;
		line-height: 1.05;
		padding: 26px 0 8px;
	}

	.testi-shell {
		border-radius: 24px;
		padding: 36px 20px;
	}

	.testi-grid .tcard {
		padding: 24px 20px;
	}

	.tkpi-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.tkpi-label {
		font-size: 20px;
		max-width: 100%;
	}

	.tcard-kpi .tbody {
		font-size: 16px;
		margin-bottom: 22px;
	}

	.about-visual .av-w1,
	.about-visual .av-w2 {
		display: none;
	}
}
