﻿/*
Theme Name: Shaika Business
Theme URI: http://localhost:8080
Author: Shaika
Description: Premium dark business theme for a digital studio.
Version: 2.0.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: shaika-business
*/

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
	--bg: #050505;
	--bg-soft: #0b0b0b;
	--panel: rgba(18, 18, 18, 0.82);
	--panel-solid: #121212;
	--panel-border: rgba(255, 255, 255, 0.08);
	--line: rgba(255, 255, 255, 0.08);
	--text: #f3f4f6;
	--muted: #9ca3af;
	--muted-2: #6b7280;
	--emerald: #10b981;
	--emerald-strong: #059669;
	--gold: #f59e0b;
	--graphite: #1f2937;
	--navy: #253047;
	--shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
	--radius: 28px;
	--radius-sm: 18px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 0 0, rgba(16, 185, 129, 0.12), transparent 28%),
		radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.12), transparent 24%),
		var(--bg);
	color: var(--text);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 17px;
	line-height: 1.54;
	letter-spacing: 0;
	overflow-x: hidden;
}

body::before,
body::after {
	position: fixed;
	z-index: -1;
	content: "";
	filter: blur(120px);
	border-radius: 999px;
	pointer-events: none;
	animation: ambientFloat 18s ease-in-out infinite;
}

body::before {
	top: -10%;
	left: -10%;
	width: 32rem;
	height: 32rem;
	background: rgba(16, 185, 129, 0.12);
}

body::after {
	right: -8%;
	bottom: -12%;
	width: 30rem;
	height: 30rem;
	background: rgba(245, 158, 11, 0.1);
	animation-duration: 24s;
	animation-direction: alternate;
}

body.theme-light {
	--bg: #f3f6f8;
	--bg-soft: #eaf0f4;
	--panel: rgba(255, 255, 255, 0.86);
	--panel-solid: #ffffff;
	--panel-border: rgba(15, 23, 42, 0.12);
	--line: rgba(15, 23, 42, 0.12);
	--text: #0f172a;
	--muted: #475569;
	--muted-2: #64748b;
	--shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
	background:
		radial-gradient(circle at 0 0, rgba(16, 185, 129, 0.1), transparent 28%),
		radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.12), transparent 24%),
		var(--bg);
}

body.theme-light::before {
	background: rgba(16, 185, 129, 0.16);
}

body.theme-light::after {
	background: rgba(245, 158, 11, 0.16);
}

body.theme-light .topbar {
	background: rgba(255, 255, 255, 0.84);
	border-bottom-color: rgba(15, 23, 42, 0.08);
}

body.theme-light .nav__list {
	background: rgba(255, 255, 255, 0.78);
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.02);
}

body.theme-light .nav__list a {
	color: #334155;
}

body.theme-light .nav__list .sub-menu {
	background: rgba(255, 255, 255, 0.98);
}

body.theme-light .theme-toggle {
	color: var(--muted);
}

body.theme-light .theme-toggle:hover {
	color: #059669;
}

@keyframes ambientFloat {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.8;
	}
	50% {
		transform: translate3d(18px, -12px, 0) scale(1.04);
		opacity: 1;
	}
	100% {
		transform: translate3d(-14px, 10px, 0) scale(0.98);
		opacity: 0.76;
	}
}

body.admin-bar .topbar {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
}

.site-shell,
.inner-page {
	min-height: 100vh;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(8, 8, 8, 0.78);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- Offer Strip (service hero banner) ---- */

@keyframes offerPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
	50%       { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

@keyframes offerSweep {
	0%   { transform: translateX(-160%); }
	100% { transform: translateX(260%); }
}


.price-card__price-wrap {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.price-card__old {
	font-size: 15px;
	color: var(--muted-2);
	text-decoration: line-through;
}

.topbar__inner,
.section__inner,
.page-hero__inner,
.content-body,
.article__inner,
.article__body,
.footer__inner {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 18px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.brand__mark {
	display: grid;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	flex-shrink: 0;
	align-self: center;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #10b981, #065f46);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.brand__mark--morph {
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	transform: translateZ(0);
	background: transparent;
	box-shadow: none;
	isolation: isolate;
}

.brand__morph-outer,
.brand__morph-inner {
	position: absolute;
	will-change: border-radius;
}

.brand__morph-outer {
	inset: -1px;
	background: conic-gradient(
		from 0deg,
		#00e599   0%,
		#06b6d4  18%,
		#7b2fff  34%,
		#e040fb  48%,
		#ff6b35  60%,
		#ffcc00  70%,
		#ffffff  75%,
		#ffcc00  80%,
		#06b6d4  90%,
		#00e599 100%
	);
	animation: logoMorphOuter 3.8s ease-in-out infinite alternate,
	           plasmaStream 4s linear infinite;
}

.brand__morph-inner {
	inset: 4px;
	background: #0f0f0f;
	display: grid;
	place-items: center;
	animation: logoMorphInner 2.9s ease-in-out infinite alternate;
}

body.theme-light .brand__morph-inner {
	background: #f8fafc;
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

body.theme-light .brand__morph-dot {
	background: #0f172a;
}

.brand__morph-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #ffffff;
	transition: transform 360ms ease;
}

.brand:hover .brand__morph-dot {
	transform: scale(1.45);
}

@keyframes logoMorph {
	0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
	15%  { border-radius: 42% 58% 38% 62% / 62% 38% 58% 42%; }
	30%  { border-radius: 55% 45% 68% 32% / 38% 55% 45% 62%; }
	45%  { border-radius: 38% 62% 45% 55% / 55% 42% 58% 45%; }
	60%  { border-radius: 65% 35% 52% 48% / 48% 62% 38% 52%; }
	75%  { border-radius: 45% 55% 35% 65% / 62% 38% 65% 35%; }
	90%  { border-radius: 52% 48% 62% 38% / 35% 58% 42% 65%; }
	100% { border-radius: 40% 60% 48% 52% / 58% 42% 55% 45%; }
}

@keyframes logoMorphOuter {
	0%   { border-radius: 58% 42% 62% 38% / 44% 56% 44% 56%; }
	20%  { border-radius: 72% 28% 48% 52% / 60% 40% 62% 38%; }
	40%  { border-radius: 38% 62% 72% 28% / 52% 48% 36% 64%; }
	60%  { border-radius: 62% 38% 40% 60% / 36% 64% 56% 44%; }
	80%  { border-radius: 44% 56% 58% 42% / 68% 32% 44% 56%; }
	100% { border-radius: 58% 42% 62% 38% / 44% 56% 44% 56%; }
}

@keyframes logoMorphInner {
	0%   { border-radius: 44% 56% 38% 62% / 62% 44% 56% 38%; }
	25%  { border-radius: 64% 36% 56% 44% / 38% 62% 40% 60%; }
	50%  { border-radius: 36% 64% 44% 56% / 56% 38% 64% 36%; }
	75%  { border-radius: 56% 44% 64% 36% / 44% 56% 36% 64%; }
	100% { border-radius: 44% 56% 38% 62% / 62% 44% 56% 38%; }
}

@keyframes plasmaStream {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes plasmaHue {
	from { filter: hue-rotate(0deg)   saturate(1.5) brightness(1.15); }
	to   { filter: hue-rotate(360deg) saturate(1.5) brightness(1.15); }
}

.brand__text {
	display: grid;
	gap: 1px;
	overflow: hidden;
}

.brand__name {
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	animation: brandTitleGlow 4.8s ease-in-out infinite;
}

.brand__studio {
	color: #00e599;
}

.brand__tag {
	color: var(--muted);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	display: block;
	min-width: 0;
	overflow: hidden;
	text-align: left;
	opacity: 0.6;
	animation: brandTagPulse 5.2s ease-in-out infinite;
}

@keyframes brandTitleGlow {
	0%, 100% {
		text-shadow: 0 0 0 rgba(0, 229, 153, 0);
	}
	50% {
		text-shadow: 0 0 12px rgba(0, 229, 153, 0.24);
	}
}

@keyframes brandTagPulse {
	0%, 100% {
		opacity: 0.92;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(-1px);
	}
}

.nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border: 1px solid var(--panel-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav__list li {
	position: relative;
}

.nav__list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 600;
	border-radius: 999px;
	transition: background 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.nav__list a:hover,
.nav .current-menu-item > a,
.nav .current_page_parent > a,
.nav .current-menu-ancestor > a {
	background: rgba(16, 185, 129, 0.14);
	color: var(--emerald);
	box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
}

.nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	display: grid;
	gap: 4px;
	min-width: 280px;
	margin: 0;
	padding: 12px;
	list-style: none;
	border: 1px solid var(--panel-border);
	border-radius: 20px;
	background: rgba(14, 14, 14, 0.96);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(14px) scale(0.98);
	transform-origin: top left;
	transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms ease;
}

.nav__list li > .sub-menu::before {
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 14px;
	content: "";
}

.nav__list li:hover > .sub-menu,
.nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.nav__list .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	min-height: 42px;
	padding: 0 14px;
	color: var(--text);
	border-radius: 14px;
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	color: #050505;
	background: linear-gradient(135deg, var(--gold), #fbbf24);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.12);
	white-space: nowrap;
}

.theme-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	transition: color 200ms ease, transform 220ms ease;
}

.theme-toggle:hover {
	color: #00e599;
	transform: rotate(22deg) scale(1.12);
}

.theme-toggle__icon {
	font-size: 17px;
	line-height: 1;
}

.lang-switcher {
	position: relative;
}

.lang-switcher__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 36px;
	height: 36px;
	padding: 0 6px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color 200ms ease, transform 200ms ease;
}

.lang-switcher__button:hover,
.lang-switcher.is-open .lang-switcher__button {
	color: #00e599;
	transform: scale(1.08);
}

.lang-switcher__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 160px;
	padding: 8px;
	border-radius: 14px;
	border: 1px solid var(--panel-border);
	background: rgba(9, 12, 12, 0.96);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
	display: grid;
	gap: 4px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px) scale(0.98);
	transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.lang-switcher.is-open .lang-switcher__menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.lang-switcher__item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 36px;
	padding: 0 10px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	text-align: left;
}

.lang-switcher__item:hover,
.lang-switcher__item.is-active {
	color: var(--text);
	background: rgba(16, 185, 129, 0.14);
}

body.theme-light .lang-switcher__button {
	color: var(--muted);
}

body.theme-light .lang-switcher__button:hover,
body.theme-light .lang-switcher.is-open .lang-switcher__button {
	color: #059669;
}

body.theme-light .lang-switcher__menu {
	background: rgba(255, 255, 255, 0.98);
	border-color: rgba(15, 23, 42, 0.14);
	box-shadow: 0 14px 26px rgba(15, 23, 42, 0.15);
}

.nav-toggle,
.nav-toggle-button {
	display: none;
}

.hero {
	padding: 22px 0 12px;
}

.hero__inner {
	display: block;
}

.hero-brief {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	gap: 22px;
	padding: 24px 28px;
	border-radius: 32px;
	background:
		linear-gradient(145deg, rgba(7, 17, 17, 0.96), rgba(10, 13, 16, 0.92)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.1), transparent 22%);
}

.hero-brief__copy {
	display: grid;
	align-content: start;
	gap: 18px;
}

.hero-brief__signal {
	display: grid;
	gap: 8px;
	padding: 16px 18px;
	border-radius: 22px;
	border: 1px solid rgba(16, 185, 129, 0.18);
	background:
		linear-gradient(145deg, rgba(8, 32, 26, 0.72), rgba(12, 18, 18, 0.56)),
		radial-gradient(circle at left center, rgba(16, 185, 129, 0.14), transparent 42%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-brief__signal strong {
	display: block;
	font-size: 17px;
	line-height: 1.28;
}

.hero-brief__signal span {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.hero-brief__copy h1 {
	max-width: 8.2em;
	margin: 0;
	font-size: clamp(34px, 3.8vw, 60px);
	line-height: 0.96;
}

.hero-brief__info {
	display: grid;
	gap: 14px;
	align-content: start;
}

.hero-brief__visual {
	position: relative;
	display: grid;
	gap: 14px;
	padding: 16px;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 34%);
	overflow: hidden;
}

.hero-brief__visual::before {
	content: "";
	position: absolute;
	inset: -20% auto auto -10%;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.12);
	filter: blur(58px);
	opacity: 0.8;
	animation: heroVisualFloat 9s ease-in-out infinite alternate;
}

.hero-brief__visual-image,
.hero-brief__visual-panel {
	position: relative;
	z-index: 1;
}

.hero-brief__visual-image {
	position: relative;
	min-height: 250px;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
}

.hero-brief__visual-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 9, 9, 0.06), rgba(5, 9, 9, 0.72)),
		linear-gradient(120deg, rgba(16, 185, 129, 0.14), transparent 42%);
}

.hero-brief__visual-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	animation: heroImageBreath 11s ease-in-out infinite alternate;
}

.hero-brief__visual-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(5, 150, 105, 0.84);
	color: #ecfdf5;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 14px 30px rgba(5, 150, 105, 0.26);
}

.hero-brief__visual-panel {
	display: grid;
	gap: 10px;
	padding: 18px 18px 16px;
	border-radius: 22px;
	background: rgba(12, 16, 18, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-brief__visual-panel span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-brief__visual-panel strong {
	display: block;
	font-size: 22px;
	line-height: 1.14;
}

.hero-brief__visual-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-brief__visual-list li {
	position: relative;
	padding-left: 18px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.hero-brief__visual-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--emerald), var(--gold));
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.hero-brief__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hero-brief__fact {
	padding: 14px 16px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.035);
}

.hero-brief__fact:last-child {
	grid-column: 1 / -1;
}

.hero-brief__fact span {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-brief__fact strong {
	display: block;
	font-size: 16px;
	line-height: 1.28;
}

.hero-brief__stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	display: grid;
	gap: 10px;
}

.hero-brief__stats div {
	padding: 12px 14px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.025);
}

.hero-brief__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.hero-brief__proof-item {
	padding: 14px 14px 12px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.028);
	transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.hero-brief__proof-item:hover {
	transform: translateY(-4px);
	border-color: rgba(16, 185, 129, 0.18);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.hero-brief__proof-item strong {
	display: block;
	margin-bottom: 7px;
	font-size: 17px;
	line-height: 1.12;
}

.hero-brief__proof-item span {
	display: block;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
}

body.theme-light .hero-brief {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 248, 0.93)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 24%);
}

body.theme-light .hero-brief__signal,
body.theme-light .hero-brief__proof-item,
body.theme-light .hero-brief__stats div,
body.theme-light .hero-brief__visual,
body.theme-light .hero-brief__visual-panel {
	border-color: rgba(15, 23, 42, 0.1);
}

body.theme-light .hero-brief__signal {
	background:
		linear-gradient(145deg, rgba(240, 253, 248, 0.92), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at left center, rgba(16, 185, 129, 0.12), transparent 42%);
}

body.theme-light .hero-brief__proof-item,
body.theme-light .hero-brief__stats div {
	background: rgba(255, 255, 255, 0.7);
}

body.theme-light .hero-brief__visual {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 252, 0.92)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 34%);
}

body.theme-light .hero-brief__visual-image::after {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 23, 42, 0.18)),
		linear-gradient(120deg, rgba(16, 185, 129, 0.08), transparent 42%);
}

body.theme-light .hero-brief__visual-panel {
	background: rgba(255, 255, 255, 0.78);
}

body.theme-light .hero-brief__visual-panel span {
	color: #64748b;
}

.hero-brief--premium {
	position: relative;
	grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
	gap: 24px;
	padding: 22px 24px 20px;
	min-height: 0;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(9, 12, 14, 0.96), rgba(11, 15, 17, 0.92)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.1), transparent 22%),
		radial-gradient(circle at right center, rgba(245, 158, 11, 0.06), transparent 26%);
}

.hero-brief--premium::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 78%);
	opacity: 0.16;
	pointer-events: none;
	content: "";
}

.hero-brief--premium > * {
	position: relative;
	z-index: 1;
}

.hero-brief--premium .hero-brief__copy {
	gap: 12px;
}

.hero-brief--premium .hero-brief__copy h1 {
	max-width: 10.2em;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 0.94;
	letter-spacing: -0.035em;
}

.hero-brief--premium .hero-lead {
	max-width: 40rem;
	margin: 0;
	font-size: 15px;
	line-height: 1.52;
	color: rgba(226, 232, 240, 0.74);
}

.hero-brief--premium .hero-brief__signal {
	display: none;
}

.hero-brief--premium .hero-brief__signal strong {
	font-size: 15px;
	line-height: 1.3;
}

.hero-brief--premium .hero-brief__signal span {
	font-size: 13px;
	line-height: 1.45;
}

.hero-brief--premium .hero-actions {
	margin-top: 2px;
}

.hero-brief--premium .hero-brief__proof {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.hero-brief--premium .hero-brief__proof-item {
	padding: 10px 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.025);
}

.hero-brief--premium .hero-brief__proof-item strong {
	margin-bottom: 4px;
	font-size: 14px;
}

.hero-brief--premium .hero-brief__proof-item span {
	font-size: 11px;
	line-height: 1.32;
}

.hero-brief--premium .hero-brief__info {
	gap: 0;
}

.hero-brief--premium .hero-brief__visual {
	padding: 12px;
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 36%);
}

.hero-brief--premium .hero-brief__visual::before {
	width: 180px;
	height: 180px;
	opacity: 0.58;
	filter: blur(48px);
	animation-duration: 11s;
}

.hero-brief--premium .hero-brief__visual-image {
	min-height: 190px;
	border-radius: 22px;
}

.hero-brief--premium .hero-brief__visual-image img {
	animation: heroPremiumImageDrift 14s ease-in-out infinite alternate;
}

.hero-brief--premium .hero-brief__visual-badge {
	top: 14px;
	right: 14px;
	min-height: 32px;
	padding: 0 13px;
	font-size: 10px;
	letter-spacing: 0.12em;
}

.hero-brief--premium .hero-brief__visual-panel {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 14px;
	gap: 8px;
	padding: 14px 14px 12px;
	border-radius: 20px;
	background: rgba(10, 14, 17, 0.82);
	backdrop-filter: blur(20px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
	animation: heroPremiumPanelFloat 7.5s ease-in-out infinite alternate;
}

.hero-brief--premium .hero-brief__visual-panel span {
	font-size: 10px;
	letter-spacing: 0.14em;
}

.hero-brief--premium .hero-brief__visual-panel strong {
	font-size: 16px;
	line-height: 1.2;
}

.hero-brief--premium .hero-brief__visual-list {
	gap: 5px;
}

.hero-brief--premium .hero-brief__visual-list li {
	padding-left: 16px;
	font-size: 12px;
	line-height: 1.34;
}

.hero-brief--premium .hero-brief__visual-list li::before {
	top: 8px;
	width: 6px;
	height: 6px;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.hero-brief--premium .hero-brief__stats {
	display: none;
}

body.theme-light .hero-brief--premium {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 248, 0.94)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.1), transparent 22%),
		radial-gradient(circle at right center, rgba(245, 158, 11, 0.07), transparent 26%);
}

body.theme-light .hero-brief--premium::before {
	background:
		linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
	opacity: 0.12;
}

body.theme-light .hero-brief--premium .hero-lead,
body.theme-light .hero-brief--premium .hero-brief__signal span,
body.theme-light .hero-brief--premium .hero-brief__proof-item span,
body.theme-light .hero-brief--premium .hero-brief__visual-list li {
	color: #64748b;
}

body.theme-light .hero-brief--premium .hero-brief__signal,
body.theme-light .hero-brief--premium .hero-brief__proof-item,
body.theme-light .hero-brief--premium .hero-brief__visual,
body.theme-light .hero-brief--premium .hero-brief__visual-panel {
	border-color: rgba(15, 23, 42, 0.1);
}

body.theme-light .hero-brief--premium .hero-brief__signal {
	background:
		linear-gradient(145deg, rgba(241, 253, 248, 0.94), rgba(255, 255, 255, 0.92)),
		radial-gradient(circle at left center, rgba(16, 185, 129, 0.1), transparent 44%);
}

body.theme-light .hero-brief--premium .hero-brief__proof-item,
body.theme-light .hero-brief--premium .hero-brief__visual-panel {
	background: rgba(255, 255, 255, 0.8);
}

body.theme-light .hero-brief--premium .hero-brief__visual {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 252, 0.94)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 36%);
}

body.theme-light .hero-brief--premium .hero-brief__visual-image::after {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 23, 42, 0.14)),
		linear-gradient(120deg, rgba(16, 185, 129, 0.08), transparent 44%);
}

body.theme-light .hero-brief--premium .hero-brief__visual-panel span {
	color: #64748b;
}

@keyframes heroPremiumImageDrift {
	0% {
		transform: scale(1.01) translate3d(0, 0, 0);
	}

	100% {
		transform: scale(1.05) translate3d(-8px, -6px, 0);
	}
}

@keyframes heroPremiumPanelFloat {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(0, -6px, 0);
	}
}

@keyframes heroVisualFloat {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(22px, -18px, 0) scale(1.08);
	}
}

@keyframes heroImageBreath {
	0% {
		transform: scale(1.02) translateY(0);
	}
	100% {
		transform: scale(1.08) translateY(-6px);
	}
}

/* ── Home Services Hero ──────────────────────────── */

@keyframes hsBlobDrift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%       { transform: translate(20px, -16px) scale(1.05); }
	66%       { transform: translate(-14px, 12px) scale(0.96); }
}

@keyframes hsFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes hsStatIn {
	from { opacity: 0; transform: translateY(14px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.home-svc-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 60px;
}

.home-svc-hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.home-svc-hero__blob--l {
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(0, 229, 153, 0.13) 0%, transparent 68%);
	top: -80px;
	left: -100px;
	animation: hsBlobDrift 16s ease-in-out infinite;
}

.home-svc-hero__blob--r {
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(0, 229, 153, 0.07) 0%, transparent 68%);
	bottom: -60px;
	right: -60px;
	animation: hsBlobDrift 20s ease-in-out infinite reverse;
}

.home-svc-hero__inner {
	display: grid;
	grid-template-columns: 1fr 280px;
	align-items: center;
	gap: 56px;
}

.home-svc-hero__copy {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.home-svc-hero__eyebrow {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	animation: hsFadeUp 0.55s ease both;
	animation-delay: 0.05s;
}

.home-svc-hero__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.022em;
	color: var(--fg);
	animation: hsFadeUp 0.55s ease both;
	animation-delay: 0.12s;
}

.home-svc-hero__lead {
	margin: 0;
	max-width: 54ch;
	font-size: 1rem;
	line-height: 1.62;
	color: var(--muted);
	animation: hsFadeUp 0.55s ease both;
	animation-delay: 0.2s;
}

.home-svc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	animation: hsFadeUp 0.55s ease both;
	animation-delay: 0.3s;
}

.home-svc-hero__stats {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.home-svc-stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 16px 18px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: 16px;
	animation: hsStatIn 0.5s ease both;
}

.home-svc-stat:nth-child(1) { animation-delay: 0.15s; }
.home-svc-stat:nth-child(2) { animation-delay: 0.26s; }
.home-svc-stat:nth-child(3) { animation-delay: 0.37s; }

.home-svc-stat strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--fg);
}

.home-svc-stat span {
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--muted);
}

body.theme-light .home-svc-hero__title {
	color: #0f172a;
}

body.theme-light .home-svc-stat {
	background: #ffffff;
	border-color: #e2e8f0;
}

body.theme-light .home-svc-stat strong {
	color: #0f172a;
}

body.theme-light .home-svc-stat span {
	color: #64748b;
}

/* ── END Home Services Hero ──────────────────────── */

.hero-brief__stats strong {
	display: block;
	margin-bottom: 6px;
	font-size: 16px;
	line-height: 1.1;
}

.hero-brief__stats span {
	display: block;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.35;
}

.hero-showcase {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	padding: clamp(28px, 2.9vw, 44px);
	border-radius: 32px;
	background:
		linear-gradient(145deg, rgba(7, 17, 17, 0.98), rgba(10, 13, 16, 0.94)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 24%),
		radial-gradient(circle at 88% 16%, rgba(245, 158, 11, 0.08), transparent 18%);
	border: 1px solid var(--panel-border);
	box-shadow: var(--shadow);
}

.hero-showcase::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 96%);
	content: "";
}

.hero-showcase__glow {
	position: absolute;
	inset: auto auto -14% -7%;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.03) 62%, transparent 76%);
	filter: blur(14px);
	animation: heroGlowShift 16s ease-in-out infinite alternate;
}

.hero-showcase__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	gap: 24px;
	height: 100%;
}

.hero-showcase__grid--single {
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	align-items: stretch;
}

.hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: -4px 0 16px;
}

.hero-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.035);
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-copy > h1 {
	margin-bottom: 18px;
	max-width: 9.1em;
}

.hero-service-switcher {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.hero-service-switcher__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-service-switcher__button:hover,
.hero-service-switcher__button.is-active {
	background: rgba(16, 185, 129, 0.14);
	border-color: rgba(16, 185, 129, 0.28);
	color: #fff;
	transform: translateY(-1px);
}

.hero-proof--compact {
	padding: 14px 16px;
	margin-top: 2px;
}

.hero-console {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(20px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-console--inline {
	align-self: end;
	min-height: 100%;
}

.hero-console__header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hero-console__kicker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hero-console__kicker b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.14);
	color: var(--emerald);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-console__header span,
.hero-console__panel-head span,
.hero-note span,
.hero-rail__item span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-console__header strong,
.hero-note strong {
	font-size: 22px;
	line-height: 1.12;
}

.hero-console__screen {
	position: relative;
	flex: 1;
	min-height: 248px;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
		linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(10, 10, 10, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.hero-console__screen--compact::before {
	opacity: 0.24;
}

.hero-console__screen::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	opacity: 0.45;
}

.hero-console__panel {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: start;
	gap: 16px;
	padding: 20px 20px 18px;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 260ms ease, transform 260ms ease;
}

.hero-console__panel.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.hero-console__panel-head {
	display: grid;
	gap: 6px;
}

.hero-console__panel-head strong {
	font-size: 27px;
	line-height: 1.06;
	max-width: 9em;
}

.hero-console__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hero-console__fact {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.035);
}

.hero-console__fact span {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-console__fact strong {
	display: block;
	font-size: 15px;
	line-height: 1.35;
}

.hero-console__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-console__list li {
	position: relative;
	padding-left: 18px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.45;
}

.hero-console__list li::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--emerald), rgba(245, 158, 11, 0.9));
	box-shadow: 0 0 10px rgba(16, 185, 129, 0.24);
	content: "";
}

.hero-console__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-console__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
}

.hero-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.hero-summary__item {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.025);
}

.hero-summary__item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 12px;
	border-radius: 12px;
	background: rgba(16, 185, 129, 0.12);
	color: var(--emerald);
	font-size: 12px;
	font-weight: 800;
}

.hero-summary__item strong {
	display: block;
	margin-bottom: 6px;
	font-size: 16px;
	line-height: 1.2;
}

.hero-summary__item small {
	display: block;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.4;
}

.hero-side {
	display: grid;
	gap: 18px;
}

.hero-rail,
.hero-note {
	padding: 22px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
}

.hero-rail {
	display: grid;
	gap: 12px;
}

.hero-note p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

@keyframes heroBarPulse {
	0%, 100% {
		opacity: 0.9;
		transform: scaleX(1);
	}
	50% {
		opacity: 1;
		transform: scaleX(0.98);
	}
}

.hero-card-large,
.hero-card-small,
.glass-panel,
.service,
.post-card,
.price-card,
.testimonial-grid blockquote,
.faq__item,
.page-hero__panel,
.article__panel {
	background: var(--panel);
	backdrop-filter: blur(24px);
	border: 1px solid var(--panel-border);
	box-shadow: var(--shadow);
}

.hero-card-large {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	min-height: 0;
	border-radius: 32px;
	background:
		linear-gradient(135deg, rgba(6, 18, 18, 0.98), rgba(9, 14, 16, 0.92)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.14), transparent 28%);
}

.hero-card-large::before {
	position: absolute;
	inset: -12%;
	z-index: 0;
	background:
		radial-gradient(circle at 18% 24%, rgba(16, 185, 129, 0.18), transparent 28%),
		radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.1), transparent 24%),
		radial-gradient(circle at 64% 72%, rgba(16, 185, 129, 0.1), transparent 26%);
	content: "";
	filter: blur(10px);
	animation: heroGlowShift 16s ease-in-out infinite alternate;
}

.hero-card-large::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.52)),
		linear-gradient(90deg, rgba(4, 8, 10, 0.26), rgba(4, 8, 10, 0.06));
}

.hero-card-large__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	padding: clamp(28px, 3vw, 52px);
}

.hero-card-large__mesh,
.hero-card-large__frame,
.hero-card-large__orb {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.hero-card-large__mesh {
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
}

.hero-card-large__frame {
	right: 34px;
	bottom: 34px;
	width: min(30vw, 360px);
	min-width: 240px;
}

.hero-card-large__orb {
	border-radius: 999px;
	filter: blur(6px);
	opacity: 0.46;
}

.hero-card-large__orb--emerald {
	top: 82px;
	right: 160px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.02) 72%, transparent 76%);
}

.hero-card-large__orb--gold {
	right: 72px;
	bottom: 118px;
	width: 116px;
	height: 116px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.01) 70%, transparent 75%);
}

.hero-window {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.045);
	backdrop-filter: blur(18px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.hero-window__bar {
	width: 120px;
	height: 8px;
	margin-bottom: 20px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.88), rgba(16, 185, 129, 0.28));
}

.hero-window__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.hero-window__panel,
.hero-window__line {
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
}

.hero-window__panel {
	min-height: 86px;
}

.hero-window__panel--wide {
	grid-column: 1 / -1;
	min-height: 132px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(7, 17, 17, 0.02));
}

.hero-window__line {
	height: 10px;
	background: rgba(255, 255, 255, 0.1);
}

.hero-window__line--strong {
	grid-column: 1 / -1;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.22));
}

.hero-window__line--short {
	width: 72%;
}

@keyframes heroGlowShift {
	0% {
		transform: translate3d(-1.5%, -1%, 0) scale(1);
		opacity: 0.72;
	}
	50% {
		transform: translate3d(2%, 1.5%, 0) scale(1.03);
		opacity: 1;
	}
	100% {
		transform: translate3d(-1%, 2%, 0) scale(1.01);
		opacity: 0.82;
	}
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	color: var(--emerald);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 40px;
	height: 2px;
	background: var(--gold);
	content: "";
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 20px;
	max-width: 820px;
	font-size: clamp(38px, 4.8vw, 72px);
	line-height: 0.96;
	font-weight: 800;
}

.hero-lead,
.page-hero p,
.article__meta,
.section__intro {
	color: var(--muted);
}

.hero-lead {
	max-width: 680px;
	margin-bottom: 22px;
	font-size: 17px;
	line-height: 1.5;
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.hero-tags span {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 34px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 700;
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn--primary {
	color: #fff;
	background: linear-gradient(135deg, var(--emerald), #047857);
	box-shadow: 0 18px 40px rgba(16, 185, 129, 0.22);
}

.btn--ghost {
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--panel-border);
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 22px;
	border-radius: 24px;
	background: rgba(12, 12, 12, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof__item {
	padding-left: 14px;
	border-left: 2px solid rgba(245, 158, 11, 0.9);
}

.hero-proof__value {
	display: block;
	font-size: 20px;
	font-weight: 800;
}

.hero-proof__label {
	color: var(--muted);
	font-size: 14px;
}

.hero-side {
	display: grid;
	gap: 22px;
}

.hero-card-small {
	border-radius: 28px;
	padding: 28px;
	display: grid;
	gap: 18px;
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.hero-card-small__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-card-small__title p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0;
	text-transform: none;
}

.hero-side-stack {
	display: grid;
	gap: 12px;
}

.hero-side-stack__item {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
}

.hero-side-stack__item span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-side-stack__item strong {
	font-size: 18px;
	line-height: 1.2;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border-radius: 18px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
}

.hero-stats div {
	padding: 18px 14px;
	background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
}

.hero-stats span {
	display: block;
	color: var(--muted);
	font-size: 12px;
}

.chart-card {
	border-radius: 28px;
	padding: 28px;
}

.chart-card h3 {
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
}

.donut {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background:
		conic-gradient(
			var(--emerald) 0 42%,
			var(--gold) 42% 68%,
			#2c374b 68% 90%,
			#424a5d 90% 100%
		);
}

.donut::after {
	position: absolute;
	inset: 34px;
	border-radius: 50%;
	background: var(--panel-solid);
	border: 1px solid rgba(255, 255, 255, 0.05);
	content: "";
}

.chart-legend {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
}

.chart-legend span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 14px;
}

.chart-legend span::before {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	content: "";
}

.chart-legend span:nth-child(1)::before {
	background: var(--emerald);
}

.chart-legend span:nth-child(2)::before {
	background: var(--gold);
}

.chart-legend span:nth-child(3)::before {
	background: #2c374b;
}

.chart-legend span:nth-child(4)::before {
	background: #424a5d;
}

.section {
	padding: 36px 0;
}

.section__inner {
	position: relative;
}

.section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.section__head h2 {
	max-width: 760px;
	margin-bottom: 0;
	font-size: clamp(30px, 3.2vw, 46px);
	line-height: 1.04;
	font-weight: 800;
}

.section__head p {
	max-width: 420px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.glass-panel {
	border-radius: 28px;
	padding: 34px;
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.tile-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	margin-bottom: 24px;
	border-radius: 18px;
	background: rgba(16, 185, 129, 0.1);
	color: var(--emerald);
	font-size: 26px;
}

.tile-icon--gold {
	background: rgba(245, 158, 11, 0.1);
	color: var(--gold);
}

.tile-icon--blue {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.glass-panel h3 {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.12;
}

.glass-panel p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.services-grid--focus {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service {
	display: flex;
	flex-direction: column;
	gap: 18px;
	border-radius: 28px;
	padding: 28px;
	transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms ease;
}

.glass-panel:hover,
.hero-card-small:hover,
.service:hover,
.price-card:hover {
	transform: translateY(-6px);
	border-color: rgba(16, 185, 129, 0.2);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(16, 185, 129, 0.08);
	background: rgba(22, 22, 22, 0.9);
}

body.theme-light .glass-panel:hover,
body.theme-light .hero-card-small:hover,
body.theme-light .service:hover,
body.theme-light .price-card:hover {
	border-color: rgba(16, 185, 129, 0.24);
	box-shadow:
		0 16px 34px rgba(15, 23, 42, 0.12),
		0 0 0 1px rgba(16, 185, 129, 0.14);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 248, 0.92));
}

.service__cover {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	line-height: 0;
}

.service__cover img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	border-radius: 0;
	transition: transform 0.45s ease;
}

.service:hover .service__cover img {
	transform: scale(1.04);
}

.service__number {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(10, 14, 10, 0.65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: var(--emerald);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	z-index: 2;
}

.service h3 {
	margin-bottom: 0;
	font-size: 24px;
	line-height: 1.08;
}

.service p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.service img {
	border-radius: 20px;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 24px;
}

.price-grid,
.case-grid,
.post-grid,
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.price-card {
	overflow: hidden;
	border-radius: 28px;
}

.price-card {
	padding: 26px;
}

.price-card__topline b {
	display: inline-flex;
	align-items: center;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.price-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.price-card__topline b {
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.12);
	color: var(--emerald);
	letter-spacing: 0.08em;
}

.pricing-showcase {
	display: grid;
	gap: 24px;
}

.pricing-showcase__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 28px;
	align-items: center;
	padding: 30px 32px;
}

.pricing-showcase__intro-copy h2 {
	max-width: 10.5em;
	margin-bottom: 0;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.04;
}

.pricing-showcase__intro-copy .section__intro {
	max-width: 40rem;
	margin-top: 16px;
}

.pricing-showcase__intro-side {
	display: grid;
	gap: 18px;
	justify-items: start;
	padding-left: 8px;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-showcase__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pricing-showcase__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.price-grid--showcase {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 22px;
}

.price-card--showcase {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 30px 30px 26px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(14, 14, 14, 0.9)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 30%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.price-card--showcase::before {
	content: "";
	position: absolute;
	left: 22px;
	right: 22px;
	top: 0;
	height: 3px;
	border-radius: 999px;
	opacity: 0.95;
}

.price-card--featured {
	border-color: rgba(16, 185, 129, 0.22);
	background:
		linear-gradient(180deg, rgba(15, 18, 18, 0.96), rgba(15, 18, 18, 0.9)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 32%);
	box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08), var(--shadow);
}

.price-grid--showcase .price-card--showcase:nth-child(1)::before {
	background: linear-gradient(90deg, rgba(96, 165, 250, 0.85), rgba(148, 163, 184, 0.55));
}

.price-grid--showcase .price-card--showcase:nth-child(2)::before {
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.95), rgba(52, 211, 153, 0.6));
}

.price-grid--showcase .price-card--showcase:nth-child(3)::before {
	background: linear-gradient(90deg, rgba(245, 158, 11, 0.92), rgba(234, 179, 8, 0.58));
}

.price-card__head {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-card span,
.post-card__date,
.article__meta,
.article__back,
.footer__meta {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.price-card h3 {
	margin: 8px 0 10px;
	font-size: 22px;
	line-height: 1.1;
	font-weight: 800;
}

.price-card strong {
	display: block;
	margin-bottom: 12px;
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
}

.price-card__price {
	margin-top: 4px;
}

.price-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.price-card__foot {
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
}

.price-card__link::after {
	content: "\2192";
	font-size: 16px;
	line-height: 1;
}

/* ── Spotlight hover effect ───────────────────────────── */
.price-card--showcase {
	transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
	            border-color 320ms ease,
	            box-shadow 320ms ease;
	will-change: transform;
}

.price-card--showcase::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		550px circle at var(--spotlight-x, -9999px) var(--spotlight-y, -9999px),
		rgba(255, 255, 255, 0.065),
		transparent 40%
	);
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	transition: opacity 300ms ease;
}

.price-card--showcase:hover::after {
	opacity: 1;
}

.price-card--showcase:hover {
	transform: scale(1.025);
}

.price-card--featured {
	transform: scale(1.03);
	z-index: 2;
}

.price-card--featured:hover {
	transform: scale(1.05) !important;
}

/* Per-card accent borders on hover (nth-child to avoid class collision) */
.price-grid--showcase .price-card--showcase:nth-child(1):hover {
	border-color: rgba(96, 165, 250, 0.35);
	box-shadow: 0 0 40px -12px rgba(59, 130, 246, 0.32);
}

.price-grid--showcase .price-card--showcase:nth-child(2):hover {
	border-color: rgba(16, 185, 129, 0.45);
	box-shadow: 0 0 50px -12px rgba(16, 185, 129, 0.38);
}

.price-grid--showcase .price-card--showcase:nth-child(3):hover {
	border-color: rgba(245, 158, 11, 0.38);
	box-shadow: 0 0 40px -12px rgba(245, 158, 11, 0.3);
}

/* Coloured list dots per card (nth-child) */
.price-grid--showcase .price-card--showcase:nth-child(1) .price-card__list li::before {
	background: #60a5fa;
	box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

.price-grid--showcase .price-card--showcase:nth-child(2) .price-card__list li::before {
	background: #10b981;
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.price-grid--showcase .price-card--showcase:nth-child(3) .price-card__list li::before {
	background: #f59e0b;
	box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

body.theme-light .price-card--showcase {
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 253, 0.94)),
		radial-gradient(circle at top right, rgba(15, 23, 42, 0.04), transparent 34%);
	border-color: rgba(15, 23, 42, 0.14);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

body.theme-light .price-card--featured {
	background:
		linear-gradient(165deg, rgba(239, 252, 247, 0.96), rgba(247, 252, 250, 0.94)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.11), transparent 36%);
	border-color: rgba(16, 185, 129, 0.34);
	box-shadow: 0 18px 38px rgba(5, 150, 105, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.14);
}

body.theme-light .price-card--showcase span,
body.theme-light .price-card--showcase p {
	color: #475569;
}

body.theme-light .price-card--showcase h3,
body.theme-light .price-card--showcase strong,
body.theme-light .price-card--showcase .price-card__link {
	color: #0f172a;
}

body.theme-light .price-card--showcase .price-card__old {
	color: #64748b;
}

body.theme-light .price-grid--showcase .price-card--showcase:nth-child(1) {
	background:
		linear-gradient(165deg, rgba(249, 251, 255, 0.98), rgba(245, 249, 255, 0.95)),
		radial-gradient(circle at top right, rgba(96, 165, 250, 0.09), transparent 38%);
}

body.theme-light .price-grid--showcase .price-card--showcase:nth-child(3) {
	background:
		linear-gradient(165deg, rgba(255, 252, 244, 0.98), rgba(255, 249, 236, 0.95)),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), transparent 38%);
}

.pricing-showcase--premium {
	position: relative;
	gap: 30px;
}

.pricing-showcase--premium::before,
.pricing-showcase--premium::after {
	position: absolute;
	border-radius: 999px;
	filter: blur(110px);
	opacity: 0.32;
	pointer-events: none;
	content: "";
}

.pricing-showcase--premium::before {
	top: 18px;
	left: -70px;
	width: 260px;
	height: 260px;
	background: rgba(245, 158, 11, 0.14);
}

.pricing-showcase--premium::after {
	right: -90px;
	bottom: -30px;
	width: 320px;
	height: 320px;
	background: rgba(59, 130, 246, 0.12);
}

.pricing-showcase__intro--premium {
	position: relative;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 36px;
	padding: 36px;
	border-radius: 34px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(9, 9, 11, 0.96), rgba(14, 14, 15, 0.92)),
		radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 34%),
		radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 36%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.03);
	animation: pricingReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pricing-showcase__intro--premium::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
	opacity: 0.28;
	pointer-events: none;
	content: "";
}

.pricing-showcase__intro--premium > * {
	position: relative;
	z-index: 1;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-copy {
	display: grid;
	gap: 18px;
}

.pricing-showcase__intro--premium .section__eyebrow {
	margin-bottom: 4px;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-copy h2 {
	max-width: 8.2em;
	font-size: clamp(40px, 5.2vw, 74px);
	line-height: 0.94;
	letter-spacing: -0.03em;
}

.pricing-showcase__intro--premium .section__intro {
	max-width: 38rem;
	margin-top: 0;
	font-size: 18px;
	line-height: 1.58;
	color: rgba(226, 232, 240, 0.78);
}


.pricing-showcase__intro--premium .pricing-showcase__intro-side {
	align-self: stretch;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas:
		"badge-one badge-two"
		"badge-wide badge-wide"
		"metric-one metric-two"
		"metric-three metric-three";
	gap: 14px;
	padding-left: 0;
	border-left: 0;
}

.pricing-showcase__intro--premium .pricing-showcase__badges {
	display: contents;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 110px;
	padding: 22px 24px;
	border-radius: 20px;
	background: rgba(16, 185, 129, 0.04);
	border: 1px solid rgba(16, 185, 129, 0.14);
	backdrop-filter: blur(18px);
	color: #f8fafc;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: none;
	position: relative;
	overflow: hidden;
	transition: border-color .25s, box-shadow .25s, background .25s;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(to right, var(--emerald), transparent 70%);
	opacity: .5;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span::after {
	content: '';
	position: absolute;
	top: -40px;
	right: -20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%);
	pointer-events: none;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span:hover {
	border-color: rgba(16, 185, 129, 0.35);
	box-shadow: 0 8px 28px rgba(16, 185, 129, 0.1);
	background: rgba(16, 185, 129, 0.07);
}

.psb__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(16, 185, 129, 0.22);
	color: var(--emerald);
	margin-bottom: 14px;
	flex-shrink: 0;
	font-style: normal;
}

.psb__icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
}

.psb__title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #f1f5f9;
	line-height: 1.35;
	margin-bottom: 5px;
}

.psb__sub {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: rgba(226, 232, 240, 0.52);
	line-height: 1.4;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-side > .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border-radius: 16px;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span:nth-child(1) {
	grid-area: badge-one;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span:nth-child(2) {
	grid-area: badge-two;
}

.pricing-showcase__intro--premium .pricing-showcase__badges span:nth-child(3) {
	grid-area: badge-wide;
	min-height: 92px;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-side > .btn {
	grid-area: metric-three;
	justify-content: center;
	min-height: 64px;
	border-radius: 18px;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-side::before,
.pricing-showcase__intro--premium .pricing-showcase__intro-side::after {
	display: none;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-side .pricing-showcase__metric {
	display: grid;
	align-content: start;
	gap: 4px;
	padding: 20px 22px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-showcase__intro--premium .pricing-showcase__intro-side .pricing-showcase__metric:nth-of-type(1) {
	grid-area: metric-one;
}

.pricing-showcase__intro--premium .pricing-showcase__intro-side .pricing-showcase__metric:nth-of-type(2) {
	grid-area: metric-two;
}

.pricing-showcase__intro--premium .pricing-showcase__metric strong {
	font-size: 34px;
	line-height: 1;
}

.pricing-showcase__intro--premium .pricing-showcase__metric span {
	color: rgba(226, 232, 240, 0.74);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.price-grid--premium {
	position: relative;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.price-card--premium {
	position: relative;
	padding: 1px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(63, 63, 70, 0.5), rgba(24, 24, 27, 0.72));
	overflow: visible;
	opacity: 0;
	transform: translateY(48px);
	animation: pricingCardReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: var(--price-delay, 0ms);
	transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.price-card--premium::before,
.price-card--premium::after {
	position: absolute;
	transition: opacity 0.45s ease, transform 0.45s ease;
	pointer-events: none;
	content: "";
}

.price-card--premium::before {
	inset: 0;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
	opacity: 0.65;
}

.price-card--premium::after {
	inset: -18px;
	border-radius: 40px;
	filter: blur(28px);
	opacity: 0;
}

.price-card--premium:hover {
	transform: translateY(-12px);
	filter: saturate(1.06);
}

.price-card--premium:hover::after {
	opacity: 0.75;
}

.price-card--premium.price-card--start::after {
	background: rgba(96, 165, 250, 0.2);
}

.price-card--premium.price-card--business::after {
	background: rgba(245, 158, 11, 0.24);
}

.price-card--premium.price-card--premium::after {
	background: rgba(245, 158, 11, 0.2);
}

.price-card--premium .price-card__topline,
.price-card--premium .price-card__head,
.price-card--premium .price-card__list,
.price-card--premium .price-card__foot,
.price-card--premium .price-card__desc {
	position: relative;
	z-index: 1;
}

.price-card--premium .price-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

.price-card--premium .price-card__topline span {
	color: rgba(161, 161, 170, 0.94);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.price-card--premium .price-card__topline b {
	display: inline-flex;
	align-items: center;
	margin-left: auto;
	padding: 0;
	font-size: 0;
	font-weight: 700;
}

.price-card--premium .price-card__topline b::before {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.16));
	border: 1px solid rgba(245, 158, 11, 0.26);
	box-shadow: 0 10px 24px rgba(245, 158, 11, 0.15);
	color: #fef3c7;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	content: "\2726 \0420\0435\043A\043E\043C\0435\043D\0434\0443\0435\043C";
}

.price-card--premium .price-card__head {
	margin-bottom: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card--premium .price-card__head h3 {
	margin: 0 0 20px;
	font-size: clamp(28px, 2.6vw, 38px);
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #f8fafc;
}

.price-card--premium .price-card__price-stack {
	display: grid;
	gap: 10px;
	align-items: start;
}

.price-card--premium .price-card__price {
	margin: 0;
	font-size: clamp(42px, 4vw, 58px);
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #f8fafc;
}

.price-card--premium .price-card__old {
	margin: 0;
	color: rgba(161, 161, 170, 0.84);
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	text-decoration: line-through;
	text-decoration-color: rgba(161, 161, 170, 0.55);
}

.price-card--premium .price-card__desc {
	min-height: 96px;
	margin: 24px 0 0;
	color: rgba(212, 212, 216, 0.82);
	font-size: 16px;
	line-height: 1.62;
}

.price-card--premium .price-card__list {
	gap: 14px;
	margin: 26px 0 0;
}

.price-card--premium .price-card__list li {
	padding-left: 24px;
	color: rgba(228, 228, 231, 0.88);
	font-size: 15px;
	line-height: 1.5;
}

.price-card--premium .price-card__list li::before {
	top: 0.52em;
	width: 8px;
	height: 8px;
	box-shadow: 0 0 18px rgba(16, 185, 129, 0.34);
}

.price-card--premium .price-card__foot {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card--premium .price-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 56px;
	padding: 0 22px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	color: #f8fafc;
	font-size: 0;
	font-weight: 700;
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card--premium .price-card__link::before {
	color: inherit;
	font-size: 15px;
	content: "\0421\043C\043E\0442\0440\0435\0442\044C \0441\043E\0441\0442\0430\0432";
}

.price-card--premium .price-card__link::after {
	font-size: 18px;
	content: "\2192";
	transform: translateX(0);
	transition: transform 0.28s ease;
}

.price-card--premium .price-card__link:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
}

.price-card--premium .price-card__link:hover::after {
	transform: translateX(4px);
}

.price-card--premium.price-card--start {
	background: linear-gradient(180deg, rgba(59, 130, 246, 0.26), rgba(24, 24, 27, 0.78));
}

.price-card--premium.price-card--business {
	background: linear-gradient(180deg, rgba(245, 158, 11, 0.68), rgba(34, 197, 94, 0.18) 28%, rgba(10, 10, 11, 0.82) 78%);
	box-shadow: 0 22px 60px rgba(245, 158, 11, 0.14);
}

.price-card--premium.price-card--premium {
	background: linear-gradient(180deg, rgba(245, 158, 11, 0.3), rgba(24, 24, 27, 0.8));
}

.price-card--premium .price-card--showcase {
	box-shadow: none;
}

.price-card--premium .price-card__inner,
.price-card--premium.price-card--showcase {
	box-shadow: none;
}

.price-card--premium.price-card--showcase > * {
	position: relative;
	z-index: 1;
}

.price-card--premium.price-card--showcase {
	padding: 34px 32px 30px;
	border-radius: 31px;
	background:
		linear-gradient(180deg, rgba(15, 15, 17, 0.88), rgba(10, 10, 11, 0.96)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 34%);
	border: 0;
}

.price-card--premium.price-card--featured.price-card--showcase {
	background:
		linear-gradient(180deg, rgba(18, 18, 16, 0.88), rgba(9, 9, 8, 0.97)),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 36%);
}

body.theme-light .pricing-showcase--premium::before {
	background: rgba(245, 158, 11, 0.1);
}

body.theme-light .pricing-showcase--premium::after {
	background: rgba(59, 130, 246, 0.08);
}

body.theme-light .pricing-showcase__intro--premium {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.96)),
		radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 34%),
		radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 36%);
	border-color: rgba(148, 163, 184, 0.2);
	box-shadow: 0 24px 56px rgba(148, 163, 184, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.theme-light .pricing-showcase__intro--premium::before {
	background:
		linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
	opacity: 0.18;
}

body.theme-light .pricing-showcase__intro--premium .section__intro,
body.theme-light .pricing-showcase__intro--premium .pricing-showcase__metric span {
	color: #475569;
}

body.theme-light .pricing-showcase__intro--premium .pricing-showcase__badges span {
	background: rgba(255, 255, 255, 0.85) !important;
	border-color: rgba(16, 185, 129, 0.2) !important;
	color: #0f172a !important;
}
body.theme-light .psb__title { color: #0f172a !important; }
body.theme-light .psb__sub   { color: #64748b !important; }
body.theme-light .psb__icon  { background: rgba(16,185,129,.12) !important; border-color: rgba(16,185,129,.2) !important; }
body.theme-light .pricing-showcase__intro--premium .pricing-showcase__metric,
body.theme-light .pricing-showcase__intro--premium .pricing-showcase__intro-side > .btn {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(148, 163, 184, 0.22);
	color: #0f172a;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

body.theme-light .price-card--premium::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.24));
}

body.theme-light .price-card--premium.price-card--showcase {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98)),
		radial-gradient(circle at top right, rgba(15, 23, 42, 0.04), transparent 34%);
}

body.theme-light .price-card--premium.price-card--featured.price-card--showcase {
	background:
		linear-gradient(180deg, rgba(255, 251, 235, 0.97), rgba(255, 255, 255, 0.98)),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 36%);
}

body.theme-light .price-card--premium .price-card__topline span {
	color: #475569;
}

body.theme-light .price-card--premium .price-card__head h3,
body.theme-light .price-card--premium .price-card__price,
body.theme-light .price-card--premium .price-card__link,
body.theme-light .price-card--premium .price-card__link::before {
	color: #0f172a;
}

body.theme-light .price-card--premium .price-card__old,
body.theme-light .price-card--premium .price-card__desc,
body.theme-light .price-card--premium .price-card__list li {
	color: #475569;
}

body.theme-light .price-card--premium .price-card__head,
body.theme-light .price-card--premium .price-card__foot {
	border-color: rgba(148, 163, 184, 0.22);
}

body.theme-light .price-card--premium .price-card__link {
	background: rgba(15, 23, 42, 0.02);
	border-color: rgba(148, 163, 184, 0.24);
}

body.theme-light .price-card--premium .price-card__link:hover {
	background: rgba(15, 23, 42, 0.06);
	border-color: rgba(148, 163, 184, 0.32);
}

@keyframes pricingReveal {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pricingCardReveal {
	from {
		opacity: 0;
		transform: translateY(48px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {
	.pricing-showcase__intro--premium {
		grid-template-columns: 1fr;
		padding: 30px;
	}

	.pricing-showcase__intro--premium .pricing-showcase__intro-copy h2 {
		max-width: none;
	}
}

@media (max-width: 900px) {
	.pricing-showcase__intro--premium .pricing-showcase__intro-side {
		grid-template-columns: 1fr;
		grid-template-areas:
			"badge-one"
			"badge-two"
			"badge-wide"
			"metric-three";
	}

	.pricing-showcase__intro--premium .pricing-showcase__badges span,
	.pricing-showcase__intro--premium .pricing-showcase__intro-side > .btn {
		min-height: 84px;
	}

	.price-card--premium.price-card--showcase {
		padding: 28px 24px 24px;
	}

	.price-card--premium .price-card__head h3 {
		font-size: clamp(24px, 6vw, 34px);
	}

	.price-card--premium .price-card__price {
		font-size: clamp(36px, 8vw, 48px);
	}

	.price-card--premium .price-card__desc {
		min-height: 0;
		font-size: 15px;
	}
}

@media (max-width: 640px) {
	.pricing-showcase--premium {
		gap: 22px;
	}

	.pricing-showcase__intro--premium {
		padding: 24px 20px;
		border-radius: 28px;
	}

	.pricing-showcase__intro--premium .pricing-showcase__intro-copy {
		gap: 14px;
	}

	.pricing-showcase__intro--premium .pricing-showcase__intro-copy h2 {
		font-size: clamp(32px, 10vw, 48px);
		line-height: 0.96;
	}

	.pricing-showcase__intro--premium .section__intro {
		font-size: 15px;
	}

	.pricing-showcase__intro--premium .pricing-showcase__badges span,
	.pricing-showcase__intro--premium .pricing-showcase__intro-side > .btn {
		padding: 16px 18px;
		min-height: 72px;
		border-radius: 20px;
	}

	.price-card--premium {
		border-radius: 28px;
	}

	.price-grid--premium .price-card--premium.price-card--showcase {
		padding: 20px 16px 16px;
		border-radius: 24px;
	}

	.price-grid--premium .price-card--premium .price-card__topline {
		margin-bottom: 12px;
	}

	.price-grid--premium .price-card--premium .price-card__topline span {
		font-size: 11px;
		letter-spacing: 0.12em;
	}

	.price-grid--premium .price-card--premium .price-card__topline b::before {
		min-height: 28px;
		padding: 0 10px;
		font-size: 8px;
	}

	.price-grid--premium .price-card--premium .price-card__head {
		padding-bottom: 10px;
	}

	.price-grid--premium .price-card--premium .price-card__head h3 {
		margin-bottom: 10px;
		font-size: 18px;
	}

	.price-grid--premium .price-card--premium .price-card__price {
		font-size: 24px;
	}

	.price-grid--premium .price-card--premium .price-card__old {
		font-size: 12px;
	}

	.price-grid--premium .price-card--premium .price-card__desc {
		min-height: 0;
		font-size: 13px;
		line-height: 1.45;
	}

	.price-grid--premium .price-card--premium .price-card__list {
		gap: 10px;
		margin-top: 12px;
	}

	.price-grid--premium .price-card--premium .price-card__list li {
		padding-left: 20px;
		font-size: 13px;
		line-height: 1.4;
	}

	.price-grid--premium .price-card--premium .price-card__list li::before {
		font-size: 16px;
	}

	.price-grid--premium .price-card--premium .price-card__foot {
		padding-top: 12px;
	}

	.price-grid--premium .price-card--premium .price-card__link {
		min-height: 46px;
		border-radius: 14px;
	}

	.price-grid--premium .price-card--premium .price-card__link::before {
		font-size: 14px;
	}

	.price-grid--premium .price-card--premium .price-card__link::after {
		font-size: 16px;
	}
}

.support-entry {
	display: grid;
	gap: 24px;
}

/* Pricing cards refit to match approved light premium reference */
.price-grid--premium {
	gap: 26px;
	align-items: stretch;
}

.price-grid--premium .price-card--premium {
	padding: 0;
	border-radius: 34px;
	background: transparent;
	box-shadow: none;
	filter: none;
}

.price-grid--premium .price-card--premium::before {
	display: none;
}

.price-grid--premium .price-card--premium::after {
	inset: 16px;
	border-radius: 36px;
	filter: blur(22px);
}

.price-grid--premium .price-card--premium:hover {
	transform: translateY(-10px);
}

.price-grid--premium .price-card--premium.price-card--start::after {
	background: rgba(148, 163, 184, 0.1);
}

.price-grid--premium .price-card--premium.price-card--business::after {
	background: rgba(245, 158, 11, 0.18);
}

.price-grid--premium .price-card--premium.price-card--premium::after {
	background: rgba(148, 163, 184, 0.08);
}

.price-grid--premium .price-card--premium.price-card--showcase {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 28px 22px 20px;
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(253, 253, 253, 0.98), rgba(248, 248, 250, 0.98));
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.price-grid--premium .price-card--premium.price-card--featured.price-card--showcase {
	border-color: rgba(245, 158, 11, 0.45);
	box-shadow: 0 26px 56px rgba(245, 158, 11, 0.16);
}

.price-grid--premium .price-card--premium .price-card__topline {
	margin-bottom: 16px;
}

.price-grid--premium .price-card--premium .price-card__topline span {
	color: #6b7280;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.price-grid--premium .price-card--premium.price-card--business .price-card__topline span {
	color: #d97706;
}

.price-grid--premium .price-card--premium .price-card__topline b {
	margin-left: auto;
}

.price-grid--premium .price-card--premium .price-card__topline b::before {
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: linear-gradient(180deg, #f59e0b, #ea8c00);
	border: 0;
	box-shadow: 0 10px 22px rgba(245, 158, 11, 0.22);
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	content: "\2726 \0420\0435\043A\043E\043C\0435\043D\0434\0443\0435\043C";
}

.price-grid--premium .price-card--premium .price-card__head {
	padding-bottom: 12px;
	margin-bottom: 0;
	border-bottom: 0;
}

.price-grid--premium .price-card--premium .price-card__head h3 {
	margin: 0 0 14px;
	color: #111827;
	font-size: 22px;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.price-grid--premium .price-card--premium .price-card__price-stack {
	gap: 6px;
}

.price-grid--premium .price-card--premium .price-card__price {
	color: #111827;
	font-size: 30px;
	line-height: 0.96;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.price-grid--premium .price-card--premium.price-card--business .price-card__price {
	color: #111827;
}

.price-grid--premium .price-card--premium .price-card__old {
	color: #a1a1aa;
	font-size: 13px;
	font-weight: 500;
	text-decoration-color: rgba(161, 161, 170, 0.85);
}

.price-grid--premium .price-card--premium .price-card__desc {
	min-height: 72px;
	margin-top: 2px;
	color: #52525b;
	font-size: 14px;
	line-height: 1.55;
}

.price-grid--premium .price-card--premium .price-card__list {
	gap: 12px;
	margin: 14px 0 0;
}

.price-grid--premium .price-card--premium .price-card__list li {
	padding-left: 24px;
	color: #3f3f46;
	font-size: 14px;
	line-height: 1.45;
}

.price-grid--premium .price-card--premium .price-card__list li::before {
	top: 0.08em;
	left: 0;
	width: auto;
	height: auto;
	background: none;
	box-shadow: none;
	border-radius: 0;
	color: #f59e0b;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	content: "\2713";
}

.price-grid--premium .price-card--premium .price-card__foot {
	margin-top: auto;
	padding-top: 16px;
	border-top: 0;
}

.price-grid--premium .price-card--premium .price-card__link {
	width: 100%;
	min-height: 54px;
	border-radius: 16px;
	border: 1px solid rgba(209, 213, 219, 0.95);
	background: #ffffff;
	box-shadow: none;
	color: #3f3f46;
}

.price-grid--premium .price-card--premium .price-card__link::before {
	color: inherit;
	font-size: 15px;
	font-weight: 700;
	content: "\0421\043C\043E\0442\0440\0435\0442\044C \0434\0435\0442\0430\043B\0438";
}

.price-grid--premium .price-card--premium .price-card__link::after {
	color: inherit;
	font-size: 18px;
}

.price-grid--premium .price-card--premium .price-card__link:hover {
	background: #f8fafc;
	border-color: rgba(148, 163, 184, 0.7);
}

.price-grid--premium .price-card--premium.price-card--featured .price-card__link {
	background: linear-gradient(180deg, #ffab08, #ff9f0a);
	border-color: #ffab08;
	box-shadow: 0 14px 28px rgba(245, 158, 11, 0.2);
	color: #ffffff;
}

.price-grid--premium .price-card--premium.price-card--featured .price-card__link:hover {
	background: linear-gradient(180deg, #ffb31f, #ffa31a);
	border-color: #ffb31f;
}

body:not(.theme-light) .price-grid--premium .price-card--premium.price-card--showcase {
	background:
		linear-gradient(180deg, rgba(20, 20, 23, 0.98), rgba(12, 13, 16, 0.98)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 34%);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}

body:not(.theme-light) .price-grid--premium .price-card--premium.price-card--featured.price-card--showcase {
	background:
		linear-gradient(180deg, rgba(22, 22, 18, 0.98), rgba(11, 11, 12, 0.99)),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 38%);
	border-color: rgba(245, 158, 11, 0.34);
	box-shadow: 0 30px 62px rgba(245, 158, 11, 0.14);
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__topline span,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__old,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__desc,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__list li,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__link,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__link::before,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__link::after {
	color: #cbd5e1;
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__head h3,
body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__price {
	color: #f8fafc;
}

body:not(.theme-light) .price-grid--premium .price-card--premium.price-card--featured .price-card__link,
body:not(.theme-light) .price-grid--premium .price-card--premium.price-card--featured .price-card__link::before,
body:not(.theme-light) .price-grid--premium .price-card--premium.price-card--featured .price-card__link::after {
	color: #ffffff;
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__old {
	color: rgba(161, 161, 170, 0.9);
	text-decoration-color: rgba(161, 161, 170, 0.72);
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__desc {
	color: rgba(203, 213, 225, 0.78);
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__list li {
	color: rgba(226, 232, 240, 0.84);
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__link {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(255, 255, 255, 0.1);
}

body:not(.theme-light) .price-grid--premium .price-card--premium .price-card__link:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.16);
}

.support-entry__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: center;
	padding: 30px 32px;
}

.support-entry__actions {
	display: grid;
	gap: 12px;
	justify-items: start;
}

.support-entry__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.support-card {
	display: grid;
	gap: 14px;
	padding: 28px;
	border-radius: 28px;
}

.support-card__tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.16);
	color: var(--emerald);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.support-card h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.08;
}

.support-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.58;
}

.demo-grid,
.guarantees__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.demo-card,
.guarantee-card {
	display: grid;
	gap: 14px;
	padding: 26px;
	border-radius: 26px;
}

.demo-card__tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(16, 185, 129, 0.2);
	background: rgba(16, 185, 129, 0.08);
	color: var(--emerald);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.demo-card h3,
.guarantee-card h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.12;
}

.demo-card p,
.guarantee-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.56;
}

.guarantees {
	display: grid;
	gap: 24px;
}

.guarantee-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.safe-start {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
	gap: 24px;
	align-items: center;
	padding: 30px 32px;
	border-radius: 28px;
}

.safe-start__price {
	display: grid;
	gap: 12px;
	justify-items: start;
	padding: 18px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.safe-start__price span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.safe-start__price strong {
	font-size: 34px;
	line-height: 1;
}

/* ── Blog post cards — premium ─────────────────────────────────── */
@keyframes postCardIn {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── Post grid: homepage editorial (asymmetric) ─────────────────── */
.post-grid {
	grid-template-columns: 1.25fr 0.75fr;
	grid-template-rows: 1fr 1fr;
}

/* ── Archive: 3-column premium grid ────────────────────────────── */
.post-grid--archive {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: auto;
	gap: 22px;
}

.post-grid--archive .post-card {
	grid-row: auto;
	border-radius: 20px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	display: flex;
	flex-direction: column;
}

.post-grid--archive .post-card:hover {
	border-color: rgba(16,185,129,.38);
	box-shadow: 0 16px 40px rgba(16,185,129,.1), 0 4px 16px rgba(0,0,0,.2);
	transform: translateY(-5px);
}

.post-grid--archive .post-card > a {
	flex-direction: column;
	height: 100%;
}

/* Image with fixed aspect ratio */
.post-grid--archive .post-card__image {
	width: 100%;
	height: 0;
	padding-top: 58%;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	border-radius: 0;
}

.post-grid--archive .post-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.post-grid--archive .post-card:hover .post-card__image img { transform: scale(1.07); }

.post-grid--archive .post-card__image::after {
	background: linear-gradient(to bottom, transparent 40%, rgba(7,10,20,.65) 100%);
	border-radius: 0;
}

/* Category tag on image */
.post-grid--archive .post-card__image .arc-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 4px 10px;
	background: rgba(16,185,129,.18);
	border: 1px solid rgba(16,185,129,.32);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #6ee7b7;
	backdrop-filter: blur(8px);
}

/* Body */
.post-grid--archive .post-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 18px 20px 22px;
}

.post-grid--archive .post-card__date {
	font-size: 10px;
	margin-bottom: 8px;
}

.post-grid--archive .post-card__body h2 {
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-grid--archive .post-card__body p {
	font-size: 13px;
	line-height: 1.6;
	-webkit-line-clamp: 2;
	margin: 0 0 auto;
}

.post-grid--archive .post-card__read { margin-top: 14px; font-size: 12px; }

/* Light theme */
body.theme-light .post-grid--archive .post-card { background: rgba(255,255,255,.92) !important; }
body.theme-light .post-grid--archive .post-card:hover { background: rgba(255,255,255,.98) !important; }
body.theme-light .post-grid--archive .post-card__body h2 { color: #0f172a !important; }
body.theme-light .post-grid--archive .post-card__body p  { color: #475569 !important; }

/* Responsive */
@media (max-width: 860px) {
	.post-grid--archive { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.post-grid--archive { grid-template-columns: 1fr; }
}

/* Base card */
.post-card {
	overflow: hidden;
	border-radius: 22px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	position: relative;
	animation: postCardIn .55s cubic-bezier(.22,.68,0,1.1) both;
	transition: border-color .28s, box-shadow .28s, transform .28s;
}
.post-card:nth-child(2) { animation-delay: .12s; }
.post-card:nth-child(3) { animation-delay: .24s; }

.post-card:hover {
	border-color: rgba(16,185,129,.4);
	box-shadow: 0 20px 56px rgba(16,185,129,.14), 0 4px 20px rgba(0,0,0,.28);
	transform: translateY(-5px);
}

.post-card > a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

/* Base image (archive cards without modifiers) */
.post-card__image {
	position: relative;
	overflow: hidden;
	height: 220px;
	flex-shrink: 0;
}

.post-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.post-card:hover .post-card__image img { transform: scale(1.06); }

.post-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 50%, rgba(7,10,20,.55) 100%);
	pointer-events: none;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 24px;
}

.post-card__body h2 {
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 8px;
}

.post-card__body p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 auto;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Featured card (first) ─────────────────────────────────────── */
.post-card--featured {
	grid-row: span 2;
}

.post-card--featured > a {
	flex-direction: column;
	position: relative;
}

.post-card--featured .post-card__image {
	position: absolute;
	inset: 0;
	height: auto;
}

.post-card--featured .post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.post-card--featured:hover .post-card__image img { transform: scale(1.05); }

.post-card--featured .post-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom,
			rgba(7,10,20,.18) 0%,
			rgba(7,10,20,.25) 40%,
			rgba(7,10,20,.88) 75%,
			rgba(7,10,20,.97) 100%);
	pointer-events: none;
}

.post-card--featured .post-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 30px 30px;
	z-index: 2;
}

.post-card--featured .post-card__date {
	color: #6ee7b7;
	margin-bottom: 12px;
}

.post-card--featured .post-card__body h2 {
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.2;
	font-weight: 800;
	color: #fff;
	margin: 0 0 10px;
	text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.post-card--featured .post-card__body p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,.68);
	margin: 0 0 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card__num {
	position: absolute;
	top: 18px;
	right: 22px;
	font-size: 80px;
	font-weight: 900;
	line-height: 1;
	color: rgba(255,255,255,.07);
	letter-spacing: -.06em;
	pointer-events: none;
	user-select: none;
	z-index: 2;
}

.post-card__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	margin-bottom: 14px;
	background: rgba(16,185,129,.15);
	border: 1px solid rgba(16,185,129,.3);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #6ee7b7;
	width: fit-content;
}

/* ── Compact cards (2nd & 3rd) ─────────────────────────────────── */
.post-card--compact > a {
	flex-direction: row;
	align-items: stretch;
}

.post-card--compact .post-card__image {
	width: 44%;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.post-card--compact .post-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.post-card--compact:hover .post-card__image img { transform: scale(1.07); }

.post-card--compact .post-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 55%, rgba(7,10,20,.55) 100%);
	pointer-events: none;
}

.post-card--compact .post-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 22px;
}

.post-card--compact .post-card__body h2 {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card--compact .post-card__body p { display: none; }

/* Shared body elements */
.post-card__body {
	display: flex;
	flex-direction: column;
}

.post-card__date {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--emerald);
	margin-bottom: 8px;
}

.post-card__read {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--emerald);
	opacity: .7;
	transition: opacity .2s, gap .2s;
}
.post-card__read::after {
	content: '→';
	display: inline-block;
	transition: transform .2s;
}
.post-card:hover .post-card__read { opacity: 1; }
.post-card:hover .post-card__read::after { transform: translateX(4px); }

.case-card img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.testimonial-grid blockquote {
	margin: 0;
	border-radius: 28px;
	padding: 28px;
}

.testimonial-grid p {
	margin-bottom: 18px;
	font-size: 20px;
	line-height: 1.4;
}

.testimonial-grid cite {
	color: var(--emerald);
	font-style: normal;
	font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════
   FAQ — Premium WOW redesign
   ══════════════════════════════════════════════════════════════════ */
@keyframes faqHeadIn {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes faqItemIn {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes faqCountPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.0); }
	50%       { box-shadow: 0 0 0 8px rgba(16,185,129,.12); }
}


/* ── Общий контейнер: колонка — шапка сверху, вопросы снизу ─────── */
.faq {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

/* ── Шапка: горизонтальная строка ───────────────────────────────── */
.faq__head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto auto;
	column-gap: 36px;
	row-gap: 0;
	align-items: center;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--panel-border);
	animation: faqHeadIn .55s cubic-bezier(.22,.68,0,1.1) both;
}

.faq__head > .eyebrow {
	grid-column: 1;
	grid-row: 1;
	margin-bottom: 8px;
}

.faq__head > h2 {
	grid-column: 1;
	grid-row: 2;
	margin: 0;
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.18;
	white-space: nowrap;
}

.faq__intro {
	grid-column: 2;
	grid-row: 1 / 3;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
	max-width: 480px;
}

.faq__counter {
	grid-column: 3;
	grid-row: 1 / 3;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 14px 22px;
	border-radius: 16px;
	background: rgba(16,185,129,.08);
	border: 1px solid rgba(16,185,129,.22);
	color: var(--emerald);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .03em;
	white-space: nowrap;
	animation: faqCountPulse 2.8s ease-in-out infinite;
}

.faq__counter span {
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
}

/* ── Сетка вопросов: 2 колонки ──────────────────────────────────── */
.faq__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: start;
}

.faq__item {
	position: relative;
	border-radius: 18px;
	border: 1px solid var(--panel-border);
	background: var(--panel);
	overflow: hidden;
	transition: border-color .25s, box-shadow .25s, background .25s;
	animation: faqItemIn .5s cubic-bezier(.22,.68,0,1.1) both;
}

.faq__item:nth-child(1) { animation-delay: .08s; }
.faq__item:nth-child(2) { animation-delay: .16s; }
.faq__item:nth-child(3) { animation-delay: .24s; }
.faq__item:nth-child(4) { animation-delay: .32s; }
.faq__item:nth-child(5) { animation-delay: .40s; }
.faq__item:nth-child(6) { animation-delay: .48s; }

.faq__item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,.07), transparent 68%);
	opacity: 0;
	transition: opacity .3s;
	pointer-events: none;
}

.faq__item:hover {
	border-color: rgba(16,185,129,.35);
	box-shadow: 0 6px 28px rgba(16,185,129,.1);
}

.faq__item:hover::before {
	opacity: 1;
}

.faq__item[open] {
	border-color: rgba(16,185,129,.48);
	background: linear-gradient(170deg, rgba(16,185,129,.05) 0%, var(--panel) 60%);
	box-shadow: 0 8px 36px rgba(16,185,129,.12);
}

.faq__item[open]::before {
	opacity: 1;
}

/* ── Left emerald accent stripe when open ───────────────────────── */
.faq__item[open]::after {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: var(--emerald);
	box-shadow: 0 0 12px rgba(16,185,129,.5);
}

/* ── Summary row ────────────────────────────────────────────────── */
.faq__summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 20px 20px 22px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.faq__summary::-webkit-details-marker { display: none; }

.faq__num {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(16,185,129,.1);
	border: 1px solid rgba(16,185,129,.25);
	color: var(--emerald);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s, border-color .25s;
}

.faq__item[open] .faq__num {
	background: rgba(16,185,129,.18);
	border-color: rgba(16,185,129,.5);
}

.faq__q {
	flex: 1;
	font-size: 15.5px;
	font-weight: 650;
	line-height: 1.35;
	color: var(--text);
}

.faq__icon {
	position: relative;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s, border-color .25s, transform .3s cubic-bezier(.22,.68,0,1.2);
}

.faq__icon::before,
.faq__icon::after {
	content: '';
	position: absolute;
	background: var(--muted);
	border-radius: 2px;
	transition: transform .28s cubic-bezier(.22,.68,0,1.2), background .2s;
}

.faq__icon::before {
	width: 12px;
	height: 2px;
}

.faq__icon::after {
	width: 2px;
	height: 12px;
}

.faq__item[open] .faq__icon {
	background: rgba(16,185,129,.12);
	border-color: rgba(16,185,129,.35);
	transform: rotate(45deg);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
	background: var(--emerald);
}

/* ── Answer body ────────────────────────────────────────────────── */
.faq__body {
	padding: 0 22px 20px 72px;
	overflow: hidden;
}

.faq__body p {
	margin: 0;
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.7;
}

/* ── Light theme overrides ──────────────────────────────────────── */
body.theme-light .faq__head {
	border-bottom-color: rgba(15,23,42,.1) !important;
}

body.theme-light .faq__counter {
	background: rgba(16,185,129,.08);
	border-color: rgba(16,185,129,.25);
}

body.theme-light .faq__item {
	background: rgba(255,255,255,.92);
	border-color: rgba(15,23,42,.1);
}

body.theme-light .faq__item:hover {
	border-color: rgba(16,185,129,.4);
	box-shadow: 0 6px 24px rgba(16,185,129,.09);
}

body.theme-light .faq__item[open] {
	background: linear-gradient(170deg, rgba(236,253,245,.9) 0%, rgba(255,255,255,.95) 60%);
	border-color: rgba(16,185,129,.42);
	box-shadow: 0 8px 32px rgba(16,185,129,.1);
}

body.theme-light .faq__q {
	color: #0f172a;
}

body.theme-light .faq__icon {
	background: rgba(15,23,42,.04);
	border-color: rgba(15,23,42,.1);
}

body.theme-light .faq__icon::before,
body.theme-light .faq__icon::after {
	background: rgba(15,23,42,.5);
}

body.theme-light .faq__item[open] .faq__icon::before,
body.theme-light .faq__item[open] .faq__icon::after {
	background: var(--emerald);
}

.page-hero,
.article__header {
	padding: 34px 0 24px;
}

.page-hero__panel {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	padding: 42px;
}

.page-hero__panel::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent 38%),
		linear-gradient(225deg, rgba(245, 158, 11, 0.08), transparent 28%);
}

/* ══════════════════════════════════════════════════════════════════
   ARTICLE (single post) — professional redesign
   ══════════════════════════════════════════════════════════════════ */

.art {
	padding-bottom: 80px;
}

/* ── Header ─────────────────────────────────────────────────────── */
.art__header {
	padding: 40px 0 36px;
}

.art__header-inner {
	width: min(740px, calc(100% - 48px));
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.art__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: color 0.2s;
}
.art__back:hover       { color: var(--emerald); }
.art__back svg         { flex-shrink: 0; }

.art__tags {
	display: flex;
	align-items: center;
	gap: 10px;
}

.art__tag {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.25);
	color: var(--emerald);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.art__read {
	font-size: 13px;
	color: var(--muted);
}

.art__title {
	margin: 0;
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.08;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.02em;
}

.art__meta {
	padding-top: 4px;
	border-top: 1px solid var(--panel-border);
}

.art__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.art__author-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--emerald), #059669);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	color: #fff;
	flex-shrink: 0;
	text-transform: uppercase;
}

.art__author-name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
}

.art__date {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-top: 1px;
}

/* ── Cover ──────────────────────────────────────────────────────── */
.art__cover {
	width: min(1080px, calc(100% - 48px));
	margin: 0 auto 48px;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 2 / 1;
	border: 1px solid var(--panel-border);
	box-shadow: var(--shadow);
}

.art__cover-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── Body ───────────────────────────────────────────────────────── */
.art__body {
	width: min(740px, calc(100% - 48px));
	margin: 0 auto;
	color: #d1d5db;
	font-size: 17px;
	line-height: 1.72;
}

.art__body h2 {
	margin: 44px 0 14px;
	color: var(--text);
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.18;
	font-weight: 800;
}

.art__body h3 {
	margin: 30px 0 10px;
	color: var(--text);
	font-size: clamp(17px, 1.8vw, 22px);
	font-weight: 700;
}

.art__body p {
	margin: 0 0 18px;
}

.art__body ul,
.art__body ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.art__body li {
	margin-bottom: 8px;
}

.art__body a {
	color: var(--emerald);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.art__body strong {
	color: var(--text);
	font-weight: 700;
}

.art__body code {
	padding: 2px 7px;
	border-radius: 6px;
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--panel-border);
	font-size: 0.88em;
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.art__body blockquote {
	margin: 28px 0;
	padding: 18px 24px;
	border-left: 3px solid var(--emerald);
	background: rgba(16, 185, 129, 0.05);
	border-radius: 0 12px 12px 0;
	color: var(--text);
	font-style: italic;
}

.art__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 15px;
}

.art__body th,
.art__body td {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid var(--panel-border);
}

.art__body th {
	color: var(--text);
	font-weight: 700;
	background: rgba(255,255,255,0.03);
}

/* ── Bottom CTA ─────────────────────────────────────────────────── */
.art__cta-wrap {
	width: min(740px, calc(100% - 48px));
	margin: 48px auto 0;
}

.art__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 32px 36px;
}

.art__cta h3 {
	margin: 8px 0 6px;
	font-size: 20px;
	line-height: 1.2;
}

.art__cta p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.art__cta-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 760px) {
	.art__cover { aspect-ratio: 16 / 9; border-radius: 16px; }
	.art__cta { flex-direction: column; align-items: flex-start; padding: 24px; }
	.art__cta-actions { flex-direction: row; }
}

/* ── Light theme ─────────────────────────────────────────────────── */
body.theme-light .art__body   { color: #374151; }
body.theme-light .art__back   { color: #6b7280; }
body.theme-light .art__body code { background: rgba(0,0,0,0.05); }

/* ── Light theme: single post ───────────────────────────────────── */
body.theme-light .ph {
	border-bottom-color: rgba(15,23,42,0.08);
}
body.theme-light .ph__glow--green {
	background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
}
body.theme-light .ph__glow--gold {
	background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
}
body.theme-light .ph__back     { color: #64748b; }
body.theme-light .ph__back:hover { color: var(--emerald); }
body.theme-light .ph__title    { color: #0f172a; }
body.theme-light .ph__date     { color: #64748b; }

body.theme-light .pc__frame {
	box-shadow:
		0 0 0 1px rgba(15,23,42,0.08),
		0 20px 50px rgba(15,23,42,0.12);
}

body.theme-light .post-content        { color: #1e293b; }
body.theme-light .post-content h2,
body.theme-light .post-content h3     { color: #0f172a; }
body.theme-light .post-content p,
body.theme-light .post-content li     { color: #334155; }
body.theme-light .post-content strong { color: #0f172a; }
body.theme-light .post-content code {
	background: rgba(15,23,42,0.06);
	border-color: rgba(15,23,42,0.12);
	color: #0f172a;
}
body.theme-light .post-content blockquote {
	background: rgba(16,185,129,0.06);
	border-left-color: var(--emerald);
	color: #1e293b;
}
body.theme-light .post-content th { background: rgba(15,23,42,0.04); color: #0f172a; }
body.theme-light .post-content th,
body.theme-light .post-content td { border-color: rgba(15,23,42,0.1); }

body.theme-light .post-nav__item {
	background: rgba(15,23,42,0.03);
	border-color: rgba(15,23,42,0.1);
}
body.theme-light .post-nav__item:hover {
	background: rgba(16,185,129,0.05);
	border-color: rgba(16,185,129,0.3);
}
body.theme-light .post-nav__title { color: #0f172a; }

body.theme-light .ps-widget {
	background: rgba(255,255,255,0.7);
	border-color: rgba(15,23,42,0.1);
}
body.theme-light .ps-widget__head    { color: #0f172a; }
body.theme-light .ps-item            { border-bottom-color: rgba(15,23,42,0.06); }
body.theme-light .ps-item__link:hover { background: rgba(15,23,42,0.04); }
body.theme-light .ps-item__title     { color: #0f172a; }
body.theme-light .ps-item__meta      { color: #64748b; }
body.theme-light .ps-widget__all     { border-top-color: rgba(15,23,42,0.08); }
body.theme-light .ps-widget__all:hover { background: rgba(16,185,129,0.05); }

body.theme-light .ps-cta            { background: rgba(255,255,255,0.8); }
body.theme-light .ps-cta__title     { color: #0f172a; }
body.theme-light .ps-cta__text      { color: #475569; }

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST  (.ph / .pc / .post-content / .post-cta)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Post Header (.ph) ──────────────────────────────────────────── */
.ph {
	position: relative;
	padding: 48px 24px 44px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* фоновые свечения */
.ph__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}
.ph__glow--green {
	width: 560px;
	height: 560px;
	top: -180px;
	left: -120px;
	background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
}
.ph__glow--gold {
	width: 380px;
	height: 380px;
	bottom: -120px;
	right: -80px;
	background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
}

.ph__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ← Блог */
.ph__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
	align-self: flex-start;
}
.ph__back:hover { color: var(--emerald); }
.ph__back svg   { flex-shrink: 0; }

/* бейджи */
.ph__badges {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ph__badge {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.ph__badge--cat {
	background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
	color: #fff;
}

.ph__badge--time {
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	color: var(--muted);
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	font-size: 12px;
}

/* заголовок */
.ph__title {
	margin: 0;
	font-size: clamp(22px, 2.8vw, 38px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #fff;
}

/* декоративная линия */
.ph__rule {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ph__rule-line {
	display: block;
	width: 56px;
	height: 3px;
	background: linear-gradient(to right, var(--emerald), rgba(16,185,129,0));
	border-radius: 3px;
}

.ph__rule-dot {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

/* дата */
.ph__date {
	margin: 0;
	color: var(--muted-2);
	font-size: 13px;
	font-weight: 400;
}

/* ── Post Cover (.pc__frame) ────────────────────────────────────── */
.pc__frame {
	position: relative;
	margin: 0 0 0 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow:
		0 0 0 1px rgba(255,255,255,0.07),
		0 24px 60px rgba(0,0,0,0.5),
		0 0 40px rgba(16,185,129,0.05);
}

.pc__img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.pc__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 45%);
	pointer-events: none;
}

/* ── Article content body ─────────────────────────────────────── */
.post-content {
	padding: 28px 0 24px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--text);
}

.post-content h2 {
	margin: 48px 0 16px;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.post-content h3 {
	margin: 36px 0 12px;
	font-size: clamp(18px, 2.4vw, 22px);
	font-weight: 600;
	color: var(--text);
}

.post-content p {
	margin: 0 0 20px;
	color: #c9cdd4;
}

.post-content ul,
.post-content ol {
	padding-left: 24px;
	margin: 0 0 20px;
}

.post-content li {
	margin-bottom: 8px;
	color: #c9cdd4;
}

.post-content a {
	color: var(--emerald);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.post-content a:hover { color: #fff; }

.post-content strong { color: #fff; }

.post-content code {
	font-family: "JetBrains Mono", "Fira Code", monospace;
	font-size: 0.87em;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 5px;
	padding: 2px 7px;
}

.post-content blockquote {
	margin: 32px 0;
	padding: 18px 24px;
	border-left: 4px solid var(--emerald);
	background: rgba(16,185,129,0.06);
	border-radius: 0 12px 12px 0;
	color: var(--text);
	font-style: italic;
}

.post-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 15px;
}
.post-content th,
.post-content td {
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,0.1);
	text-align: left;
}
.post-content th {
	background: rgba(255,255,255,0.05);
	color: #fff;
	font-weight: 600;
}

.post-content img {
	max-width: 100%;
	border-radius: 14px;
	margin: 12px 0 20px;
}

/* ── Two-column layout ──────────────────────────────────────────── */
.post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 32px 24px 80px;
	align-items: start;
}

.post-layout__side {
	position: sticky;
	/* --nav-h задаётся JS динамически; fallback 80px */
	top: calc(var(--nav-h, 80px) + 24px);
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-height: calc(100vh - var(--nav-h, 80px) - 48px);
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.post-layout__side::-webkit-scrollbar { display: none; }

/* ── Prev / Next navigation ─────────────────────────────────────── */
.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 40px 0 32px;
}

.post-nav__item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
	padding: 20px;
	border-radius: 16px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	transition: border-color 0.2s, background 0.2s;
}
.post-nav__item:hover {
	border-color: rgba(16,185,129,0.35);
	background: rgba(16,185,129,0.04);
}

.post-nav__item--next { text-align: right; }

.post-nav__label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--emerald);
}

.post-nav__card {
	display: flex;
	align-items: center;
	gap: 12px;
}
.post-nav__item--next .post-nav__card {
	flex-direction: row-reverse;
}

.post-nav__img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
}

.post-nav__title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── CTA block ───────────────────────────────────────────────── */
.post-cta-wrap {
	margin: 0 0 32px;
}

.post-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 36px 40px;
	border-radius: var(--radius);
}

.post-cta__text .eyebrow {
	margin-bottom: 6px;
}

.post-cta__text h3 {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.post-cta__text p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.post-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
}

/* ── Sidebar widgets ─────────────────────────────────────────── */
.ps-widget {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	overflow: hidden;
}

.ps-widget__head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 18px 20px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.ps-widget__icon { color: var(--emerald); flex-shrink: 0; }

.ps-list {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.ps-item { border-bottom: 1px solid rgba(255,255,255,0.04); }
.ps-item:last-child { border-bottom: none; }

.ps-item__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	text-decoration: none;
	transition: background 0.18s;
}
.ps-item__link:hover { background: rgba(255,255,255,0.04); }

.ps-item__img-wrap {
	width: 56px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
}

.ps-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.ps-item__link:hover .ps-item__img { transform: scale(1.07); }

.ps-item__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.ps-item__title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ps-item__link:hover .ps-item__title { color: var(--emerald); }

.ps-item__meta {
	font-size: 11px;
	color: var(--muted-2);
}

.ps-widget__all {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 20px;
	border-top: 1px solid rgba(255,255,255,0.06);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--emerald);
	text-decoration: none;
	transition: background 0.18s;
}
.ps-widget__all:hover { background: rgba(16,185,129,0.06); }

/* Sidebar CTA */
.ps-cta {
	padding: 28px 24px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ps-cta__icon { color: var(--emerald); }

.ps-cta__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.ps-cta__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
}

.btn--sm {
	padding: 10px 20px;
	font-size: 13px;
	align-self: flex-start;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
	.post-layout {
		grid-template-columns: 1fr;
	}
	.post-layout__side {
		position: static;
		/* на мобиле сайдбар идёт после контента */
	}
}

@media (max-width: 680px) {
	.ph { padding: 48px 20px 52px; }
	.ph__glow--green { width: 280px; height: 280px; }
	.ph__glow--gold  { width: 200px; height: 200px; }
	.pc  { padding: 0 20px; }
	.pc__frame { border-radius: 14px; }
	.post-layout { padding: 0 20px 60px; gap: 28px; }
	.post-content { padding: 32px 0 24px; font-size: 16px; }
	.post-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
	.post-cta__actions { flex-direction: row; flex-wrap: wrap; }
	.post-nav { grid-template-columns: 1fr; }
}

.page-hero__inner,
.article__inner {
	position: relative;
	z-index: 1;
}

.page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
	gap: 26px;
	align-items: center;
}

.page-hero h1,
.article__header h1 {
	margin-bottom: 16px;
	font-size: clamp(46px, 5.5vw, 74px);
	line-height: 0.94;
	font-weight: 800;
}

.page-hero__media img,
.article__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero__media {
	overflow: hidden;
	border-radius: 24px;
}

.article__image {
	overflow: hidden;
	width: min(1120px, calc(100% - 48px));
	height: min(52vw, 560px);
	margin: 0 auto;
	border-radius: 30px;
	border: 1px solid var(--panel-border);
	box-shadow: var(--shadow);
}

.content-body,
.article__body {
	padding: 34px 0 84px;
	color: #d1d5db;
	font-size: 17px;
	line-height: 1.62;
}

.content-body h2,
.article__body h2 {
	margin: 38px 0 14px;
	color: var(--text);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.08;
	font-weight: 800;
}

.content-body h3,
.article__body h3 {
	margin: 28px 0 10px;
	color: var(--text);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.content-body p,
.article__body p,
.content-body li,
.article__body li {
	color: #b9c1cb;
}

.content-body ul,
.content-body ol,
.article__body ul,
.article__body ol {
	padding-left: 24px;
}

.footer {
	padding: 28px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: var(--muted-2);
	font-size: 13px;
}

.scroll-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid var(--panel-border);
	border-radius: 16px;
	background: rgba(14, 14, 14, 0.82);
	backdrop-filter: blur(18px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
	color: var(--text);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px) scale(0.96);
	pointer-events: none;
	cursor: pointer;
	transition: opacity 220ms ease, transform 240ms ease, visibility 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.scroll-top:hover {
	border-color: rgba(16, 185, 129, 0.45);
	box-shadow: 0 20px 38px rgba(16, 185, 129, 0.2);
	transform: translateY(-2px);
}

.scroll-top__arrow {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	transform: translateY(-1px);
}

body.has-neon-cursor,
body.has-neon-cursor * {
	cursor: none !important;
}

.neon-cursor-aura {
	position: fixed;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
	overflow: hidden;
	pointer-events: none;
	z-index: 9999;
	transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
	transition: width 300ms ease, height 300ms ease;
	animation: cursorMorphOuter 3.6s ease-in-out infinite alternate;
	will-change: transform, width, height, border-radius;
	backface-visibility: hidden;
}

.neon-cursor-aura::before {
	content: '';
	position: absolute;
	inset: -1px;
	background: conic-gradient(
		from 0deg,
		#00e599   0%,
		#06b6d4  18%,
		#7b2fff  34%,
		#e040fb  48%,
		#ff6b35  60%,
		#ffcc00  70%,
		#ffffff  75%,
		#ffcc00  80%,
		#06b6d4  90%,
		#00e599 100%
	);
	mask-image: radial-gradient(circle at center, transparent 52%, black 64%);
	-webkit-mask-image: radial-gradient(circle at center, transparent 52%, black 64%);
	animation: cursorRingStream 3s linear infinite;
}

.neon-cursor-ring {
	display: none;
}

.neon-cursor-aura::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	background: rgba(255, 255, 255, 0.92);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	animation: cursorTriangleSpin 2s linear infinite;
}

body.theme-light .neon-cursor-aura::after {
	background: rgba(15, 23, 42, 0.85);
}

.neon-cursor-dot {
	display: none;
}

@keyframes cursorRingStream {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes cursorTriangleSpin {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cursorMorphOuter {
	0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
	30%  { border-radius: 42% 58% 65% 35% / 62% 38% 55% 45%; }
	60%  { border-radius: 65% 35% 40% 60% / 38% 62% 48% 52%; }
	100% { border-radius: 48% 52% 58% 42% / 55% 45% 62% 38%; }
}

@keyframes cursorMorphInner {
	0%   { border-radius: 44% 56% 38% 62% / 62% 44% 56% 38%; }
	35%  { border-radius: 60% 40% 55% 45% / 40% 58% 42% 60%; }
	70%  { border-radius: 38% 62% 48% 52% / 55% 38% 62% 40%; }
	100% { border-radius: 54% 46% 62% 38% / 42% 56% 38% 62%; }
}

@media (pointer: coarse) {
	.neon-cursor-aura,
	.neon-cursor-ring,
	.neon-cursor-dot {
		display: none !important;
	}
}

.inline-editor {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 90;
	display: flex;
	gap: 8px;
	padding: 8px;
	border: 1px solid var(--panel-border);
	border-radius: 14px;
	background: rgba(8, 8, 8, 0.88);
	backdrop-filter: blur(14px);
}

.inline-editor button {
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.inline-editor__save:disabled {
	opacity: 0.6;
	cursor: default;
}

.inline-editor__hint {
	display: flex;
	align-items: center;
	padding: 0 8px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	white-space: nowrap;
}

.inline-editor-active [data-inline-option] {
	outline: 1px dashed rgba(16, 185, 129, 0.56);
	outline-offset: 4px;
	border-radius: 6px;
}

body.theme-light .scroll-top {
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

[data-reveal] {
	--reveal-delay: 0ms;
	transform: translate3d(0, 0, 0);
	transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1), filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Services Hub Hero ───────────────────────────── */

@keyframes hubBlobDrift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%       { transform: translate(22px, -18px) scale(1.06); }
	66%       { transform: translate(-16px, 14px) scale(0.95); }
}

@keyframes hubFadeUp {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes hubBadgeIn {
	from { opacity: 0; transform: translateY(14px) scale(0.95); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hub-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 60px;
}

.hub-hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.hub-hero__blob--l {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0, 229, 153, 0.12) 0%, transparent 68%);
	top: -80px;
	left: -100px;
	animation: hubBlobDrift 16s ease-in-out infinite;
}

.hub-hero__blob--r {
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(0, 229, 153, 0.06) 0%, transparent 68%);
	bottom: -60px;
	right: -60px;
	animation: hubBlobDrift 20s ease-in-out infinite reverse;
}

.hub-hero__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 56px;
}

.hub-hero__copy {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.hub-hero__eyebrow {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	animation: hubFadeUp 0.55s ease both;
	animation-delay: 0.05s;
}

.hub-hero__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.022em;
	color: var(--fg);
	animation: hubFadeUp 0.55s ease both;
	animation-delay: 0.12s;
}

.hub-hero__lead {
	margin: 0;
	max-width: 52ch;
	font-size: 1rem;
	line-height: 1.62;
	color: var(--muted);
	animation: hubFadeUp 0.55s ease both;
	animation-delay: 0.2s;
}

.hub-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	animation: hubFadeUp 0.55s ease both;
	animation-delay: 0.3s;
}

.hub-hero__badges {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hub-badge {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 18px;
	min-width: 180px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: 14px;
	animation: hubBadgeIn 0.5s ease both;
}

.hub-badge:nth-child(1) { animation-delay: 0.15s; }
.hub-badge:nth-child(2) { animation-delay: 0.24s; }
.hub-badge:nth-child(3) { animation-delay: 0.33s; }
.hub-badge:nth-child(4) { animation-delay: 0.42s; }

.hub-badge__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.hub-badge strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--fg);
}

body.theme-light .hub-hero__title { color: #0f172a; }

body.theme-light .hub-badge {
	background: #ffffff;
	border-color: #e2e8f0;
}

body.theme-light .hub-badge strong { color: #0f172a; }
body.theme-light .hub-badge__label { color: #94a3b8; }

/* ── END Services Hub Hero ───────────────────────── */

.services-hub-hero .page-hero__panel {
	padding: 40px 42px;
}

.services-hub-hero__grid {
	grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.84fr);
	gap: 30px;
	align-items: stretch;
}

.services-hub-hero__copy {
	display: grid;
	align-content: start;
	gap: 0;
}

.services-hub-hero h1 {
	max-width: 10.2ch;
	margin-bottom: 16px;
	font-size: clamp(46px, 5vw, 76px);
	line-height: 0.92;
}

.services-hub-hero p {
	max-width: 40rem;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.64;
	color: var(--muted);
}

.services-hub-hero .hero-actions {
	margin-top: 22px;
}

.services-hub-hero__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.services-hub-hero__quick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.services-hub-hero__quick:hover {
	transform: translateY(-2px);
	border-color: rgba(16, 185, 129, 0.24);
	background: rgba(16, 185, 129, 0.08);
}

.services-hub-hero__side {
	display: grid;
	gap: 18px;
	align-content: start;
}

.services-hub-hero__card {
	position: relative;
	overflow: hidden;
	padding: 26px 28px;
	border: 1px solid rgba(16, 185, 129, 0.16);
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 34%);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.services-hub-hero__card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
	transform: translateX(-120%);
	animation: contactStepsSweep 8.5s ease-in-out infinite;
	pointer-events: none;
}

.services-hub-hero__card span {
	display: inline-flex;
	margin-bottom: 14px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.services-hub-hero__card strong {
	display: block;
	max-width: 18ch;
	margin-bottom: 14px;
	font-size: 28px;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.services-hub-hero__card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.services-hub-hero__card li {
	position: relative;
	padding-left: 18px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.56;
}

.services-hub-hero__card li::before {
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(135deg, var(--emerald), var(--gold));
	box-shadow: 0 0 14px rgba(16, 185, 129, 0.26);
}

.services-hub-hero__media {
	aspect-ratio: 16 / 10;
	border: 1px solid rgba(16, 185, 129, 0.14);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.services-hub__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 26px;
}

.services-hub__head .section__intro {
	max-width: 38rem;
	margin: 0;
}

.services-hub-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.services-hub-grid--resources {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-hub-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 26px;
	border: 1px solid var(--panel-border);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 34%);
	box-shadow: var(--shadow);
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-hub-card:hover {
	transform: translateY(-6px);
	border-color: rgba(16, 185, 129, 0.22);
	box-shadow: 0 28px 54px rgba(0, 0, 0, 0.22);
}

.services-hub-card__top span {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--emerald);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.services-hub-card h3 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.services-hub-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.62;
}

.services-hub-card__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.services-hub-card__list li {
	position: relative;
	padding-left: 18px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
}

.services-hub-card__list li::before {
	position: absolute;
	left: 0;
	top: 0.58em;
	width: 7px;
	height: 7px;
	content: "";
	border-radius: 999px;
	background: var(--emerald);
}

.services-hub-card__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
}

.services-hub-card__link::after {
	content: "\2192";
	font-size: 16px;
	line-height: 1;
	transform: translateX(0);
	transition: transform 0.25s ease;
}

.services-hub-card:hover .services-hub-card__link::after {
	transform: translateX(4px);
}

.services-hub-card--resource {
	min-height: 100%;
}

.services-hub-formats {
	display: grid;
	grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
	gap: 20px;
	align-items: stretch;
}

.services-hub-formats__intro,
.services-hub-format-card,
.services-hub-cta {
	border-radius: 28px;
}

.services-hub-formats__intro {
	padding: 30px;
}

.services-hub-formats__intro h2,
.services-hub-cta h2 {
	margin-bottom: 14px;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.04;
}

.services-hub-formats__intro p,
.services-hub-cta p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.62;
}

.services-hub-formats__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.services-hub-format-card {
	display: flex;
	flex-direction: column;
	padding: 26px;
}

.services-hub-format-card h3 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.08;
}

.services-hub-format-card p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.58;
}

.services-hub-format-card__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.services-hub-format-card__link::after {
	content: "\2192";
	font-size: 16px;
	line-height: 1;
}

.services-hub-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 30px 32px;
}

.services-hub-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 1280px) {
	.services-hub-hero__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-hub-hero h1 {
		max-width: 12ch;
	}

	.services-hub-hero__side {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
		align-items: stretch;
	}

	.services-hub-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-hub-grid--resources {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-hub-formats {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 980px) {
	.services-hub-hero .page-hero__panel {
		padding: 34px 28px;
	}

	.services-hub-hero__side {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-hub__head {
		flex-direction: column;
		align-items: start;
	}

	.services-hub-grid,
	.services-hub-grid--resources,
	.services-hub-formats__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-hub-cta {
		flex-direction: column;
		align-items: start;
	}
}

@media (max-width: 640px) {
	.services-hub-hero .page-hero__panel {
		padding: 24px 18px;
		border-radius: 24px;
	}

	.services-hub-hero h1 {
		max-width: none;
		margin-bottom: 14px;
		font-size: clamp(34px, 11vw, 48px);
		line-height: 0.96;
	}

	.services-hub-hero p {
		font-size: 14px;
		line-height: 1.58;
	}

	.services-hub-hero .hero-actions,
	.services-hub-cta__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	.services-hub-hero .hero-actions .btn,
	.services-hub-cta__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.services-hub-hero__links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.services-hub-hero__quick {
		min-height: 44px;
		padding: 0 12px;
		font-size: 12px;
		text-align: center;
	}

	.services-hub-hero__card,
	.services-hub-card,
	.services-hub-format-card,
	.services-hub-formats__intro,
	.services-hub-cta {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.services-hub-hero__card strong,
	.services-hub-card h3,
	.services-hub-format-card h3 {
		font-size: 22px;
		line-height: 1.12;
	}

	.services-hub-card p,
	.services-hub-card__list li,
	.services-hub-format-card p,
	.services-hub-formats__intro p,
	.services-hub-cta p,
	.services-hub-hero__card li {
		font-size: 14px;
		line-height: 1.54;
	}

	.services-hub-formats__intro h2,
	.services-hub-cta h2 {
		font-size: clamp(26px, 8vw, 34px);
	}

	.services-hub-hero__media {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 860px) {
	.hub-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hub-hero__badges {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.hub-badge {
		flex: 1 1 calc(50% - 5px);
		min-width: 0;
	}

	.hub-hero {
		padding: 52px 0 44px;
	}
}

@media (max-width: 560px) {
	.hub-hero__title {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}

	.hub-hero__actions .btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.hub-hero {
		padding: 44px 0 36px;
	}
}

@media (max-width: 380px) {
	.hub-badge {
		flex: 1 1 100%;
	}
}

@media (max-width: 480px) {
	.services-hub-hero__links {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-hub-hero h1 {
		font-size: 32px;
	}
}

body.theme-light .services-hub-hero__card,
body.theme-light .services-hub-card,
body.theme-light .services-hub-format-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.04), transparent 34%);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

body.theme-light .services-hub-hero__quick {
	background: rgba(255, 255, 255, 0.7);
}

.service-hero__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
}

.service-fact,
.service-mini-card,
.service-step,
.service-cta {
	border: 1px solid var(--panel-border);
	border-radius: 24px;
	background: var(--panel);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
}

.service-fact {
	padding: 18px 20px;
}

.service-fact__value {
	display: block;
	margin-bottom: 6px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.service-fact__label {
	color: var(--muted);
	font-size: 14px;
}

.service-section-head h2 {
	font-size: clamp(26px, 2.8vw, 36px);
}

.service-includes,
.service-steps,
.service-timeline,
.service-cases {
	display: grid;
	gap: 18px;
}

.service-includes {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ══════════════════════════════════════════════════════════════════
   CASE CARDS — Premium redesign
   ══════════════════════════════════════════════════════════════════ */
@keyframes caseCardIn {
	from { opacity: 0; transform: translateY(20px) scale(.98); }
	to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.service-cases {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.case-card {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	height: 100%;           /* растягивается до высоты строки грида */
	transition: transform .35s cubic-bezier(.22,.68,0,1.2),
	            border-color .25s,
	            box-shadow .3s;
	animation: caseCardIn .55s cubic-bezier(.22,.68,0,1.1) both;
	animation-delay: calc(var(--case-i, 0) * 0.11s);
}

/* Emerald top accent stripe */
.case-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--emerald) 0%, rgba(16,185,129,.2) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s cubic-bezier(.22,.68,0,1.1);
	z-index: 1;
}

/* Ghost number background */
.case-card::after {
	content: attr(data-num);
	position: absolute;
	right: -8px;
	bottom: -18px;
	font-size: 110px;
	font-weight: 900;
	line-height: 1;
	color: rgba(16,185,129,.035);
	pointer-events: none;
	user-select: none;
	transition: color .3s, transform .3s;
	letter-spacing: -.04em;
}

.case-card:hover {
	transform: translateY(-8px);
	border-color: rgba(16,185,129,.45);
	box-shadow: 0 20px 50px rgba(16,185,129,.14), 0 4px 16px rgba(0,0,0,.3);
}

.case-card:hover::before {
	transform: scaleX(1);
}

.case-card:hover::after {
	color: rgba(16,185,129,.07);
	transform: scale(1.04) translate(-4px, -4px);
}

/* Inner glow on hover */
.case-card__body {
	position: relative;
	z-index: 1;
	padding: 26px 24px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.case-card__body::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,.06), transparent 65%);
	opacity: 0;
	transition: opacity .3s;
	pointer-events: none;
}

.case-card:hover .case-card__body::before {
	opacity: 1;
}

/* Tag badge */
.case-card__tag {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(16,185,129,.1);
	border: 1px solid rgba(16,185,129,.25);
	color: var(--emerald);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

/* Title */
.case-card h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 750;
	line-height: 1.22;
	color: var(--text);
}

/* Description — 4 строки max, у всех карточек одинаково */
.case-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--muted);
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Footer row: index + CTA */
.case-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--panel-border);
}

.case-card__index {
	font-size: 11px;
	font-weight: 800;
	color: rgba(16,185,129,.5);
	letter-spacing: .1em;
}

.case-card__cta {
	font-size: 12px;
	font-weight: 700;
	color: var(--emerald);
	letter-spacing: .04em;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .25s, transform .25s;
}

.case-card:hover .case-card__cta {
	opacity: 1;
	transform: translateX(0);
}

/* ── Case cards light theme ─────────────────────────────────────── */
body.theme-light .case-card {
	background: rgba(255,255,255,.92) !important;
	border-color: rgba(15,23,42,.1) !important;
}

body.theme-light .case-card:hover {
	border-color: rgba(16,185,129,.4) !important;
	box-shadow: 0 20px 48px rgba(16,185,129,.1), 0 4px 12px rgba(15,23,42,.08) !important;
}

body.theme-light .case-card h3 {
	color: #0f172a !important;
}

body.theme-light .case-card p {
	color: rgba(15,23,42,.55) !important;
}

body.theme-light .case-card__foot {
	border-top-color: rgba(15,23,42,.08) !important;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 860px) {
	.service-cases {
		grid-template-columns: 1fr;
	}

	.case-card::after {
		font-size: 80px;
	}
}

@media (max-width: 580px) {
	.case-card__body {
		padding: 20px 18px 18px;
	}

	.case-card h3 {
		font-size: 18px;
	}
}

.service-mini-card {
	padding: 24px;
}

.service-mini-card h3,
.service-step h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
}

.service-steps {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-step {
	padding: 24px;
}

.service-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: rgba(16, 185, 129, 0.1);
	color: var(--emerald);
	font-size: 14px;
	font-weight: 800;
}

.service-timeline {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: 24px;
}

.service-cases {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 32px;
}

.service-cta h2 {
	margin-bottom: 0;
	font-size: clamp(24px, 2.8vw, 34px);
	line-height: 1.08;
}

.price-packages {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.price-package {
	display: flex;
	flex-direction: column;
}

.price-package__list,
.price-factors {
	margin: 18px 0 0;
	padding-left: 20px;
	color: var(--muted);
}

.price-package__list li + li,
.price-factors li + li {
	margin-top: 10px;
}

.price-addons-showcase {
	position: relative;
	margin-top: 22px;
}

.price-addons-showcase::before {
	position: absolute;
	inset: -10% auto auto -8%;
	width: 220px;
	height: 220px;
	content: "";
	border-radius: 999px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.14), transparent 68%);
	filter: blur(12px);
	pointer-events: none;
}

.price-addons-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.price-addon-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px 22px 20px;
	border: 1px solid rgba(16, 185, 129, 0.12);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 38%);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.price-addon-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
	transform: translateX(-125%);
	animation: contactStepsSweep 9s ease-in-out infinite;
	pointer-events: none;
}

.price-addon-card:hover {
	transform: translateY(-6px);
	border-color: rgba(16, 185, 129, 0.24);
	box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
}

.price-addon-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.price-addon-card__top span,
.price-addon-card__top em {
	position: relative;
	z-index: 1;
}

.price-addon-card__top span {
	display: inline-flex;
	color: var(--emerald);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.price-addon-card__top em {
	color: var(--muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.price-addon-card h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 24px;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.price-addon-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.price-addon-card__list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.price-addon-card__list li {
	position: relative;
	padding-left: 18px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
}

.price-addon-card__list li::before {
	position: absolute;
	left: 0;
	top: 0.58em;
	width: 7px;
	height: 7px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gold), var(--emerald));
	box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.price-addon-card__bottom {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-top: auto;
	padding-top: 4px;
}

.price-addon-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(16, 185, 129, 0.18);
	background: rgba(16, 185, 129, 0.08);
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.price-addon-card__link:hover {
	transform: translateY(-2px);
	border-color: rgba(16, 185, 129, 0.3);
	background: rgba(16, 185, 129, 0.12);
}

body.theme-light .price-addon-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.04), transparent 38%);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.theme-light .price-addon-card__link {
	background: rgba(16, 185, 129, 0.06);
}

.quantum-factors {
	position: relative;
	max-width: 1750px;
	padding: 38px 40px 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	background:
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.05), transparent 22%),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.012));
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.quantum-factors__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 44px;
}

.quantum-factors__eyebrow-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.quantum-factors__line {
	width: 56px;
	height: 1px;
	background: var(--gold);
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 0.9s ease 0.18s;
}

.reveal-enhanced .quantum-factors.is-visible .quantum-factors__line {
	transform: scaleX(1);
}

.quantum-factors__eyebrow {
	color: var(--emerald);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

.quantum-factors__title {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	font-size: clamp(42px, 4.6vw, 76px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	filter: blur(10px);
	opacity: 0;
	transform: translateY(12px);
	transition: letter-spacing 1s cubic-bezier(0.19, 1, 0.22, 1), filter 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s ease, transform 0.9s ease;
}

.reveal-enhanced .quantum-factors.is-visible .quantum-factors__title {
	letter-spacing: -0.03em;
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}

.quantum-factors__title span {
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.34);
}

.quantum-factors__summary {
	max-width: 370px;
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	font-style: italic;
	line-height: 1.7;
	text-align: right;
}

.quantum-factors__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.quantum-factors__grid::before {
	position: absolute;
	left: 0;
	right: 0;
	top: 26px;
	height: 1px;
	content: "";
	background: rgba(255, 255, 255, 0.06);
}

.quantum-factors__grid::after {
	position: absolute;
	left: 0;
	top: 26px;
	width: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, var(--emerald), #00b8ff, #7000ff, #ff00ea, var(--gold));
	box-shadow: 0 0 16px rgba(16, 185, 129, 0.26);
	transition: width 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0.28s;
}

.reveal-enhanced .quantum-factors.is-visible .quantum-factors__grid::after {
	width: 100%;
}

.quantum-factor-card {
	position: relative;
	min-height: 220px;
	padding: 0 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease,
		background-color 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
	transition-delay: var(--factor-delay, 0ms);
}

.reveal-enhanced .quantum-factors.is-visible .quantum-factor-card {
	opacity: 1;
	transform: translateY(0);
}

.quantum-factor-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.quantum-factor-card__trace {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(245, 158, 11, 0.66);
	border-radius: 18px;
	opacity: 0;
	clip-path: inset(0 100% 99% 0);
	pointer-events: none;
}

.quantum-factor-card:hover .quantum-factor-card__trace {
	opacity: 0.7;
	animation: quantumDrawBorder 1s linear forwards;
}

.quantum-factor-card__number {
	position: absolute;
	right: 8px;
	bottom: -16px;
	font-size: 114px;
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.035);
	pointer-events: none;
	transition: transform 0.45s ease-out;
}

.quantum-factor-card__indicator {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 14px;
	height: 14px;
	margin-top: 20px;
}

.quantum-factor-card__dot {
	position: absolute;
	inset: 4px;
	border-radius: 999px;
	background: var(--emerald);
	box-shadow: 0 0 10px var(--emerald);
}

.quantum-factor-card__ring {
	position: absolute;
	inset: 0;
	border: 1px solid var(--emerald);
	border-radius: 999px;
	animation: quantumPulseRing 2s infinite;
}

.quantum-factor-card__content {
	position: relative;
	z-index: 2;
	margin-top: 56px;
}

.quantum-factor-card__tag {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.quantum-factor-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.62;
}

@keyframes quantumDrawBorder {
	0% { clip-path: inset(0 100% 99% 0); }
	25% { clip-path: inset(0 0 99% 0); }
	50% { clip-path: inset(0 0 0 99%); }
	75% { clip-path: inset(99% 0 0 0); }
	100% { clip-path: inset(0 0 0 0); }
}

@keyframes quantumPulseRing {
	0% { transform: scale(0.5); opacity: 1; }
	100% { transform: scale(2.5); opacity: 0; }
}

body.theme-light .quantum-factors {
	background:
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.04), transparent 22%),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.06), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
	box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

body.theme-light .quantum-factors__title span {
	-webkit-text-stroke: 1px rgba(15, 23, 42, 0.28);
}

body.theme-light .quantum-factor-card {
	background: rgba(255, 255, 255, 0.72);
}

body.theme-light .quantum-factor-card p {
	color: rgba(15, 23, 42, 0.74);
}

/* ══════════════════════════════════════════════════════════════════
   PRICE PAGE HERO — Premium redesign
   ══════════════════════════════════════════════════════════════════ */
@keyframes priceOrbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%       { transform: translate(18px, -14px) scale(1.06); }
	66%       { transform: translate(-12px, 10px) scale(0.96); }
}
@keyframes priceCardIn {
	from { opacity: 0; transform: translateY(18px) scale(.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes priceCopyIn {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes priceFeaturedPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.0), 0 16px 40px rgba(16,185,129,.18); }
	50%       { box-shadow: 0 0 0 6px rgba(16,185,129,.08), 0 20px 48px rgba(16,185,129,.26); }
}

.price-hero {
	position: relative;
	padding: 52px 0 56px;
	overflow: hidden;
}

/* Фоновые орбы */
.price-hero__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.price-hero__orb--1 {
	width: 500px;
	height: 500px;
	top: -140px;
	left: -100px;
	background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
	animation: priceOrbFloat 12s ease-in-out infinite;
}

.price-hero__orb--2 {
	width: 380px;
	height: 380px;
	bottom: -100px;
	right: 5%;
	background: radial-gradient(circle, rgba(245,158,11,.07) 0%, transparent 70%);
	animation: priceOrbFloat 9s ease-in-out infinite reverse;
}

.price-hero__inner {
	display: grid;
	grid-template-columns: 1fr minmax(0, 420px);
	gap: 60px;
	align-items: center;
}

/* ── Левая часть: текст ─────────────────────────────────────────── */
.price-hero__copy {
	animation: priceCopyIn .55s cubic-bezier(.22,.68,0,1.1) both;
}

.price-hero__copy .eyebrow {
	margin-bottom: 16px;
}

.price-hero__title {
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 800;
	line-height: 1.0;
	margin: 0 0 18px;
	max-width: 10em;
	letter-spacing: -.02em;
}

.price-hero__lead {
	font-size: 16px;
	line-height: 1.65;
	color: var(--muted);
	max-width: 40rem;
	margin: 0 0 28px;
	animation: priceCopyIn .55s .12s cubic-bezier(.22,.68,0,1.1) both;
}

.price-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	animation: priceCopyIn .55s .22s cubic-bezier(.22,.68,0,1.1) both;
}

/* Trust-строка с цифрами */
.price-hero__trust {
	display: flex;
	gap: 28px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--panel-border);
	flex-wrap: wrap;
	animation: priceCopyIn .55s .32s cubic-bezier(.22,.68,0,1.1) both;
}

.price-hero__trust span {
	font-size: 13px;
	color: var(--muted);
	white-space: nowrap;
}

.price-hero__trust strong {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: var(--emerald);
	line-height: 1;
	margin-bottom: 2px;
}

/* ── Правая часть: мини-карточки пакетов ────────────────────────── */
.price-hero__cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.price-hero__card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 16px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	backdrop-filter: blur(16px);
	transition: border-color .25s, transform .3s cubic-bezier(.22,.68,0,1.2);
	animation: priceCardIn .5s cubic-bezier(.22,.68,0,1.1) both;
	animation-delay: calc(var(--phi, 0) * .12s + .2s);
	overflow: hidden;
}

.price-hero__card::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: var(--panel-border);
	transition: background .25s;
}

.price-hero__card:hover {
	border-color: rgba(16,185,129,.3);
	transform: translateX(4px);
}

.price-hero__card:hover::before {
	background: var(--emerald);
}

/* Featured (средний пакет) */
.price-hero__card--featured {
	border-color: rgba(16,185,129,.35);
	background: linear-gradient(135deg, rgba(16,185,129,.08) 0%, var(--panel) 60%);
	animation: priceFeaturedPulse 3s ease-in-out infinite,
	           priceCardIn .5s cubic-bezier(.22,.68,0,1.1) both;
	animation-delay: 0s, calc(var(--phi, 0) * .12s + .2s);
}

.price-hero__card--featured::before {
	background: var(--emerald);
	box-shadow: 0 0 12px rgba(16,185,129,.5);
}

.price-hero__card-label {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	width: 60px;
}

.price-hero__card--featured .price-hero__card-label {
	color: var(--emerald);
}

.price-hero__card-title {
	flex: 1;
	font-size: 14px;
	font-weight: 650;
	color: var(--text);
}

.price-hero__card-price {
	font-size: 16px;
	font-weight: 800;
	color: var(--text);
	white-space: nowrap;
}

.price-hero__card--featured .price-hero__card-price {
	color: var(--emerald);
}

.price-hero__card-badge {
	position: absolute;
	top: -1px;
	right: 16px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #0f172a;
	background: var(--emerald);
	padding: 3px 9px;
	border-radius: 0 0 8px 8px;
}

/* ── Light theme ────────────────────────────────────────────────── */
body.theme-light .price-hero__card {
	background: rgba(255,255,255,.92) !important;
	border-color: rgba(15,23,42,.1) !important;
}

body.theme-light .price-hero__card::before {
	background: rgba(15,23,42,.15) !important;
}

body.theme-light .price-hero__card:hover {
	border-color: rgba(16,185,129,.4) !important;
}

body.theme-light .price-hero__card--featured {
	background: linear-gradient(135deg, rgba(236,253,245,.9) 0%, rgba(255,255,255,.96) 60%) !important;
	border-color: rgba(16,185,129,.35) !important;
}

body.theme-light .price-hero__card-title,
body.theme-light .price-hero__card-price { color: #0f172a !important; }

body.theme-light .price-hero__trust {
	border-top-color: rgba(15,23,42,.1) !important;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.price-hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.price-hero__cards {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.price-hero__card {
		flex: 1 1 calc(33.33% - 8px);
		min-width: 200px;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.price-hero__card::before {
		left: 0; right: 0; top: 0; bottom: auto;
		width: auto;
		height: 3px;
	}

	.price-hero__card:hover {
		transform: translateY(-3px);
	}

	.price-hero__card-label { width: auto; }
}

@media (max-width: 600px) {
	.price-hero__cards {
		flex-direction: column;
	}

	.price-hero__card {
		flex-direction: row;
	}

	.price-hero__trust {
		gap: 18px;
	}

	.price-hero__trust strong {
		font-size: 22px;
	}
}

.price-packages {
	align-items: start;
	gap: 20px;
}

.price-package {
	position: relative;
	min-height: 100%;
	padding: 22px 22px 20px;
	border: 1px solid var(--panel-border);
	background:
		linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(14, 14, 14, 0.92)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 32%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
	transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.price-package::before {
	position: absolute;
	left: 18px;
	right: 18px;
	top: 0;
	height: 2px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(96, 165, 250, 0.8), rgba(148, 163, 184, 0.38));
}

.price-package:nth-child(3)::before {
	background: linear-gradient(90deg, rgba(245, 158, 11, 0.85), rgba(245, 158, 11, 0.22));
}

.price-package:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.price-package.price-card--featured {
	border-color: rgba(16, 185, 129, 0.24);
	background:
		linear-gradient(180deg, rgba(14, 18, 18, 0.96), rgba(12, 16, 16, 0.94)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 34%);
	box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08), 0 26px 70px rgba(0, 0, 0, 0.26);
}

.price-package.price-card--featured::before {
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.92), rgba(52, 211, 153, 0.36));
}

.price-package > span:first-child {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	color: var(--muted-2);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.price-package h3 {
	margin: 0 0 10px;
	font-size: clamp(28px, 2.8vw, 40px);
	line-height: 1.02;
}

.price-package .price-card__price-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	margin: 0 0 14px;
}

.price-package .price-card__price-wrap strong {
	font-size: clamp(22px, 2.5vw, 34px);
	line-height: 1;
	letter-spacing: -0.03em;
}

.price-package .price-card__old {
	font-size: 15px;
	font-style: normal;
	color: var(--muted-2);
	text-decoration: line-through;
}

.price-package p {
	min-height: 72px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.62;
}

.price-package__list {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: grid;
	gap: 10px;
}

.price-package__list li {
	position: relative;
	padding-left: 16px;
	color: var(--muted);
}

.price-package__list li::before {
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 6px;
	height: 6px;
	content: "";
	border-radius: 999px;
	background: var(--emerald);
}

.split-grid {
	align-items: start;
}

.split-grid > .glass-panel {
	height: auto;
}

.split-grid > .glass-panel h2 {
	margin-bottom: 14px;
	font-size: clamp(28px, 2.6vw, 40px);
	line-height: 1.06;
}

.price-addons {
	gap: 0;
	margin-top: 16px;
}

.price-addons-grid {
	gap: 14px;
}

.price-addon-card {
	padding: 18px 18px 16px;
	border-radius: 20px;
}

.price-addon-card h3 {
	font-size: 20px;
}

.price-addon-card p,
.price-addon-card__list li {
	font-size: 13px;
	line-height: 1.56;
}

.price-addon-card__bottom {
	align-items: center;
}

.price-addon-card .price-card__price-wrap {
	margin: 0;
}

.price-addon-card .price-card__price-wrap strong {
	font-size: 18px;
	line-height: 1.12;
}

.price-factors {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: grid;
	gap: 10px;
}

.price-factors li {
	position: relative;
	padding: 14px 16px 14px 30px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.02);
	color: var(--muted);
	font-size: 14px;
	line-height: 1.58;
}

.price-factors li::before {
	position: absolute;
	left: 14px;
	top: 20px;
	width: 6px;
	height: 6px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(180deg, var(--gold), var(--emerald));
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

@media (max-width: 1100px) {
	.quantum-factors {
		padding: 30px 24px 28px;
	}

	.quantum-factors__head {
		flex-direction: column;
		align-items: start;
		margin-bottom: 30px;
	}

	.quantum-factors__summary {
		max-width: none;
		text-align: left;
	}

	.quantum-factors__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quantum-factors__grid::before,
	.quantum-factors__grid::after {
		display: none;
	}

	.price-addons-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.quantum-factors {
		padding: 22px 16px 20px;
		border-radius: 24px;
	}

	.quantum-factors__eyebrow-wrap {
		gap: 12px;
		margin-bottom: 14px;
	}

	.quantum-factors__line {
		width: 42px;
	}

	.quantum-factors__eyebrow {
		font-size: 10px;
		letter-spacing: 0.24em;
	}

	.quantum-factors__title {
		font-size: clamp(30px, 10vw, 42px);
	}

	.quantum-factors__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.quantum-factor-card {
		min-height: 180px;
		padding: 0 16px 16px;
	}

	.quantum-factor-card__number {
		font-size: 84px;
		right: 6px;
		bottom: -10px;
	}

	.quantum-factor-card__content {
		margin-top: 42px;
	}

	.quantum-factor-card p {
		font-size: 13px;
		line-height: 1.56;
	}

	.price-addon-card {
		padding: 18px 16px 16px;
	}

	.price-addon-card h3 {
		font-size: 18px;
	}

	.price-addon-card__top,
	.price-addon-card__bottom {
		flex-direction: column;
		align-items: start;
	}

	.price-addon-card__link {
		width: 100%;
		justify-content: center;
	}
}

.service-cta {
	padding: 24px 28px;
}

.service-cta h2 {
	max-width: 24em;
	font-size: clamp(26px, 2.7vw, 38px);
	line-height: 1.06;
}

body.theme-light .price-package {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.04), transparent 32%);
	border-color: rgba(15, 23, 42, 0.1);
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

body.theme-light .price-package:hover {
	border-color: rgba(15, 23, 42, 0.16);
	box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

body.theme-light .price-package.price-card--featured {
	border-color: rgba(245, 158, 11, 0.28);
	box-shadow: 0 28px 60px rgba(245, 158, 11, 0.12);
}

body.theme-light .price-factors li {
	background: rgba(255, 255, 255, 0.66);
	border-color: rgba(15, 23, 42, 0.08);
}


.price-addon p {
	margin: 0;
	color: var(--muted);
}

.price-addon strong {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
}

.portfolio-showcase {
	display: grid;
	gap: 24px;
}

.portfolio-case {
	overflow: hidden;
	border: 1px solid var(--panel-border);
	border-radius: 30px;
	background: var(--panel);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
}

.portfolio-case__cover img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.portfolio-case__content {
	padding: 28px;
}

.portfolio-case__tag {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.portfolio-case__content > h2 {
	margin: 12px 0 20px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.04;
}

.portfolio-case__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 22px;
}

.portfolio-case__item {
	padding: 20px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.03);
}

.portfolio-case__item h3 {
	margin: 0 0 10px;
	font-size: 17px;
}

.portfolio-case__item p,
.portfolio-case__stack {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.portfolio-case__stack {
	padding-left: 18px;
}

.portfolio-case__stack li + li {
	margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   PORTFOLIO HERO — compact, animated, premium redesign
   ══════════════════════════════════════════════════════════════════ */

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes pphFadeUp {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes pphFadeRight {
	from { opacity: 0; transform: translateX(-18px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes pphSlideLeft {
	from { opacity: 0; transform: translateX(32px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes pphGlowPulse {
	0%, 100% { opacity: 0.55; transform: scale(1); }
	50%       { opacity: 0.9;  transform: scale(1.18); }
}
@keyframes pphFeatureIn {
	from { opacity: 0; transform: translateX(-12px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes pphBorderGlow {
	0%, 100% { border-color: rgba(16, 185, 129, 0.18); }
	50%       { border-color: rgba(16, 185, 129, 0.45); }
}
@keyframes pphOrb {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%       { transform: translate(18px, -12px) scale(1.08); }
	66%       { transform: translate(-10px, 16px) scale(0.95); }
}

/* ── Outer panel ───────────────────────────────────────────────── */
.portfolio-premium-hero .page-hero__panel,
.portfolio-quantum-case {
	position: relative;
	overflow: hidden;
}

.portfolio-premium-hero .page-hero__panel {
	padding: 40px 42px;
}

/* Animated glow orbs */
.portfolio-premium-hero .page-hero__panel::before,
.portfolio-premium-hero .page-hero__panel::after {
	position: absolute;
	border-radius: 999px;
	content: "";
	pointer-events: none;
	filter: blur(28px);
}

.portfolio-premium-hero .page-hero__panel::before {
	inset: auto auto -10% -6%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 68%);
	animation: pphOrb 9s ease-in-out infinite;
}

.portfolio-premium-hero .page-hero__panel::after {
	inset: -14% -6% auto auto;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.10), transparent 65%);
	animation: pphOrb 12s ease-in-out infinite reverse;
}

/* ── Grid ──────────────────────────────────────────────────────── */
.portfolio-premium-hero__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
	align-items: center;
	gap: 40px;
}

/* ── Copy column ───────────────────────────────────────────────── */
.portfolio-premium-hero__copy {
	display: grid;
	gap: 18px;
	align-content: center;
}

.portfolio-premium-hero__copy .eyebrow {
	animation: pphFadeRight 0.55s cubic-bezier(0.22,1,0.36,1) both;
	animation-delay: 0.08s;
}

.portfolio-premium-hero__copy h1 {
	max-width: 640px;
	font-size: clamp(34px, 3.8vw, 52px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	animation: pphFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both;
	animation-delay: 0.16s;
}

.portfolio-premium-hero__copy > p {
	max-width: 520px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
	animation: pphFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both;
	animation-delay: 0.24s;
}

.portfolio-premium-hero__copy .hero-actions {
	animation: pphFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
	animation-delay: 0.34s;
}

/* ── Quick links ───────────────────────────────────────────────── */
.portfolio-premium-hero__quicklinks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	animation: pphFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
	animation-delay: 0.44s;
}

.portfolio-premium-hero__quicklinks a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-premium-hero__quicklinks a:hover {
	background: rgba(16, 185, 129, 0.1);
	border-color: rgba(16, 185, 129, 0.38);
	color: var(--emerald);
	transform: translateY(-2px);
}

/* ── Side / summary card ───────────────────────────────────────── */
.portfolio-premium-hero__side {
	display: flex;
	align-items: stretch;
	animation: pphSlideLeft 0.7s cubic-bezier(0.22,1,0.36,1) both;
	animation-delay: 0.20s;
}

.portfolio-premium-hero__summary {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	padding: 28px;
	border: 1px solid rgba(16, 185, 129, 0.18);
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%),
		radial-gradient(circle at 90% 10%, rgba(16,185,129,0.14) 0%, transparent 50%);
	backdrop-filter: blur(20px);
	box-shadow:
		0 0 0 1px rgba(16,185,129,0.08) inset,
		0 20px 48px rgba(0,0,0,0.22);
	overflow: hidden;
	animation: pphBorderGlow 4s ease-in-out infinite;
	animation-delay: 0.8s;
}

/* Decorative top gradient line */
.portfolio-premium-hero__summary::before {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	content: "";
	background: linear-gradient(90deg, var(--emerald), rgba(6,182,212,0.6), transparent);
	border-radius: 24px 24px 0 0;
}

/* Subtle corner glow */
.portfolio-premium-hero__summary::after {
	position: absolute;
	top: -40px; right: -40px;
	width: 180px; height: 180px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 65%);
	content: "";
	pointer-events: none;
	animation: pphGlowPulse 5s ease-in-out infinite;
}

.pph-summary__label {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--emerald);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0.9;
}

.pph-summary__title {
	display: block;
	margin-bottom: 22px;
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

/* ── Feature list ──────────────────────────────────────────────── */
.pph-summary__features {
	display: grid;
	gap: 0;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 14px;
	overflow: hidden;
}

.pph-summary__features li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 11px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	opacity: 0;
	animation: pphFeatureIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}

.pph-summary__features li:last-child { border-bottom: 0; }

.pph-summary__features li:nth-child(1) { animation-delay: 0.55s; }
.pph-summary__features li:nth-child(2) { animation-delay: 0.68s; }
.pph-summary__features li:nth-child(3) { animation-delay: 0.81s; }
.pph-summary__features li:nth-child(4) { animation-delay: 0.94s; }

.pph-summary__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(16, 185, 129, 0.1);
	color: var(--emerald);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.pph-summary__note {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
	opacity: 0.8;
}

/* ── Light theme overrides ─────────────────────────────────────── */
body.theme-light .portfolio-premium-hero__summary {
	background:
		linear-gradient(145deg, rgba(255,255,255,0.92), rgba(240,253,248,0.88));
	border-color: rgba(16, 185, 129, 0.22);
	box-shadow:
		0 0 0 1px rgba(16,185,129,0.12) inset,
		0 16px 40px rgba(15,23,42,0.08);
}

body.theme-light .pph-summary__title { color: #0f172a; }
body.theme-light .pph-summary__features li { color: #1e293b; }
body.theme-light .pph-summary__features {
	border-color: rgba(15,23,42,0.08);
}
body.theme-light .pph-summary__features li {
	border-bottom-color: rgba(15,23,42,0.06);
}
body.theme-light .pph-summary__num {
	background: rgba(16,185,129,0.12);
}
body.theme-light .portfolio-premium-hero__quicklinks a {
	border-color: rgba(15,23,42,0.1);
	background: rgba(15,23,42,0.03);
	color: #475569;
}
body.theme-light .portfolio-premium-hero__quicklinks a:hover {
	background: rgba(16,185,129,0.08);
	border-color: rgba(16,185,129,0.3);
	color: var(--emerald);
}

.portfolio-premium {
	overflow: hidden;
}

.portfolio-premium__inner {
	display: grid;
	gap: 28px;
}

.portfolio-quantum-list {
	display: grid;
	gap: 22px;
}

.portfolio-quantum-case {
	--portfolio-x: 50%;
	--portfolio-y: 50%;
	--case-rotate-x: 0deg;
	--case-rotate-y: 0deg;
	--case-shift-y: 36px;
	padding: 1px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	transform-style: preserve-3d;
	opacity: 0;
	transform: perspective(2000px) translateY(var(--case-shift-y)) rotateX(var(--case-rotate-x)) rotateY(var(--case-rotate-y));
	transition: transform 180ms ease-out, opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, border-color 220ms ease;
	box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.portfolio-quantum-case.is-visible {
	--case-shift-y: 0px;
	opacity: 1;
}

.portfolio-quantum-case:hover {
	box-shadow: 0 48px 110px rgba(0, 0, 0, 0.42);
}

.portfolio-quantum-case__grid-bg,
.portfolio-quantum-case__mouse-glow,
.portfolio-quantum-case__scanner,
.portfolio-quantum-case__ghost {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.portfolio-quantum-case__grid-bg {
	background-image:
		linear-gradient(rgba(16, 185, 129, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 185, 129, 0.055) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.42;
}

.portfolio-quantum-case__mouse-glow {
	background: radial-gradient(circle 360px at var(--portfolio-x) var(--portfolio-y), rgba(16, 185, 129, 0.16), transparent 72%);
	opacity: 0.88;
}

.portfolio-quantum-case__scanner {
	display: none;
}

.portfolio-quantum-case__ghost {
	inset: 24px;
	left: 44%;
	border-radius: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.16;
	filter: saturate(0.95) contrast(1.02);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.84) 22%, rgba(0, 0, 0, 1) 56%);
	transform: translate3d(0, 0, 0) scale(1.02);
}

.portfolio-quantum-case.is-visible .portfolio-quantum-case__ghost {
	animation: portfolioQuantumGhostDrift 11s ease-in-out 0.8s infinite alternate;
}

.portfolio-quantum-case__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
	gap: 24px;
	padding: 28px;
	min-height: 430px;
	border-radius: 27px;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(12, 12, 12, 0.98)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 34%);
	backdrop-filter: blur(24px);
}

.portfolio-quantum-case__hero {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 8px 8px 8px 2px;
}

.portfolio-quantum-case__eyebrow,
.portfolio-detail-card h4 {
	color: var(--accent);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.portfolio-quantum-case__service,
.portfolio-quantum-case__title,
.portfolio-quantum-case__case-name strong,
.portfolio-detail-card h4,
.portfolio-detail-card p,
.portfolio-detail-card li,
.portfolio-quantum-case__meta,
.portfolio-quantum-case__link {
	opacity: 0;
	filter: blur(14px);
	transform: translateY(18px);
	transition:
		opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
		filter 850ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--portfolio-delay, 0ms);
}

.portfolio-quantum-case.is-visible .portfolio-quantum-case__eyebrow,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__service,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__title,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__case-name strong,
.portfolio-quantum-case.is-visible .portfolio-detail-card h4,
.portfolio-quantum-case.is-visible .portfolio-detail-card p,
.portfolio-quantum-case.is-visible .portfolio-detail-card li,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__meta,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__link,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__actions,
.portfolio-quantum-case.is-visible .portfolio-quantum-case__preview {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.portfolio-quantum-case__service {
	margin: 0;
	font-size: clamp(56px, 5.8vw, 82px);
	line-height: 0.84;
	font-weight: 900;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.portfolio-quantum-case__service-main,
.portfolio-quantum-case__service-accent {
	display: block;
}

.portfolio-quantum-case__service-main {
	color: #ffffff;
}

.portfolio-quantum-case__service-accent {
	color: var(--accent);
}

.portfolio-quantum-case__meta {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.portfolio-quantum-case__title {
	margin: 0;
	max-width: 520px;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(18px, 1.5vw, 24px);
	line-height: 1.28;
	letter-spacing: -0.02em;
	font-weight: 600;
}

.portfolio-quantum-case__actions,
.portfolio-quantum-case__preview {
	opacity: 0;
	filter: blur(14px);
	transform: translateY(18px);
	transition:
		opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
		filter 850ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--portfolio-delay, 0ms);
}

.portfolio-quantum-case__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 12px;
}

.portfolio-quantum-case__actions .btn {
	min-height: 56px;
	padding-inline: 28px;
	border-radius: 20px;
	box-shadow: 0 18px 38px rgba(16, 185, 129, 0.2);
}

.portfolio-quantum-case__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.portfolio-quantum-case__link::after {
	font-size: 18px;
	content: "\2192";
}

.portfolio-quantum-case__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-content: stretch;
}

.portfolio-quantum-case__case-name {
	display: grid;
	grid-column: 1 / -1;
	gap: 8px;
	padding: 0 2px 4px;
}

.portfolio-quantum-case__case-name span {
	color: var(--accent);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.portfolio-quantum-case__case-name strong {
	color: #ffffff;
	font-size: clamp(24px, 2vw, 34px);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.portfolio-detail-card {
	position: relative;
	display: grid;
	gap: 10px;
	min-height: 160px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	transform: translateZ(0);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.portfolio-quantum-case:hover .portfolio-detail-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(16, 185, 129, 0.22);
}

.portfolio-detail-card:hover {
	transform: translateY(-4px) translateZ(20px);
}

.portfolio-detail-card h4 {
	margin: 0;
}

.portfolio-detail-card p,
.portfolio-detail-card ul {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
	font-weight: 550;
}

.portfolio-detail-card--stack ul {
	display: grid;
	gap: 8px;
	padding: 0;
	list-style: none;
}

.portfolio-detail-card--stack li {
	position: relative;
	padding-left: 18px;
}

.portfolio-detail-card--stack li::before {
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 12px rgba(16, 185, 129, 0.48);
	content: "";
}

body.theme-light .portfolio-premium-hero .page-hero__panel::before {
	background: radial-gradient(circle, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.015) 62%, transparent 74%);
}

/* Portfolio quantum cases light theme (summary card uses new .pph-summary__* classes) */
body.theme-light .portfolio-quantum-case {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 36%);
}

body.theme-light .portfolio-quantum-case__layout,
body.theme-light .portfolio-detail-card,
body.theme-light .portfolio-quantum-case__preview-surface {
	border-color: rgba(148, 163, 184, 0.22);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

body.theme-light .portfolio-quantum-case__layout {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.98)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.06), transparent 34%);
}

body.theme-light .portfolio-quantum-case__service,
body.theme-light .portfolio-quantum-case__case-name strong,
body.theme-light .portfolio-quantum-case__title,
body.theme-light .portfolio-quantum-case__link,
body.theme-light .portfolio-detail-card h4 {
	color: #0f172a;
}

body.theme-light .portfolio-quantum-case__ghost {
	opacity: 0.12;
}

body.theme-light .portfolio-quantum-case__meta,
body.theme-light .portfolio-detail-card p,
body.theme-light .portfolio-detail-card li {
	color: #475569;
}

@keyframes portfolioQuantumGhostDrift {
	0% {
		transform: translate3d(-10px, 0, 0) scale(1.02);
	}

	100% {
		transform: translate3d(14px, -8px, 0) scale(1.06);
	}
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 24px;
	align-items: start;
}

.contact-side,
.contact-channels,
.contact-steps,
.contact-geo {
	display: grid;
	gap: 16px;
}

.contact-form-card h2,
.contact-side h2 {
	margin-bottom: 18px;
	font-size: clamp(26px, 2.8vw, 34px);
}

.contacts-page-hero .page-hero__panel {
	position: relative;
	overflow: hidden;
}

.contacts-page-hero .page-hero__panel::before {
	position: absolute;
	top: -72px;
	right: -54px;
	width: 240px;
	height: 240px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.02) 62%, transparent 74%);
	filter: blur(16px);
	content: "";
	animation: contactHeroFloat 11s ease-in-out infinite alternate;
}

.contacts-page-hero .page-hero__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 24px;
	align-items: start;
}

.contacts-page-hero h1 {
	max-width: 8.7em;
	font-size: clamp(40px, 4.25vw, 62px);
	line-height: 0.93;
	margin-bottom: 18px;
}

.contacts-page-hero p {
	max-width: 620px;
	font-size: 15px;
	line-height: 1.58;
}

.contact-form {
	display: grid;
	gap: 14px;
}

.contact-form label {
	display: grid;
	gap: 8px;
}

.contact-form span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: rgba(16, 185, 129, 0.34);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.contact-form textarea {
	resize: vertical;
	min-height: 132px;
}

.contact-form__submit {
	width: 100%;
	margin-top: 4px;
}

.contact-form__notice {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
}

.contact-form__notice--success {
	color: #d1fae5;
	background: rgba(16, 185, 129, 0.14);
	border-color: rgba(16, 185, 129, 0.3);
}

.contact-form__notice--error {
	color: #fee2e2;
	background: rgba(239, 68, 68, 0.14);
	border-color: rgba(239, 68, 68, 0.3);
}

.contact-channel,
.contact-step,
.contact-geo__item,
.contact-hero-card__inner {
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.03);
}

.contact-form-card,
.contact-side > .glass-panel,
.contact-hero-card {
	position: relative;
	overflow: hidden;
}

.contact-form-card::before,
.contact-side > .glass-panel::before,
.contact-hero-card__inner::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.42), rgba(245, 158, 11, 0.18), rgba(16, 185, 129, 0));
	content: "";
}

.contact-form-card {
	padding: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 30%);
}

.contact-side {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 24px;
}

.contact-side > .glass-panel:first-child {
	grid-column: 1 / -1;
}

.contact-layout .contact-side > .glass-panel:last-child {
	display: none;
}

.contact-layout .contact-side > .glass-panel:nth-child(2) {
	grid-column: 1 / -1;
}

.contact-channels {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.contact-channel,
.contact-geo__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 18px;
	min-height: 96px;
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contact-channel:hover,
.contact-geo__item:hover,
.contact-step:hover {
	transform: translateY(-3px);
	border-color: rgba(16, 185, 129, 0.18);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.045);
}

.contact-channel span,
.contact-geo__item span,
.contact-hero-card__inner span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-channel strong,
.contact-geo__item strong,
.contact-hero-card__inner strong {
	font-size: 16px;
	line-height: 1.24;
}

.contact-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 16px 18px;
	position: relative;
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contact-step p,
.contact-hero-card__inner p {
	margin: 0;
	color: var(--muted);
}

.contact-step p {
	font-size: 14px;
	line-height: 1.48;
}

@media (min-width: 1101px) {
	.contact-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
		align-items: stretch;
	}

	.contact-side {
		display: contents;
	}

	.contact-form-card,
	.contact-side > .glass-panel:first-child {
		display: flex;
		flex-direction: column;
		height: 100%;
		min-height: 620px;
	}

	.contact-form-card {
		grid-column: 1;
		grid-row: 2;
		padding: 30px;
	}

	.contact-side > .glass-panel:first-child {
		grid-column: 2;
		grid-row: 2;
		padding: 28px;
	}

	.contact-side > .glass-panel:first-child h2,
	.contact-form-card h2 {
		margin-bottom: 16px;
	}

	.contact-channels {
		flex: 1;
		align-content: start;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) {
		grid-column: 1 / -1;
		grid-row: 1;
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
		align-items: start;
		padding: 34px 0 40px;
		border: none;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2)::before,
	.contact-layout .contact-side > .glass-panel:nth-child(2)::after {
		display: none;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .eyebrow {
		position: relative;
		z-index: 1;
		margin-bottom: 2px;
		font-size: 11px;
		letter-spacing: 0.34em;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) h2 {
		position: relative;
		z-index: 1;
		max-width: 10ch;
		margin: 0;
		font-size: clamp(44px, 5vw, 78px);
		font-style: italic;
		font-weight: 900;
		letter-spacing: -0.05em;
		line-height: 0.86;
		text-transform: uppercase;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-steps {
		position: relative;
		z-index: 1;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
		padding: 76px 0 0;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-steps::before {
		position: absolute;
		left: 0;
		right: 0;
		top: 34px;
		height: 1px;
		content: "";
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(16, 185, 129, 0.58), rgba(112, 0, 255, 0.42), rgba(255, 174, 0, 0.42), rgba(255, 255, 255, 0.04));
		box-shadow: 0 0 18px rgba(16, 185, 129, 0.18);
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-steps::after {
		position: absolute;
		left: 0;
		top: 34px;
		width: 100%;
		height: 1px;
		content: "";
		background: linear-gradient(90deg, rgba(0, 255, 157, 0.92), rgba(0, 184, 255, 0.86), rgba(112, 0, 255, 0.82), rgba(255, 174, 0, 0.84));
		transform-origin: left center;
		transform: scaleX(0);
		animation: contactRibbonDraw 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
		box-shadow: 0 0 16px rgba(0, 255, 157, 0.22);
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step {
		grid-template-columns: 1fr;
		align-content: start;
		gap: 18px;
		padding: 0 14px 18px;
		border: 1px solid rgba(255, 255, 255, 0.06);
		border-radius: 26px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
			radial-gradient(circle at top left, rgba(255, 255, 255, 0.02), transparent 60%);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
		overflow: hidden;
		opacity: 0;
		transform: translateY(22px);
		animation: contactStepReveal 0.8s ease-out forwards;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(1) { animation-delay: 0.2s; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(2) { animation-delay: 0.34s; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(3) { animation-delay: 0.48s; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(4) { animation-delay: 0.62s; }

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:hover {
		transform: translateY(-8px);
		border-color: rgba(16, 185, 129, 0.18);
		box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
			radial-gradient(circle at top left, rgba(16, 185, 129, 0.04), transparent 60%);
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .service-step__number {
		position: relative;
		z-index: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 64px;
		height: 64px;
		border-radius: 999px;
		background: rgba(5, 5, 5, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.02), 0 12px 26px rgba(0, 0, 0, 0.2);
		color: #ffffff;
		font-size: 18px;
		font-weight: 800;
		animation: contactStepPulse 3.8s ease-in-out infinite;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .service-step__number::before {
		position: absolute;
		inset: -2px;
		border-radius: inherit;
		padding: 1px;
		content: "";
		background: linear-gradient(135deg, rgba(0, 255, 157, 0.95), rgba(0, 184, 255, 0.92));
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(2) .service-step__number::before {
		background: linear-gradient(135deg, rgba(0, 184, 255, 0.96), rgba(112, 0, 255, 0.9));
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(3) .service-step__number::before {
		background: linear-gradient(135deg, rgba(112, 0, 255, 0.96), rgba(255, 0, 234, 0.88));
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(4) .service-step__number::before {
		background: linear-gradient(135deg, rgba(255, 0, 234, 0.92), rgba(255, 174, 0, 0.92));
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .service-step__number::after {
		position: absolute;
		left: calc(100% + 16px);
		top: 50%;
		transform: translateY(-50%);
		color: #00ff9d;
		font-size: 10px;
		font-weight: 800;
		letter-spacing: 0.28em;
		white-space: nowrap;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(1) .service-step__number::after { content: 'STEP 01'; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(2) .service-step__number::after { content: 'STEP 02'; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(3) .service-step__number::after { content: 'STEP 03'; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(4) .service-step__number::after { content: 'STEP 04'; }

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step p {
		max-width: 16ch;
		font-size: 15px;
		line-height: 1.62;
		color: var(--muted);
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step p::before {
		display: block;
		margin-bottom: 10px;
		color: var(--text);
		font-size: 22px;
		font-weight: 800;
		line-height: 1.02;
	}

	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(1) p::before { content: '\0411\0440\0438\0444\0438\043D\0433'; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(2) p::before { content: '\0410\043D\0430\043B\0438\0442\0438\043A\0430'; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(3) p::before { content: '\041F\0440\043E\0442\043E\0442\0438\043F'; }
	.contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:nth-child(4) p::before { content: '\0420\0435\0430\043B\0438\0437\0430\0446\0438\044F'; }
}

.brief-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.brief-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.brief-form__full {
	grid-column: 1 / -1;
}

.brief-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.brief-option {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.brief-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.brief-option span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.brief-option input:checked + span {
	border-color: rgba(17, 201, 143, 0.45);
	background: rgba(17, 201, 143, 0.12);
	transform: translateY(-1px);
}

.brief-summary .price-factors {
	margin-bottom: 22px;
}

.contact-hero-card {
	display: grid;
}

.contact-hero-card__inner {
	position: relative;
	padding: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 36%);
}

.contact-hero-card__inner strong {
	display: block;
	margin: 10px 0 12px;
	font-size: 30px;
	line-height: 1.04;
}

.contact-hero-card__inner::after {
	position: absolute;
	right: -24px;
	bottom: -28px;
	width: 170px;
	height: 170px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.01) 68%, transparent 74%);
	filter: blur(8px);
	content: "";
	animation: contactHeroOrb 10s ease-in-out infinite alternate;
}

body.theme-light .contact-form-card,
body.theme-light .contact-side > .glass-panel,
body.theme-light .contact-channel,
body.theme-light .contact-step,
body.theme-light .contact-geo__item,
body.theme-light .contact-hero-card__inner {
	background: rgba(255, 255, 255, 0.76);
	border-color: rgba(15, 23, 42, 0.1);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.theme-light .contact-channel:hover,
body.theme-light .contact-geo__item:hover,
body.theme-light .contact-step:hover {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(16, 185, 129, 0.18);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) {
	border: none;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .eyebrow {
	color: var(--emerald-strong);
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) h2 {
	color: #0f172a;
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .contact-steps::before {
	background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), rgba(99, 102, 241, 0.3), rgba(245, 158, 11, 0.3), transparent);
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(15, 23, 42, 0.08);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step:hover {
	background: #fff;
	border-color: rgba(16, 185, 129, 0.2);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .service-step__number {
	background: #fff;
	color: #0f172a;
	border-color: transparent;
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .service-step__number::after {
	color: var(--emerald-strong);
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step p::before {
	color: #0f172a;
}

body.theme-light .contact-layout .contact-side > .glass-panel:nth-child(2) .contact-step p {
	color: #475569;
}

body.theme-light .contact-form input,
body.theme-light .contact-form textarea {
	background: rgba(248, 250, 252, 0.88);
	border-color: rgba(15, 23, 42, 0.12);
}

body.theme-light .contact-form input:focus,
body.theme-light .contact-form textarea:focus {
	background: #ffffff;
	border-color: rgba(16, 185, 129, 0.32);
}

@keyframes contactHeroFloat {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.7;
	}
	100% {
		transform: translate3d(12px, -10px, 0) scale(1.06);
		opacity: 1;
	}
}

@keyframes contactStepsSweep {
	0%,
	20% {
		transform: translateX(-120%);
	}

	45%,
	100% {
		transform: translateX(140%);
	}
}

@keyframes contactRibbonDraw {
	from {
		transform: scaleX(0);
		opacity: 0;
	}
	to {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes contactStepReveal {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes contactStepPulse {
	0%,
	100% {
		box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.02), 0 12px 26px rgba(0, 0, 0, 0.2);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.03), 0 18px 36px rgba(0, 0, 0, 0.26);
	}
}

@keyframes contactHeroOrb {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.42;
	}
	100% {
		transform: translate3d(-10px, -12px, 0) scale(1.08);
		opacity: 0.72;
	}
}

.reveal-enhanced [data-reveal] {
	opacity: 0;
	filter: blur(10px);
	transform: translate3d(0, 26px, 0) scale(0.985);
	transition-delay: var(--reveal-delay);
}

.reveal-enhanced [data-reveal].is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0) scale(1);
}

.section--compact {
	padding-top: 0;
}

.logo-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.logo-chip {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 20px 24px;
	background: rgba(18, 18, 18, 0.66);
	border: 1px solid var(--panel-border);
	border-radius: 22px;
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
}

.logo-chip a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.logo-chip img {
	max-height: 34px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) brightness(1.15);
	opacity: 0.84;
}

.logo-chip span {
	color: var(--text);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.price-card__list {
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.price-card__list li {
	position: relative;
	padding-left: 18px;
	color: var(--muted);
	font-size: 14px;
}

.price-card__list li::before {
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 7px;
	height: 7px;
	background: var(--emerald);
	border-radius: 999px;
	content: "";
}

.case-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	color: var(--emerald);
	font-size: 14px;
	font-weight: 700;
}

.service-cta--global {
	align-items: center;
}

/* ── Global CTA — premium ───────────────────────────────────────── */
@keyframes gctaOrbDrift {
	0%   { transform: translate(0, 0)    scale(1); }
	33%  { transform: translate(18px, -12px) scale(1.06); }
	66%  { transform: translate(-10px, 8px)  scale(.96); }
	100% { transform: translate(0, 0)    scale(1); }
}

.global-cta {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	border: 1px solid rgba(16,185,129,.28);
	background: #07090f;
	padding: 60px 64px 0;
}

/* dot-grid overlay */
.global-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
	background-size: 28px 28px;
	-webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 65%);
	mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 65%);
	pointer-events: none;
}

/* bottom emerald sweep */
.global-cta::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	height: 180px;
	background: radial-gradient(ellipse at center, rgba(16,185,129,.18) 0%, transparent 70%);
	pointer-events: none;
}

.global-cta__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.global-cta__orb--l {
	top: -80px;
	left: -80px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(16,185,129,.32) 0%, transparent 65%);
	filter: blur(60px);
	animation: gctaOrbDrift 9s ease-in-out infinite;
}
.global-cta__orb--r {
	top: -40px;
	right: -60px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(99,102,241,.22) 0%, transparent 65%);
	filter: blur(50px);
	animation: gctaOrbDrift 12s ease-in-out infinite reverse;
}

.global-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.global-cta__copy { max-width: 620px; }

.global-cta__copy .eyebrow { margin-bottom: 18px; }

.global-cta__copy h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 3.8vw, 52px);
	line-height: 1.02;
	letter-spacing: -.03em;
	font-weight: 900;
	color: #fff;
}

.global-cta__copy p {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(148,163,184,.75);
	margin: 0;
	max-width: 52ch;
}

.global-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.global-cta__actions .btn {
	min-width: 210px;
	text-align: center;
	justify-content: center;
}

.global-cta__trust {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0;
	padding: 20px 0;
}

.global-cta__trust span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(148,163,184,.55);
	padding: 0 28px 0 0;
	margin-right: 28px;
	border-right: 1px solid rgba(255,255,255,.07);
}
.global-cta__trust span:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

.global-cta__trust span svg {
	color: var(--emerald);
	opacity: .8;
	flex-shrink: 0;
}

/* Light theme */
body.theme-light .global-cta {
	background: #f8fafc !important;
	border-color: rgba(16,185,129,.25) !important;
}
body.theme-light .global-cta::before {
	background-image: radial-gradient(circle, rgba(15,23,42,.06) 1px, transparent 1px) !important;
}
body.theme-light .global-cta__copy h2  { color: #0f172a !important; }
body.theme-light .global-cta__copy p   { color: #475569 !important; }
body.theme-light .global-cta__trust span { color: #64748b !important; border-right-color: rgba(15,23,42,.1) !important; }
body.theme-light .global-cta__inner { border-bottom-color: rgba(15,23,42,.08) !important; }
body.theme-light .global-cta::after { background: radial-gradient(ellipse at center, rgba(16,185,129,.1) 0%, transparent 70%) !important; }

@media (max-width: 900px) {
	.global-cta { padding: 40px 32px 0; }
	.global-cta__inner { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 32px; }
	.global-cta__actions { flex-direction: row; flex-wrap: wrap; }
	.global-cta__actions .btn { min-width: 0; flex: 1; }
	.global-cta__trust { flex-wrap: wrap; gap: 12px; }
	.global-cta__trust span { border-right: none; margin-right: 0; padding-right: 0; }
}

@media (max-width: 580px) {
	.global-cta { padding: 30px 24px 0; }
	.global-cta__actions { flex-direction: column; }
	.global-cta__actions .btn { flex: none; width: 100%; }
}

@media (max-width: 1100px) {
	.hero__inner,
	.split-grid,
	.page-hero__grid,
	.faq,
	.contact-layout,
	.brief-layout,
	.service-detail-grid {
		grid-template-columns: 1fr;
	}

	.contact-side,
	.contact-channels {
		grid-template-columns: 1fr;
	}

	.hero-brief {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.hero-brief__copy h1 {
		max-width: 10em;
		font-size: 42px;
	}

	.tiles,
	.logo-strip,
	.services-grid,
	.price-grid,
	.case-grid,
	.post-grid,
	.testimonial-grid,
	.price-packages,
	.portfolio-case__grid,
	.service-includes,
	.service-steps,
	.service-timeline,
	.service-cases {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brief-form__grid {
		grid-template-columns: 1fr;
	}

	.nav__list a {
		padding: 0 16px;
	}

	.hero-showcase {
		aspect-ratio: auto;
		min-height: 0;
	}

	.hero-brief__fact strong {
		font-size: 18px;
	}

	.hero-copy > h1 {
		max-width: 11.5em;
		font-size: 52px;
		line-height: 0.96;
	}

	.pricing-showcase__intro {
		grid-template-columns: 1fr;
		padding: 26px;
	}

	.support-entry__intro {
		grid-template-columns: 1fr;
		padding: 26px;
	}

	.pricing-showcase__intro-side {
		padding-left: 0;
		border-left: 0;
	}

	.support-entry__actions {
		justify-items: start;
	}

	.pricing-showcase__intro-copy h2 {
		max-width: none;
	}

	.price-grid--showcase {
		grid-template-columns: 1fr;
	}

	.support-entry__grid {
		grid-template-columns: 1fr;
	}

	.demo-grid,
	.guarantees__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.safe-start {
		grid-template-columns: 1fr;
		padding: 26px;
	}

	.hero-console__panel-head strong {
		max-width: none;
		font-size: 28px;
	}
}

@media (max-width: 900px) {
	body.admin-bar .topbar {
		top: 46px;
	}

	.topbar__inner {
		position: relative;
		gap: 14px;
		padding: 14px 0;
		flex-wrap: wrap;
	}

	.nav {
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		display: none;
	}

	.nav__list {
		display: grid;
		width: 100%;
		padding: 12px;
		border-radius: 28px;
		background: rgba(10, 10, 10, 0.96);
		max-height: min(72vh, 560px);
		overflow: auto;
	}

	.nav__list a {
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
	}

	.nav__list .sub-menu {
		position: static;
		min-width: 0;
		padding: 8px 0 4px 14px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.nav__list .sub-menu a {
		color: var(--muted);
	}

	.nav-toggle {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.nav-toggle-button {
		display: inline-grid;
		width: 50px;
		height: 50px;
		place-items: center;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 15px;
		background:
			linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
			rgba(9, 14, 14, 0.9);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.12),
			0 12px 26px rgba(0, 0, 0, 0.35);
		transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
		cursor: pointer;
	}

	.theme-toggle {
		order: 3;
		width: 42px;
		height: 42px;
	}

	.lang-switcher {
		order: 2;
		margin-left: auto;
	}

	.lang-switcher__button {
		min-width: 36px;
		height: 36px;
		padding: 0 6px;
	}

	.nav-toggle-button {
		order: 4;
	}

	.nav-toggle-button span {
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 241, 0.96));
		transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease, background 0.22s ease;
		transform-origin: center;
	}

	.nav-toggle-button span + span {
		margin-top: 4px;
	}

	.nav-toggle-button:hover {
		border-color: rgba(0, 229, 153, 0.45);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.16),
			0 14px 28px rgba(0, 0, 0, 0.42),
			0 0 0 1px rgba(0, 229, 153, 0.18);
	}

	.nav-toggle-button:active {
		transform: translateY(1px) scale(0.98);
	}

	.nav-toggle:checked ~ .nav {
		display: block;
	}

	.nav-toggle:checked + .nav-toggle-button {
		border-color: rgba(0, 229, 153, 0.55);
		background:
			linear-gradient(165deg, rgba(0, 229, 153, 0.2), rgba(0, 229, 153, 0.04)),
			rgba(9, 14, 14, 0.96);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.16),
			0 14px 30px rgba(0, 0, 0, 0.45),
			0 0 0 1px rgba(0, 229, 153, 0.28);
	}

	.nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0.4);
	}

	.nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.header-cta {
		display: none;
	}

	.tiles,
	.logo-strip,
	.services-grid,
	.price-grid,
	.case-grid,
	.post-grid,
	.testimonial-grid,
	.demo-grid,
	.guarantees__grid,
	.price-packages,
	.portfolio-case__grid,
	.service-includes,
	.service-steps,
	.service-timeline,
	.service-cases {
		grid-template-columns: 1fr;
	}

	.hero-showcase {
		aspect-ratio: auto;
	}

	.hero-showcase__grid,
	.hero-console__facts {
		grid-template-columns: 1fr;
	}

	.hero-showcase__grid--single {
		grid-template-columns: 1fr;
	}

	.hero-summary {
		grid-template-columns: 1fr;
	}

	.hero-showcase {
		padding: 24px;
	}

	.hero-brief {
		padding: 24px;
		gap: 18px;
	}

	.hero-brief__copy h1 {
		max-width: none;
		font-size: clamp(34px, 8vw, 44px);
		text-wrap: balance;
	}

	.hero-meta {
		gap: 8px;
	}

	.hero-meta span {
		min-height: 30px;
		padding: 0 10px;
		font-size: 10px;
	}

	.hero-copy > h1 {
		max-width: none;
		font-size: clamp(34px, 8vw, 44px);
		text-wrap: balance;
	}

	.hero-lead {
		max-width: none;
		font-size: 15px;
	}

	.hero-proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hero-summary {
		display: none;
	}

	.price-overview__points {
		margin-top: 20px;
	}

	.hero-console__header strong {
		font-size: 19px;
	}

	.hero-console__screen {
		min-height: 232px;
	}

	.hero-console__panel {
		padding: 18px;
	}

	.hero-console__fact strong {
		font-size: 15px;
	}

	.hero-brief__fact {
		padding: 16px;
	}

	.hero-brief__fact strong {
		font-size: 16px;
		line-height: 1.32;
	}
}

@media (max-width: 640px) {
	.topbar__inner,
	.section__inner,
	.page-hero__inner,
	.content-body,
	.article__inner,
	.article__body,
	.footer__inner {
		width: min(100% - 28px, 1280px);
	}

	.brand__mark {
		width: 36px;
		height: 36px;
		min-width: 36px;
		min-height: 36px;
	}

	.brand__name {
		font-size: 18px;
	}

	.brand__tag {
		font-size: 9px;
		letter-spacing: 0.14em;
	}

	.brand {
		min-width: 0;
		flex: 1 1 auto;
	}

	.brand__text {
		min-width: 0;
	}

	h1,
	.page-hero h1,
	.article__header h1 {
		font-size: 34px;
		line-height: 0.98;
	}

	.hero-card-large__content,
	.page-hero__panel,
	.article__panel,
	.glass-panel,
	.service,
	.price-card,
	.case-card__body,
	.testimonial-grid blockquote {
		padding: 22px;
	}

	.hero-card-large {
		aspect-ratio: auto;
		min-height: 0;
		background: rgba(8, 14, 14, 0.96);
	}

	.hero-showcase {
		padding: 22px;
	}

	.hero-brief {
		padding: 22px;
		border-radius: 28px;
	}

	.hero-brief__copy h1 {
		max-width: none;
		font-size: clamp(30px, 9.2vw, 38px);
		line-height: 0.98;
		letter-spacing: 0;
		text-wrap: balance;
	}

	.hero-brief__facts,
	.hero-brief__stats {
		grid-template-columns: 1fr;
	}

	.hero-brief__proof {
		grid-template-columns: 1fr;
	}

	.hero-copy > h1 {
		max-width: none;
		font-size: clamp(30px, 9.2vw, 38px);
		line-height: 0.98;
		letter-spacing: 0;
		text-wrap: balance;
	}

	.hero-meta {
		margin-bottom: 12px;
	}

	.hero-meta span {
		width: 100%;
		justify-content: flex-start;
	}

	.hero-service-switcher,
	.hero-console__footer {
		flex-direction: column;
	}

	.hero-meta {
		margin-bottom: 14px;
	}

	.hero-service-switcher__button,
	.hero-console__link {
		width: 100%;
		justify-content: center;
	}

	.hero-card-large__frame {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		min-width: 0;
		margin-top: 22px;
	}

	.hero-card-large::after {
		background:
			linear-gradient(180deg, rgba(3, 8, 8, 0.12), rgba(3, 8, 8, 0.88)),
			linear-gradient(90deg, rgba(3, 8, 8, 0.92), rgba(3, 8, 8, 0.58));
	}

	.hero-window {
		padding: 16px;
	}

	.hero-proof,
	.hero-stats,
	.chart-legend,
	.service-hero__facts {
		grid-template-columns: 1fr;
	}

	.hero-brief__visual-image {
		min-height: 220px;
	}

	.hero-brief__visual-panel strong {
		font-size: 20px;
	}

	.hero-proof {
		gap: 10px;
	}

	.hero-console__screen {
		min-height: 300px;
	}

	.pricing-showcase__badges span,
	.pricing-showcase__intro-side .btn,
	.support-entry__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-lead {
		margin-bottom: 22px;
		font-size: 16px;
		line-height: 1.45;
	}

	.hero-proof {
		padding: 18px;
	}

	.hero-proof__value {
		font-size: 18px;
	}

	.case-card img { height: 220px; }

	/* Post cards: stack to single column on 860px */
	.post-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.post-card--featured {
		grid-row: auto;
		min-height: 420px;
	}
	.post-card--compact > a {
		flex-direction: column;
	}
	.post-card--compact .post-card__image {
		width: 100%;
		height: 200px;
	}
	.post-card--compact .post-card__body {
		justify-content: flex-start;
	}
	.post-card--compact .post-card__body p { display: block; }

	.portfolio-case__cover img {
		height: 240px;
	}

	.contact-channel,
	.contact-geo__item {
		flex-direction: column;
	}

	.article__image {
		width: min(100% - 28px, 1120px);
		height: 250px;
	}

	.content-body,
	.article__body {
		font-size: 17px;
	}

	.footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.service-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px;
	}

	.price-addon {
		flex-direction: column;
	}

	.price-card,
	.service,
	.post-card,
	.case-card__body,
	.demo-card,
	.guarantee-card,
	.support-card {
		border-radius: 24px;
	}

	.price-card__head {
		gap: 8px;
	}

	.price-card__price {
		font-size: clamp(32px, 10vw, 44px);
		line-height: 0.98;
	}

	.price-card__list {
		gap: 10px;
	}

	.price-card__foot {
		margin-top: 16px;
	}

	.scroll-top {
		right: 14px;
		bottom: 14px;
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}
}

@media (max-width: 440px) {
	.topbar__inner {
		gap: 10px;
		padding: 12px 0;
	}

	.brand__mark {
		width: 34px;
		height: 34px;
		min-width: 34px;
		min-height: 34px;
	}

	.brand__name {
		font-size: 17px;
	}

	.brand__tag {
		display: none;
	}

	.theme-toggle,
	.nav-toggle-button {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.lang-switcher__button {
		min-width: 36px;
		height: 36px;
		padding: 0 6px;
		border-radius: 999px;
		font-size: 12px;
	}

	.lang-switcher__menu {
		right: -4px;
		min-width: 148px;
	}

	.nav-toggle-button span {
		width: 17px;
	}

	.nav-toggle-button span + span {
		margin-top: 3px;
	}

	.nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}

	.nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
		transform: translateY(-5px) rotate(-45deg);
	}

	.nav {
		top: calc(100% + 8px);
	}

	.nav__list {
		border-radius: 20px;
		padding: 10px;
	}

	.nav__list a {
		min-height: 44px;
		padding: 0 12px;
		font-size: 15px;
	}

	.hero-brief,
	.hero-showcase,
	.glass-panel,
	.page-hero__panel {
		padding: 18px;
	}

	.hero-brief__signal,
	.hero-brief__visual,
	.hero-brief__visual-panel {
		padding-left: 14px;
		padding-right: 14px;
	}

	.hero-brief__visual-image {
		min-height: 190px;
	}

	.hero-actions {
		gap: 10px;
	}

	.hero-actions .btn,
	.support-entry__actions .btn,
	.pricing-showcase__intro-side .btn {
		min-height: 46px;
		font-size: 15px;
	}
}

@media (max-width: 1100px) {
	.hero-brief--premium {
		grid-template-columns: 1fr;
		padding: 24px 24px 22px;
	}

	.hero-brief--premium .hero-brief__copy h1 {
		max-width: 9.2em;
		font-size: clamp(30px, 5vw, 46px);
	}

	.hero-brief--premium .hero-brief__visual-panel {
		left: 18px;
		right: 18px;
		bottom: 16px;
	}
}

@media (max-width: 640px) {
	.hero-brief--premium {
		padding: 18px 18px 16px;
		gap: 18px;
	}

	.hero-brief--premium .hero-brief__copy {
		gap: 12px;
	}

	.hero-brief--premium .hero-brief__copy h1 {
		max-width: 8.4em;
		font-size: clamp(28px, 9vw, 40px);
	}

	.hero-brief--premium .hero-lead {
		font-size: 14px;
		line-height: 1.5;
	}

	.hero-brief--premium .hero-brief__signal {
		padding: 10px 12px;
	}

	.hero-brief--premium .hero-brief__signal strong {
		font-size: 14px;
	}

	.hero-brief--premium .hero-brief__signal span {
		font-size: 12px;
	}

	.hero-brief--premium .hero-brief__proof {
		grid-template-columns: 1fr;
	}

	.hero-brief--premium .hero-brief__proof-item {
		padding: 11px 12px;
	}

	.hero-brief--premium .hero-brief__visual {
		padding: 10px;
		border-radius: 22px;
	}

	.hero-brief--premium .hero-brief__visual-image {
		min-height: 180px;
		border-radius: 18px;
	}

	.hero-brief--premium .hero-brief__visual-badge {
		top: 12px;
		right: 12px;
	}

	.hero-brief--premium .hero-brief__visual-panel {
		position: static;
		margin-top: 10px;
		padding: 14px 14px 12px;
		border-radius: 18px;
		animation: none;
	}

	.hero-brief--premium .hero-brief__visual-panel strong {
		font-size: 16px;
	}

	.hero-brief--premium .hero-brief__visual-list li {
		font-size: 12px;
	}
}

@media (min-width: 901px) {
	.hero-brief--premium {
		grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
		align-items: center;
		gap: 30px;
		padding: 30px 34px 26px;
		border-radius: 38px;
	}

	.hero-brief--premium .hero-brief__copy {
		gap: 16px;
	}

	.hero-brief--premium .hero-brief__copy h1 {
		max-width: 11.2em;
		font-size: clamp(34px, 3.2vw, 56px);
		line-height: 0.9;
	}

	.hero-brief--premium .hero-lead {
		max-width: 35rem;
		font-size: 17px;
		line-height: 1.56;
	}

	.hero-brief--premium .hero-brief__signal {
		display: none;
	}

	.hero-brief--premium .hero-actions {
		margin-top: 2px;
	}

	.hero-brief--premium .hero-brief__proof {
		gap: 12px;
		margin-top: 2px;
	}

	.hero-brief--premium .hero-brief__proof-item {
		min-height: 96px;
		padding: 14px 14px 12px;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.024);
	}

	.hero-brief--premium .hero-brief__proof-item strong {
		font-size: 16px;
	}

	.hero-brief--premium .hero-brief__proof-item span {
		font-size: 12px;
		line-height: 1.42;
	}

	.hero-brief--premium .hero-brief__info {
		align-content: center;
	}

	.hero-brief--premium .hero-brief__visual {
		padding: 18px;
		border-radius: 30px;
		min-height: 420px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
			radial-gradient(circle at top right, rgba(16, 185, 129, 0.16), transparent 38%);
		box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
	}

	.hero-brief--premium .hero-brief__visual::after {
		position: absolute;
		inset: 0;
		background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 70%);
		transform: translateX(-120%);
		animation: heroPremiumSweep 7s ease-in-out infinite;
		pointer-events: none;
		content: "";
	}

	.hero-brief--premium .hero-brief__visual-image {
		min-height: 360px;
		border-radius: 24px;
	}

	.hero-brief--premium .hero-brief__visual-image img {
		transform: scale(1.04);
		animation: heroPremiumImageDriftDesktop 12s ease-in-out infinite alternate;
	}

	.hero-brief--premium .hero-brief__visual-badge {
		top: 18px;
		right: 18px;
		min-height: 36px;
		padding: 0 16px;
		box-shadow: 0 18px 32px rgba(5, 150, 105, 0.32);
		animation: heroPremiumBadgePulse 3.8s ease-in-out infinite;
	}

	.hero-brief--premium .hero-brief__visual-panel {
		left: 28px;
		right: 28px;
		bottom: 24px;
		padding: 18px 18px 16px;
		border-radius: 22px;
		background: rgba(9, 13, 16, 0.84);
	}

	.hero-brief--premium .hero-brief__visual-panel strong {
		font-size: 20px;
		line-height: 1.2;
	}

	.hero-brief--premium .hero-brief__visual-list {
		gap: 7px;
	}

	.hero-brief--premium .hero-brief__visual-list li {
		font-size: 13px;
		line-height: 1.38;
	}

	body.theme-light .hero-brief--premium .hero-brief__visual {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 252, 0.95)),
			radial-gradient(circle at top right, rgba(16, 185, 129, 0.13), transparent 38%);
		box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
	}

	body.theme-light .hero-brief--premium .hero-brief__visual-panel {
		background: rgba(255, 255, 255, 0.84);
	}
}

@keyframes heroPremiumSweep {
	0%,
	18% {
		transform: translateX(-120%);
	}

	42%,
	100% {
		transform: translateX(120%);
	}
}

@keyframes heroPremiumImageDriftDesktop {
	0% {
		transform: scale(1.03) translate3d(0, 0, 0);
	}

	100% {
		transform: scale(1.07) translate3d(-10px, -10px, 0);
	}
}

@keyframes heroPremiumBadgePulse {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
		box-shadow: 0 18px 32px rgba(5, 150, 105, 0.26);
	}

	50% {
		transform: translate3d(0, -2px, 0);
		box-shadow: 0 24px 38px rgba(5, 150, 105, 0.34);
	}
}

@media (max-width: 1180px) {
	.portfolio-premium-hero__grid,
	.portfolio-quantum-case__layout {
		grid-template-columns: 1fr;
	}

	/* Stack layout — slide-in from side becomes fade-up */
	.portfolio-premium-hero__side {
		animation-name: pphFadeUp;
	}

	.portfolio-quantum-case__ghost {
		inset: 20px;
		left: 20px;
		opacity: 0.14;
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
	}
}

@media (max-width: 900px) {
	.portfolio-premium-hero__copy h1 {
		font-size: clamp(38px, 9vw, 54px);
	}

	.portfolio-quantum-case__layout {
		min-height: 0;
		padding: 22px;
	}

	.portfolio-quantum-case__service {
		font-size: clamp(42px, 10vw, 62px);
	}

	.portfolio-quantum-case__title {
		font-size: clamp(17px, 4.2vw, 22px);
	}

	.portfolio-quantum-case__details {
		grid-template-columns: 1fr;
	}

	.portfolio-quantum-case__case-name strong {
		font-size: clamp(22px, 5vw, 30px);
	}

	.portfolio-detail-card {
		min-height: 0;
		padding: 20px 22px;
		border-radius: 22px;
	}

	.portfolio-detail-card p,
	.portfolio-detail-card ul {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.portfolio-premium-hero__summary {
		padding: 22px 18px;
		border-radius: 20px;
	}

	.pph-summary__title {
		font-size: 17px;
	}

	.pph-summary__features li {
		padding: 9px 14px;
		font-size: 12px;
	}

	.portfolio-quantum-list {
		gap: 22px;
	}

	.portfolio-quantum-case {
		border-radius: 24px;
	}

	.portfolio-quantum-case__layout {
		padding: 16px;
		border-radius: 23px;
	}

	.portfolio-quantum-case__eyebrow,
	.portfolio-detail-card h4 {
		font-size: 9px;
		letter-spacing: 0.24em;
	}

	.portfolio-quantum-case__meta {
		font-size: 10px;
		letter-spacing: 0.06em;
	}

	.portfolio-detail-card {
		padding: 16px;
		border-radius: 18px;
	}

	.portfolio-detail-card p,
	.portfolio-detail-card ul {
		font-size: 14px;
		line-height: 1.55;
	}

	.portfolio-quantum-case__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.portfolio-quantum-case__actions .btn,
	.portfolio-quantum-case__link {
		justify-content: center;
	}
}

/* =====================================================
   Service: For Whom / Not Included / SMM Tariffs
   ===================================================== */

.service-for-whom {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.service-for-whom-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 26px 24px;
	border: 1px solid var(--panel-border);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.06), transparent 52%);
	overflow: hidden;
	transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.service-for-whom-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 40%;
	content: "";
	background: linear-gradient(180deg, var(--emerald), transparent);
	border-radius: 0 0 3px 0;
}

.service-for-whom-card:hover {
	transform: translateY(-5px);
	border-color: rgba(16, 185, 129, 0.2);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.service-for-whom-card h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
}

.service-for-whom-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
}

.service-not-included {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-not-included li {
	position: relative;
	padding: 14px 18px 14px 44px;
	border: 1px solid rgba(239, 68, 68, 0.12);
	border-radius: 14px;
	background: rgba(239, 68, 68, 0.04);
	font-size: 15px;
	line-height: 1.45;
	color: var(--muted);
}

.service-not-included li::before {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	content: "✕";
	font-size: 12px;
	font-weight: 800;
	color: rgba(239, 68, 68, 0.6);
}

/* SMM Tariff Cards */

.smm-tariffs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: start;
}

.smm-tariff-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px 24px 24px;
	border: 1px solid var(--panel-border);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.06), transparent 44%);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.smm-tariff-card:hover {
	transform: translateY(-6px);
	border-color: rgba(16, 185, 129, 0.2);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.smm-tariff-card--featured {
	border-color: rgba(16, 185, 129, 0.28);
	background:
		linear-gradient(180deg, rgba(15, 18, 18, 0.96), rgba(15, 18, 18, 0.9)),
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 38%);
	box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1), 0 22px 52px rgba(0, 0, 0, 0.32);
}

.smm-tariff-card--featured::before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "Популярный";
	padding: 5px 18px;
	border-radius: 0 0 14px 14px;
	background: var(--emerald);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.smm-tariff-card__label {
	display: inline-block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.smm-tariff-card__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.15;
}

.smm-tariff-card__price {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--emerald);
	letter-spacing: -0.02em;
}

.smm-tariff-card__list {
	flex: 1;
	margin: 0;
	padding: 0;
	list-style: none;
}

.smm-tariff-card__list li {
	position: relative;
	padding: 8px 0 8px 22px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--muted);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.smm-tariff-card__list li::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "—";
	color: var(--emerald);
	font-size: 12px;
	font-weight: 700;
}

.smm-tariff-card__cta {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/* Light theme adjustments */

body.theme-light .service-for-whom-card {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(15, 23, 42, 0.1);
}

body.theme-light .service-not-included li {
	background: rgba(239, 68, 68, 0.03);
	border-color: rgba(239, 68, 68, 0.1);
}

body.theme-light .smm-tariff-card {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(15, 23, 42, 0.1);
}

body.theme-light .smm-tariff-card--featured {
	background: linear-gradient(180deg, rgba(240, 253, 249, 0.95), rgba(236, 253, 245, 0.9));
	border-color: rgba(16, 185, 129, 0.28);
}

body.theme-light .smm-tariff-card__list li {
	border-bottom-color: rgba(15, 23, 42, 0.06);
}

/* Responsive */

@media (max-width: 1024px) {
	.service-for-whom {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.smm-tariffs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.service-for-whom,
	.service-not-included,
	.smm-tariffs {
		grid-template-columns: minmax(0, 1fr);
	}

	.smm-tariff-card--featured::before {
		font-size: 10px;
		padding: 4px 14px;
	}
}

/* ===================================================================
   SVC HERO — Clean premium service page hero
   =================================================================== */

@keyframes svcFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: none; }
}

@keyframes svcCardFloat {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-14px); }
}

@keyframes svcBlobDrift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%       { transform: translate(40px, -30px) scale(1.12); }
}

/* Section */
.svc-hero {
	position: relative;
	overflow: hidden;
}

.svc-hero__blob {
	position: absolute;
	border-radius: 999px;
	filter: blur(90px);
	pointer-events: none;
	z-index: 0;
}

.svc-hero__blob--l {
	width: 480px;
	height: 480px;
	top: -20%;
	left: -12%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 68%);
	animation: svcBlobDrift 20s ease-in-out infinite;
}

.svc-hero__blob--r {
	width: 380px;
	height: 380px;
	bottom: -10%;
	right: -8%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 68%);
	animation: svcBlobDrift 26s ease-in-out infinite reverse;
}

/* Two-column layout */
.svc-hero__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
	gap: 48px;
	align-items: center;
	padding-top: 48px;
	padding-bottom: 20px;
}

/* Copy — staggered entrance */
.svc-hero__copy > * {
	opacity: 0;
	animation: svcFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.svc-hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.svc-hero__copy > *:nth-child(2) { animation-delay: 0.14s; }
.svc-hero__copy > *:nth-child(3) { animation-delay: 0.23s; }
.svc-hero__copy > *:nth-child(4) { animation-delay: 0.32s; }
.svc-hero__copy > *:nth-child(5) { animation-delay: 0.41s; }

.svc-hero__eyebrow {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.svc-hero__title {
	margin: 0 0 18px;
	font-size: clamp(36px, 4.6vw, 68px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: var(--text);
}

.svc-hero__lead {
	max-width: 44ch;
	margin: 0 0 24px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--muted);
}

.svc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

/* Image side */
.svc-hero__media {
	opacity: 0;
	animation: svcFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.svc-hero__img-card {
	position: relative;
	margin: 0;
	border-radius: 26px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	animation: svcCardFloat 7s ease-in-out infinite;
}

.svc-hero__img-card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.svc-hero__img-card figcaption {
	position: absolute;
	bottom: 14px;
	left: 14px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 9px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(8, 8, 8, 0.68);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.svc-hero__img-card figcaption span {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.svc-hero__img-card figcaption strong {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

/* Stats bar */
.svc-hero__stats {
	position: relative;
	z-index: 1;
	display: flex;
	padding-top: 24px;
	padding-bottom: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	margin-top: 8px;
}

.svc-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	opacity: 0;
	animation: svcFadeUp 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.svc-stat:nth-child(1) { animation-delay: 0.5s; padding-left: 0; }
.svc-stat:nth-child(2) { animation-delay: 0.62s; }
.svc-stat:nth-child(3) { animation-delay: 0.74s; border-right: none; }

.svc-stat strong {
	font-size: clamp(22px, 2.4vw, 36px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}

.svc-stat span {
	font-size: 13px;
	color: var(--muted);
}

/* Light theme */
body.theme-light .svc-hero__img-card {
	border-color: rgba(15, 23, 42, 0.1);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

body.theme-light .svc-hero__img-card figcaption {
	background: rgba(255, 255, 255, 0.85);
	border-color: rgba(15, 23, 42, 0.1);
}

body.theme-light .svc-hero__img-card figcaption strong {
	color: #0f172a;
}

body.theme-light .svc-hero__stats {
	border-top-color: rgba(15, 23, 42, 0.08);
}

body.theme-light .svc-stat {
	border-right-color: rgba(15, 23, 42, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
	.svc-hero__layout {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
		gap: 32px;
	}
}

@media (max-width: 800px) {
	.svc-hero__layout {
		grid-template-columns: 1fr;
		padding-top: 32px;
	}

	.svc-hero__media {
		max-width: 460px;
		width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 560px) {
	.svc-hero__stats {
		flex-wrap: wrap;
		gap: 16px 0;
	}

	.svc-stat {
		flex: 1 1 50%;
		padding: 0 16px;
		border-right: none;
	}

	.svc-stat:nth-child(1),
	.svc-stat:nth-child(2) {
		border-right: 1px solid rgba(255, 255, 255, 0.07);
	}

	.svc-hero__actions {
		flex-direction: column;
	}

	.svc-hero__actions .btn {
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 860px) {
	.home-svc-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home-svc-hero__stats {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px;
	}

	.home-svc-stat {
		flex: 1 1 calc(33.33% - 7px);
		min-width: 140px;
	}

	.home-svc-hero {
		padding: 52px 0 44px;
	}
}

@media (max-width: 580px) {
	.home-svc-hero__title {
		font-size: clamp(1.75rem, 8vw, 2.4rem);
	}

	.home-svc-stat {
		flex: 1 1 calc(50% - 5px);
	}

	.home-svc-hero__actions .btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.home-svc-hero {
		padding: 44px 0 36px;
	}
}

/* ── FAQ responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
	/* Шапка: убираем 3 колонки → стек */
	.faq__head {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto auto;
	}

	.faq__head > .eyebrow  { grid-column: 1; grid-row: 1; }
	.faq__head > h2        { grid-column: 1; grid-row: 2; white-space: normal; }
	.faq__intro            { grid-column: 1; grid-row: 3; margin-top: 10px; max-width: 100%; }
	.faq__counter          { grid-column: 2; grid-row: 1 / 4; align-self: center; }
}

@media (max-width: 740px) {
	/* Вопросы: 2 → 1 колонка */
	.faq__items {
		grid-template-columns: 1fr;
	}

	/* Шапка: полный стек */
	.faq__head {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.faq__head > .eyebrow  { grid-column: 1; grid-row: 1; }
	.faq__head > h2        { grid-column: 1; grid-row: 2; }
	.faq__intro            { grid-column: 1; grid-row: 3; }
	.faq__counter          { grid-column: 1; grid-row: 4; justify-self: start; flex-direction: row; padding: 10px 18px; margin-top: 4px; }
	.faq__counter span     { font-size: 22px; }
}

@media (max-width: 520px) {
	.faq__summary {
		gap: 10px;
		padding: 16px 14px 16px 16px;
	}

	.faq__num {
		width: 30px;
		height: 30px;
		border-radius: 8px;
		font-size: 10px;
	}

	.faq__q {
		font-size: 14px;
	}

	.faq__body {
		padding: 0 14px 16px 56px;
	}

	.faq__body p {
		font-size: 13.5px;
	}
}

/* ================================================================
   SHOWCASE PRICE CARDS — OVERRIDES (must be last)
   ================================================================ */

.price-grid--showcase {
	position: relative;
	z-index: 1;
}

/* Emerald center glow behind the middle card */
.price-grid--showcase::before {
	content: "";
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 60%;
	background: rgba(16, 185, 129, 0.05);
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
	z-index: 0;
}

/* Card entrance animation */
@keyframes priceCardFadeUp {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.price-grid--showcase .price-card--showcase {
	animation: priceCardFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: var(--price-delay, 0ms);
}

/* Arrow hover on link */
.price-card--showcase .price-card__link::after {
	display: inline-block;
	transition: transform 280ms ease;
}

.price-card--showcase .price-card__link:hover::after {
	transform: translateX(5px);
}

/* Colored round dots instead of yellow checkmarks */
.price-grid--showcase .price-card--showcase .price-card__list li::before {
	width: 7px !important;
	height: 7px !important;
	border-radius: 999px !important;
	content: "" !important;
	font-size: 0 !important;
	top: 0.5em !important;
	background: #60a5fa !important;
	box-shadow: none !important;
}

.price-grid--showcase .price-card--showcase:nth-child(2) .price-card__list li::before {
	background: #10b981 !important;
	box-shadow: 0 0 7px rgba(16, 185, 129, 0.55) !important;
}

.price-grid--showcase .price-card--showcase:nth-child(3) .price-card__list li::before {
	background: #f59e0b !important;
	box-shadow: 0 0 7px rgba(245, 158, 11, 0.55) !important;
}

.price-grid--showcase .price-card--showcase:nth-child(1) .price-card__list li::before {
	background: #60a5fa !important;
	box-shadow: 0 0 7px rgba(96, 165, 250, 0.55) !important;
}

/* Green outlined badge — hide original b text, show ::before as pill */
body .price-grid--showcase .price-card--featured .price-card__topline b {
	display: inline-flex !important;
	align-items: center !important;
	font-size: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	margin-left: auto !important;
}

body .price-grid--showcase .price-card--featured .price-card__topline b::before {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 24px !important;
	padding: 0 10px !important;
	border-radius: 999px !important;
	background: rgba(16, 185, 129, 0.12) !important;
	border: 1px solid rgba(16, 185, 129, 0.35) !important;
	box-shadow: none !important;
	color: #10b981 !important;
	font-size: 9px !important;
	font-weight: 800 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	content: "РЕКОМЕНДУЕМ" !important;
}

/* ================================================================
   SHOWCASE FORCE OVERRIDES — beats body:not(.theme-light) specificity
   ================================================================ */

/* Featured card: green border (overrides amber from body:not(.theme-light) rule) */
body .price-grid--showcase .price-card--featured {
	border-color: rgba(16, 185, 129, 0.28) !important;
	box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1), 0 28px 58px rgba(0, 0, 0, 0.3) !important;
}

/* Spotlight ::after — overrides ambient glow ::after from .price-card--premium */
body .price-grid--showcase .price-card--showcase::after {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	border-radius: inherit !important;
	background: radial-gradient(
		550px circle at var(--spotlight-x, -9999px) var(--spotlight-y, -9999px),
		rgba(255, 255, 255, 0.065),
		transparent 40%
	) !important;
	pointer-events: none !important;
	z-index: 2 !important;
	opacity: 0 !important;
	transition: opacity 300ms ease !important;
	filter: none !important;
	transform: none !important;
}

body .price-grid--showcase .price-card--showcase:hover::after {
	opacity: 1 !important;
}

/* Scale on hover — overrides translateY(-10px) from .price-card--premium:hover */
body .price-grid--showcase .price-card--showcase:hover {
	transform: scale(1.025) !important;
	filter: none !important;
}

body .price-grid--showcase .price-card--featured {
	transform: scale(1.03) !important;
	z-index: 2;
}

body .price-grid--showcase .price-card--featured:hover {
	transform: scale(1.055) !important;
}

/* Hover colored borders */
body .price-grid--showcase .price-card--showcase:nth-child(1):hover {
	border-color: rgba(96, 165, 250, 0.42) !important;
	box-shadow: 0 0 48px -10px rgba(59, 130, 246, 0.35) !important;
}

body .price-grid--showcase .price-card--showcase:nth-child(2):hover {
	border-color: rgba(16, 185, 129, 0.5) !important;
	box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.12), 0 0 52px -10px rgba(16, 185, 129, 0.42) !important;
}

body .price-grid--showcase .price-card--showcase:nth-child(3):hover {
	border-color: rgba(245, 158, 11, 0.44) !important;
	box-shadow: 0 0 48px -10px rgba(245, 158, 11, 0.32) !important;
}

@media (max-width: 380px) {
	.home-svc-stat {
		flex: 1 1 100%;
	}
}

/* ================================================================
   LARGE SCREEN & TV OPTIMIZATION
   Breakpoints: 1600px (large desktop) · 1920px (Full HD TV) · 2560px (2K/4K)
   ================================================================ */

@media (min-width: 1920px) {
	/* Full HD / 2K монитор — умеренное увеличение */

	.brand__mark {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}

	.brand {
		gap: 14px;
	}

	.brand__morph-dot {
		width: 9px;
		height: 9px;
	}

	.brand__name {
		font-size: 20px;
	}

	.brand__tag {
		font-size: 11px;
		letter-spacing: 0.06em;
	}

	.topbar__inner {
		padding: 20px 0;
	}
}

@media (min-width: 2560px) {
	/* 2K wide / 4K */

	.brand__mark {
		width: 48px;
		height: 48px;
		min-width: 48px;
		min-height: 48px;
	}

	.brand {
		gap: 15px;
	}

	.brand__morph-dot {
		width: 10px;
		height: 10px;
	}

	.brand__name {
		font-size: 20px;
	}

	.brand__tag {
		font-size: 11px;
		letter-spacing: 0.06em;
	}

	.topbar__inner {
		padding: 22px 0;
	}

	.nav__list a {
		min-height: 46px;
		padding: 0 20px;
		font-size: 15px;
	}

	.header-cta {
		min-height: 46px;
		padding: 0 24px;
		font-size: 15px;
		border-radius: 14px;
	}

	.theme-toggle {
		width: 40px;
		height: 40px;
	}

	.lang-switcher__button {
		min-width: 36px;
		height: 36px;
	}
}

/* ================================================================
   END LARGE SCREEN & TV OPTIMIZATION
   ================================================================ */

/* ================================================================
   SERVICE PAGE — DISTINCT VISUAL REDESIGN 2026
   Each section has its own unique visual language.
   Overrides default grid-of-cards monotony.
   ================================================================ */

/* ── Section headers — tighter, with accent line ── */
.service-section-head {
	margin-bottom: 32px;
}

.service-section-head h2 {
	margin-bottom: 0;
}

/* ╔══════════════════════════════════════════════════════
   ║  1. INCLUDES — numbered two-column ruled list
   ║  No card boxes. Grid lines as separators.
   ╚══════════════════════════════════════════════════════ */
.service-includes {
	grid-template-columns: 1fr 1fr !important;
	gap: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 24px !important;
	overflow: hidden !important;
	background: transparent !important;
	counter-reset: incl-item;
}

.service-mini-card {
	position: relative !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 18px !important;
	padding: 24px 28px !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
	counter-increment: incl-item;
	transition: background 260ms ease !important;
	overflow: hidden;
}

/* Even items: no right border (right column) */
.service-mini-card:nth-child(even) {
	border-right: 0 !important;
}

/* Last two items: no bottom border */
.service-mini-card:nth-last-child(-n+2) {
	border-bottom: 0 !important;
}

/* If odd total: last item spans or just remove its bottom border */
.service-mini-card:last-child {
	border-bottom: 0 !important;
}

.service-mini-card::before {
	content: counter(incl-item, decimal-leading-zero) !important;
	flex-shrink: 0 !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.1em !important;
	color: var(--emerald) !important;
	opacity: 0.55 !important;
	padding-top: 4px !important;
	min-width: 22px !important;
	position: static !important;
	width: auto !important;
	height: auto !important;
	border-radius: 0 !important;
	background: transparent !important;
	transform: none !important;
	top: auto !important;
	left: auto !important;
}

.service-mini-card::after {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	width: 2px !important;
	background: linear-gradient(to bottom, var(--emerald), transparent) !important;
	opacity: 0 !important;
	transition: opacity 260ms ease !important;
	border-radius: 0 !important;
	inset: unset !important;
	left: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	right: auto !important;
	width: 2px !important;
}

.service-mini-card:hover {
	background: rgba(16, 185, 129, 0.025) !important;
}

.service-mini-card:hover::after {
	opacity: 1 !important;
}

.service-mini-card h3 {
	margin: 0 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
	color: rgba(255, 255, 255, 0.88) !important;
}

/* ╔══════════════════════════════════════════════════════
   ║  2. FOR WHOM — target audience cards with top accent
   ║  Top gradient line appears on hover (distinct from includes)
   ╚══════════════════════════════════════════════════════ */
.service-for-whom-card {
	padding: 30px 26px 26px !important;
	border-radius: 22px !important;
}

.service-for-whom-card::before {
	left: 0 !important;
	top: 0 !important;
	width: 100% !important;
	height: 2px !important;
	border-radius: 0 !important;
	background: linear-gradient(90deg, var(--emerald), rgba(6, 182, 212, 0.5), transparent) !important;
	opacity: 0 !important;
	transition: opacity 300ms ease !important;
}

.service-for-whom-card:hover::before {
	opacity: 1 !important;
}

.service-for-whom-card h3 {
	font-size: 17px !important;
	font-weight: 700 !important;
}

/* ╔══════════════════════════════════════════════════════
   ║  3. STEPS — horizontal connected flow
   ║  Circular numbers on a gradient guide line
   ╚══════════════════════════════════════════════════════ */
.service-steps {
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 0 !important;
	position: relative !important;
}

/* The connecting guide line */
.service-steps::before {
	content: '';
	position: absolute;
	top: 21px;
	left: 22px;
	right: 22px;
	height: 1px;
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0.15) 100%);
	z-index: 0;
}

.service-step {
	position: relative !important;
	z-index: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	padding: 0 20px 0 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	border-radius: 0 !important;
}

.service-step__number {
	position: relative !important;
	z-index: 1 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	border: 1.5px solid rgba(16, 185, 129, 0.4) !important;
	background: #0c0d0e !important;
	color: var(--emerald) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	margin-bottom: 0 !important;
}

.service-step h3 {
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.8) !important;
}

/* ╔══════════════════════════════════════════════════════
   ║  4. TIMELINE — large typographic values
   ║  Bold time values as focal points
   ╚══════════════════════════════════════════════════════ */
.service-timeline {
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 24px !important;
	overflow: hidden !important;
}

/* Timeline uses .price-card as base — override it */
.service-timeline .price-card {
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
	padding: 34px 30px 28px !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.service-timeline .price-card:last-child {
	border-right: 0 !important;
}

/* Title label (first span inside card) */
.service-timeline .price-card > span:first-child {
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	color: var(--emerald) !important;
	margin-bottom: 6px !important;
}

/* Large value */
.service-timeline .price-card > strong {
	font-size: 38px !important;
	font-weight: 800 !important;
	line-height: 0.95 !important;
	letter-spacing: -0.04em !important;
	color: rgba(255, 255, 255, 0.95) !important;
	display: block !important;
	margin-bottom: 10px !important;
}

/* Description */
.service-timeline .price-card > p {
	font-size: 13px !important;
	color: var(--muted) !important;
	line-height: 1.55 !important;
	margin: 0 !important;
}

/* ╔══════════════════════════════════════════════════════
   ║  5. NOT INCLUDED — cleaner two-column exclusion grid
   ║  Compact rows, distinct red × treatment
   ╚══════════════════════════════════════════════════════ */
.service-not-included {
	grid-template-columns: 1fr 1fr !important;
	gap: 10px !important;
}

.service-not-included li {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px !important;
	padding: 16px 20px 16px 20px !important;
	border-radius: 14px !important;
	border: 1px solid rgba(239, 68, 68, 0.1) !important;
	background: rgba(239, 68, 68, 0.03) !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: rgba(255, 255, 255, 0.6) !important;
}

.service-not-included li::before {
	position: static !important;
	transform: none !important;
	flex-shrink: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: rgba(239, 68, 68, 0.55) !important;
	line-height: 1.4 !important;
	margin-top: -1px !important;
}


/* ── RESPONSIVE — tablet ────────────────────────────────────────── */
@media (max-width: 900px) {
	.service-includes {
		grid-template-columns: 1fr !important;
	}

	.service-mini-card:nth-child(even) {
		border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
	}

	.service-mini-card:nth-last-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	}

	.service-mini-card:last-child {
		border-bottom: 0 !important;
	}

	.service-mini-card:nth-child(odd) {
		border-right: 0 !important;
	}

	.service-steps {
		grid-template-columns: 1fr 1fr !important;
		gap: 32px 20px !important;
	}

	.service-steps::before {
		display: none;
	}

	.service-step__number {
		background: rgba(16, 185, 129, 0.08) !important;
	}

	.service-timeline .price-card {
		padding: 24px 20px 20px !important;
	}

	.service-timeline .price-card > strong {
		font-size: 30px !important;
	}

	.service-cases {
		grid-template-columns: 1fr 1fr !important;
	}
}

@media (max-width: 600px) {
	.service-steps {
		grid-template-columns: 1fr !important;
	}

	.service-cases {
		grid-template-columns: 1fr !important;
	}

	.service-not-included {
		grid-template-columns: 1fr !important;
	}

	.service-timeline {
		grid-template-columns: 1fr !important;
		border-radius: 20px !important;
	}

	.service-timeline .price-card {
		border-right: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	}

	.service-timeline .price-card:last-child {
		border-bottom: 0 !important;
	}
}

/* ================================================================
   ICON SYSTEM — card-icon, contact-channel__icon, services-hub-card__icon
   hub-badge icon, footer-social, testimonial stars
   ================================================================ */

/* ── Universal card icon pill ───────────────────────────────────── */
.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	flex-shrink: 0;
	margin-bottom: 4px;
}

.card-icon--sm {
	width: 32px;
	height: 32px;
	border-radius: 8px;
}

.card-icon--emerald {
	background: rgba(16, 185, 129, 0.12);
	color: var(--emerald);
}

.card-icon--blue {
	background: rgba(96, 165, 250, 0.12);
	color: #60a5fa;
}

.card-icon--amber {
	background: rgba(245, 158, 11, 0.12);
	color: #f59e0b;
}

.card-icon--red {
	background: rgba(239, 68, 68, 0.12);
	color: #ef4444;
}

body.theme-light .card-icon--emerald { background: rgba(16, 185, 129, 0.1); }
body.theme-light .card-icon--blue    { background: rgba(96, 165, 250, 0.1); }
body.theme-light .card-icon--amber   { background: rgba(245, 158, 11, 0.1); }
body.theme-light .card-icon--red     { background: rgba(239, 68, 68, 0.1); }

/* ── Contact channel inline label ───────────────────────────────── */
.contact-channel__label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-channel__label svg {
	opacity: 0.75;
	flex-shrink: 0;
}

/* ── Services hub card icon ──────────────────────────────────────── */
.services-hub-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(16, 185, 129, 0.1);
	color: var(--emerald);
	margin-bottom: 14px;
}

.services-hub-card__icon--sm {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	margin-bottom: 10px;
}

body.theme-light .services-hub-card__icon {
	background: rgba(16, 185, 129, 0.08);
}

/* ── Hub hero badge icon ─────────────────────────────────────────── */
.hub-badge svg {
	color: var(--emerald);
	opacity: 0.7;
	margin-bottom: 4px;
}

/* ── Testimonial stars ───────────────────────────────────────────── */
.testimonial-grid blockquote::before {
	content: '★★★★★';
	display: block;
	color: #f59e0b;
	font-size: 12px;
	letter-spacing: 3px;
	margin-bottom: 12px;
	opacity: 0.9;
}

/* ── Footer social links ─────────────────────────────────────────── */
.footer__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.footer__copy {
	color: var(--muted);
	font-size: 13px;
	margin-left: auto;
}

/* Hide old second span if footer-social takes right slot */
.footer__inner > span:last-of-type:not(.footer__meta):not(.footer__copy) {
	display: none;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
	transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.footer-social__link:hover {
	color: var(--emerald);
	border-color: rgba(16, 185, 129, 0.3);
	background: rgba(16, 185, 129, 0.07);
}

body.theme-light .footer-social__link {
	border-color: rgba(15, 23, 42, 0.1);
	color: #64748b;
}

body.theme-light .footer-social__link:hover {
	color: #10b981;
	border-color: rgba(16, 185, 129, 0.3);
	background: rgba(16, 185, 129, 0.06);
}

/* ── Portfolio case cover image ──────────────────────────────────── */
.portfolio-quantum-case__cover {
	width: 100%;
	overflow: hidden;
	border-radius: 18px;
	margin-bottom: 28px;
}

.portfolio-quantum-case__cover img {
	display: block;
	width: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	filter: brightness(0.78) saturate(0.9);
	transition: filter 400ms ease;
}

.portfolio-quantum-case:hover .portfolio-quantum-case__cover img {
	filter: brightness(0.88) saturate(1);
}

/* ── LIGHT THEME adjustments ─────────────────────────────────────── */
body.theme-light .service-mini-card {
	background: rgba(255, 255, 255, 0.6) !important;
}

body.theme-light .service-mini-card:hover {
	background: rgba(16, 185, 129, 0.04) !important;
}

body.theme-light .service-mini-card h3 {
	color: #111418 !important;
}

body.theme-light .service-mini-card::after {
	background: linear-gradient(to bottom, #10b981, transparent) !important;
}

/* .service-step в секции "Этапы работы" намеренно transparent (горизонтальный flow с кружками).
   В светлой теме НЕ добавляем белый фон — только правим цвета текста и бейджа. */
body.theme-light .service-step {
	background: transparent !important;
	border-color: transparent !important;
}

body.theme-light .service-step h3 {
	color: #0f172a !important;
}

body.theme-light .service-step__number {
	background: #ffffff !important;
	border-color: rgba(16, 185, 129, 0.55) !important;
	color: var(--emerald) !important;
}

body.theme-light .service-steps::before {
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.7) 0%, rgba(16, 185, 129, 0.2) 100%) !important;
}

body.theme-light .service-steps {
	/* фон секции уже светлый — карточки должны выделяться */
}

/* ── TIMELINE light theme ────────────────────────────────────────── */
body.theme-light .service-timeline {
	border-color: rgba(15, 23, 42, 0.1) !important;
}

body.theme-light .service-timeline .price-card {
	background: transparent !important;
	border-right-color: rgba(15, 23, 42, 0.08) !important;
}

/* Large value text is hardcoded white — fix for light theme */
body.theme-light .service-timeline .price-card > strong {
	color: #0f172a !important;
}

/* ── CASES light theme ────────────────────────────────────────────── */
/* First featured card — switch to light emerald style, no dark bg */
body.theme-light .service-cases .case-card:first-child {
	background: linear-gradient(160deg, rgba(240, 253, 248, 0.95), rgba(236, 253, 245, 0.92)) !important;
	border-color: rgba(16, 185, 129, 0.28) !important;
	box-shadow: 0 8px 28px rgba(16, 185, 129, 0.1) !important;
}
body.theme-light .service-cases .case-card:first-child h3,
body.theme-light .service-cases .case-card:first-child .case-card__body h3 {
	color: #0f172a !important;
}
body.theme-light .service-cases .case-card:first-child p,
body.theme-light .service-cases .case-card:first-child .case-card__body p {
	color: rgba(15, 23, 42, 0.62) !important;
}
body.theme-light .service-cases .case-card:first-child a:not(.case-card__link) {
	color: #0f172a !important;
	text-decoration: none !important;
}

/* Regular case cards in light theme */
body.theme-light .service-cases .case-card:not(:first-child) {
	background: rgba(255, 255, 255, 0.85) !important;
	border-color: rgba(15, 23, 42, 0.09) !important;
}
body.theme-light .service-cases .case-card:not(:first-child) .case-card__body h3 {
	color: #0f172a !important;
}
body.theme-light .service-cases .case-card:not(:first-child) .case-card__body p {
	color: rgba(15, 23, 42, 0.62) !important;
}

/* ── Hero card large (mobile dark bg) — keep text visible ── */
body.theme-light .hero-card-large {
	background:
		linear-gradient(135deg, rgba(6, 18, 18, 0.98), rgba(9, 14, 16, 0.92)),
		radial-gradient(circle at top left, rgba(16, 185, 129, 0.14), transparent 28%) !important;
}

body.theme-light .service-not-included li {
	color: rgba(17, 20, 24, 0.65) !important;
	background: rgba(239, 68, 68, 0.04) !important;
	border-color: rgba(239, 68, 68, 0.12) !important;
}

/* ================================================================
   END SERVICE PAGE REDESIGN
   ================================================================ */

/* ================================================================
   DEMO-CARD COVER IMAGE
   Adds a photo header above the card content.
   ================================================================ */

.demo-card {
	overflow: hidden;
	padding: 0;
}

.demo-card__cover {
	width: 100%;
	overflow: hidden;
	border-radius: 26px 26px 0 0;
}

.demo-card__cover img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 500ms ease;
}

.demo-card:hover .demo-card__cover img {
	transform: scale(1.04);
}

/* Restore padding for card content after cover */
.demo-card__cover ~ * {
	padding-left: 26px;
	padding-right: 26px;
}

.demo-card .demo-card__tag {
	margin-top: 22px;
}

.demo-card .case-card__link {
	padding-bottom: 24px;
	display: inline-block;
}

/* Light theme: image overlay softening */
body.theme-light .demo-card__cover img {
	filter: brightness(0.97);
}

/* ── Guarantee-card h3 with inline icon ──────────────────────────── */
.icon-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
}
.icon-heading svg { flex-shrink: 0; }
.icon-heading--emerald svg { color: var(--emerald); }
.icon-heading--red     svg { color: #ef4444; }
.icon-heading--blue    svg { color: #60a5fa; }
.icon-heading--amber   svg { color: #f59e0b; }

/* ── Support-card tag gap for inline icon ───────────────────────── */
.support-card__tag { gap: 5px; }
.support-card__tag svg { flex-shrink: 0; }

/* ── Addon-card label with inline icon ──────────────────────────── */
.addon-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.addon-label svg { flex-shrink: 0; opacity: 0.8; }

/* ── Article hero responsive ─────────────────────────────────────── */
@media (max-width: 680px) {
	.article-hero {
		padding: 28px 0 24px;
	}
	.article-hero__inner {
		gap: 14px;
	}
	.article-hero__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.article-hero__title {
		font-size: 28px;
	}
	.article-hero__meta {
		flex-wrap: wrap;
		gap: 6px;
	}
	.article-cover {
		aspect-ratio: 16 / 7;
		border-radius: 16px;
	}
}

/* ── Light theme for article hero ───────────────────────────────── */
body.theme-light .article-hero__back { color: #6b7280; }
body.theme-light .article-hero__back:hover { color: var(--emerald); }
body.theme-light .article-hero__meta { color: #6b7280; }

/* ================================================================
   COMPREHENSIVE LIGHT THEME FIXES — full audit pass
   ================================================================ */

/* ── Post CTA block ─────────────────────────────────────────────── */
body.theme-light .post-cta              { background: rgba(255,255,255,0.85); border-color: rgba(15,23,42,0.1); }
body.theme-light .post-cta__text h3     { color: #0f172a; }
body.theme-light .post-cta__text p      { color: #475569; }
body.theme-light .post-cta__text .eyebrow { color: var(--emerald-strong); }

/* ── Post nav (prev/next) ───────────────────────────────────────── */
body.theme-light .post-nav__item        { background: rgba(255,255,255,0.7); border-color: rgba(15,23,42,0.1); }
body.theme-light .post-nav__item:hover  { background: rgba(16,185,129,0.05); border-color: rgba(16,185,129,0.3); }
body.theme-light .post-nav__title       { color: #0f172a; }

/* ── Post sidebar widgets ───────────────────────────────────────── */
body.theme-light .ps-widget             { background: rgba(255,255,255,0.8); border-color: rgba(15,23,42,0.1); }
body.theme-light .ps-widget__head       { color: #0f172a; border-bottom-color: rgba(15,23,42,0.08); }
body.theme-light .ps-item              { border-bottom-color: rgba(15,23,42,0.06); }
body.theme-light .ps-item__link:hover  { background: rgba(15,23,42,0.04); }
body.theme-light .ps-item__title       { color: #0f172a; }
body.theme-light .ps-item__link:hover .ps-item__title { color: var(--emerald-strong); }
body.theme-light .ps-item__meta        { color: #64748b; }
body.theme-light .ps-widget__all       { border-top-color: rgba(15,23,42,0.08); }
body.theme-light .ps-widget__all:hover { background: rgba(16,185,129,0.05); }
body.theme-light .ps-cta__title        { color: #0f172a; }
body.theme-light .ps-cta__text         { color: #475569; }

/* ── Post header (.ph) ──────────────────────────────────────────── */
body.theme-light .ph__title             { color: #0f172a; }
body.theme-light .ph__back             { color: #64748b; }
body.theme-light .ph__back:hover       { color: var(--emerald); }
body.theme-light .ph__date             { color: #64748b; }
body.theme-light .ph__badge--time      { background: rgba(15,23,42,0.07); border-color: rgba(15,23,42,0.1); color: #475569; }

/* ── Blog post cards ────────────────────────────────────────────── */
body.theme-light .post-card                    { background: rgba(255,255,255,.93) !important; border-color: rgba(15,23,42,.1) !important; }
body.theme-light .post-card:hover              { border-color: rgba(16,185,129,.35) !important; box-shadow: 0 12px 40px rgba(16,185,129,.1) !important; }
body.theme-light .post-card--compact .post-card__body h2 { color: #0f172a !important; }
body.theme-light .post-card__date              { color: #059669 !important; }
body.theme-light .post-card__read              { color: #059669 !important; }
body.theme-light .post-card--compact .post-card__image::after { background: linear-gradient(to right, transparent 55%, rgba(255,255,255,.6) 100%) !important; }

/* ── Portfolio ──────────────────────────────────────────────────── */
body.theme-light .portfolio-quantum-case__service-main { color: #0f172a; }
body.theme-light .portfolio-quantum-case__num          { color: rgba(15,23,42,0.25); }

/* ── Eyebrow (section labels) — in light stays emerald/gold ─────── */
body.theme-light .eyebrow              { color: var(--emerald-strong); }

/* ── Glass panel base in light ──────────────────────────────────── */
body.theme-light .glass-panel          { background: rgba(255,255,255,0.82); border-color: rgba(15,23,42,0.1); }

/* ── Service fact numbers ───────────────────────────────────────── */
body.theme-light .service-fact__value  { color: #0f172a; }
body.theme-light .service-fact__label  { color: #475569; }
body.theme-light .service-fact        { background: rgba(255,255,255,0.7); border-color: rgba(15,23,42,0.1); }

/* ── Price cards ────────────────────────────────────────────────── */
body.theme-light .price-card h3        { color: #0f172a; }
body.theme-light .price-card strong    { color: #0f172a; }
body.theme-light .price-card p         { color: #475569; }

/* ── Footer ─────────────────────────────────────────────────────── */
body.theme-light .footer__copy         { color: #64748b; }
body.theme-light .footer__meta         { color: #94a3b8; }

/* ── Section heads ──────────────────────────────────────────────── */
body.theme-light .section__head h2,
body.theme-light .service-section-head h2 { color: #0f172a; }
body.theme-light .section__head p      { color: #475569; }

/* ── Testimonials ───────────────────────────────────────────────── */
body.theme-light .testimonial-grid p   { color: #1e293b; }
body.theme-light .testimonial-grid cite { color: #475569; }

/* ================================================================
   APP PORTFOLIO GRID — homepage 5-app portfolio
   ================================================================ */

.app-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.app-card {
	border-radius: 22px;
	overflow: hidden;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
	text-decoration: none;
	display: block;
	cursor: pointer;
}

.app-card:hover {
	border-color: rgba(16, 185, 129, .35);
	box-shadow: 0 16px 48px rgba(16, 185, 129, .1);
	transform: translateY(-4px);
}

.app-card__visual {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.app-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.68) saturate(.8);
	transition: transform .5s ease, filter .5s ease;
}

.app-card:hover .app-card__visual img {
	transform: scale(1.06);
	filter: brightness(.78) saturate(1);
}

.app-card__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 25%, rgba(7, 9, 15, .88) 100%);
	pointer-events: none;
}

.app-card__visual::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--app-color, var(--emerald));
	z-index: 2;
}

.app-card__icon {
	position: absolute;
	bottom: 14px;
	left: 16px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--app-color, var(--emerald));
	color: #fff;
	flex-shrink: 0;
}

.app-card__icon svg { width: 22px; height: 22px; }

.app-card__body { padding: 18px 20px 22px; }

.app-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.app-card__tags span {
	padding: 3px 9px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--muted);
}

.app-card__body h3 {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 8px;
	color: var(--text);
	letter-spacing: -.02em;
}

.app-card__body p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--muted);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

body.theme-light .app-card               { background: rgba(255, 255, 255, .92); border-color: rgba(15, 23, 42, .1); }
body.theme-light .app-card:hover         { border-color: rgba(16, 185, 129, .35); }
body.theme-light .app-card__tags span    { background: rgba(15, 23, 42, .05); border-color: rgba(15, 23, 42, .1); color: #475569; }
body.theme-light .app-card__body h3      { color: #0f172a; }
body.theme-light .app-card__body p       { color: #475569; }

@media (max-width: 860px)  { .app-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .app-portfolio-grid { grid-template-columns: 1fr; } .app-card__visual { height: 160px; } }

/* ================================================================
   PROCESS STEPS — numbered horizontal steps
   ================================================================ */

.process-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0 24px;
	position: relative;
	padding-top: 16px;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 40px;
	left: calc(10% + 12px);
	right: calc(10% + 12px);
	height: 1px;
	background: linear-gradient(to right, rgba(16, 185, 129, .5) 0%, rgba(16, 185, 129, .1) 100%);
}

.process-step { display: flex; flex-direction: column; }

.process-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--panel);
	border: 1.5px solid rgba(16, 185, 129, .25);
	font-size: 13px;
	font-weight: 800;
	color: var(--emerald);
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.process-step:first-child .process-step__num {
	background: rgba(16, 185, 129, .14);
	border-color: rgba(16, 185, 129, .45);
}

.process-step h3 {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--text);
	line-height: 1.3;
}

.process-step p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--muted);
	margin: 0;
}

body.theme-light .process-step__num                { background: #fff; border-color: rgba(16, 185, 129, .5); }
body.theme-light .process-step:first-child .process-step__num { background: rgba(16, 185, 129, .1); }
body.theme-light .process-step h3                  { color: #0f172a; }
body.theme-light .process-step p                   { color: #475569; }
body.theme-light .process-steps::before            { background: linear-gradient(to right, rgba(16, 185, 129, .6) 0%, rgba(16, 185, 129, .12) 100%); }

@media (max-width: 1100px) { .process-steps { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; } .process-steps::before { display: none; } }
@media (max-width: 700px)  { .process-steps { grid-template-columns: 1fr 1fr; gap: 24px 16px; } }
@media (max-width: 480px)  { .process-steps { grid-template-columns: 1fr; } }

/* ================================================================
   TECH STACK CHIPS
   ================================================================ */

.tech-stack-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.tech-chip {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: 16px;
	transition: border-color .22s ease;
}

.tech-chip:hover { border-color: rgba(16, 185, 129, .3); }

.tech-chip strong { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }
.tech-chip span   { font-size: 11px; color: var(--muted); letter-spacing: .02em; }

body.theme-light .tech-chip          { background: rgba(255, 255, 255, .9); border-color: rgba(15, 23, 42, .1); }
body.theme-light .tech-chip:hover    { border-color: rgba(16, 185, 129, .35); }
body.theme-light .tech-chip strong   { color: #0f172a; }
body.theme-light .tech-chip span     { color: #64748b; }

@media (max-width: 1100px) { .tech-stack-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .tech-stack-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .tech-stack-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   PORTFOLIO FULL CASES — /portfolio/ page
   ================================================================ */

.pf-cases-list {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.pf-case {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	background: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: 28px;
	overflow: hidden;
	transition: border-color .3s ease, box-shadow .3s ease;
	position: relative;
}

.pf-case::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--pf-color, var(--emerald));
	z-index: 2;
}

.pf-case:hover {
	border-color: color-mix(in srgb, var(--pf-color, #10b981) 35%, transparent);
	box-shadow: 0 20px 60px color-mix(in srgb, var(--pf-color, #10b981) 10%, transparent);
}

/* Image side */
.pf-case__image-wrap {
	position: relative;
	height: 100%;
	min-height: 380px;
	overflow: hidden;
}

.pf-case__image-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 100%, color-mix(in srgb, var(--pf-color, #10b981) 22%, transparent), transparent 70%);
	z-index: 1;
	pointer-events: none;
}

.pf-case__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.62) saturate(.85);
	transition: transform .6s ease, filter .6s ease;
}

.pf-case:hover .pf-case__image {
	transform: scale(1.04);
	filter: brightness(.75) saturate(1);
}

.pf-case__image-badge {
	position: absolute;
	bottom: 18px;
	left: 18px;
	z-index: 3;
}

.pf-case__label {
	display: inline-block;
	padding: 5px 12px;
	background: color-mix(in srgb, var(--pf-color, #10b981) 20%, rgba(0,0,0,.6));
	border: 1px solid color-mix(in srgb, var(--pf-color, #10b981) 50%, transparent);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	color: #fff;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

/* Body side */
.pf-case__body {
	padding: 40px 40px 40px 8px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pf-case__header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.pf-case__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: color-mix(in srgb, var(--pf-color, #10b981) 20%, transparent);
	border: 1px solid color-mix(in srgb, var(--pf-color, #10b981) 40%, transparent);
	color: var(--pf-color, #10b981);
	flex-shrink: 0;
}

.pf-case__icon svg { width: 20px; height: 20px; }

.pf-case__title {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -.03em;
	margin: 0 0 4px;
	color: var(--text);
}

.pf-case__subtitle {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
}

.pf-case__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.pf-case__tag {
	padding: 4px 11px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--muted);
}

.pf-case__sections {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pf-case__section {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 14px;
	padding: 16px 18px;
}

.pf-case__section--result {
	border-color: color-mix(in srgb, var(--pf-color, #10b981) 30%, transparent);
	background: color-mix(in srgb, var(--pf-color, #10b981) 6%, transparent);
}

.pf-case__section-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--pf-color, #10b981);
	margin: 0 0 8px;
}

.pf-case__section p {
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(255,255,255,.72);
	margin: 0;
}

.pf-case__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.pf-case__feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,.75);
	line-height: 1.45;
}

.pf-case__feature-icon {
	font-size: 16px;
	flex-shrink: 0;
	line-height: 1.3;
}

.pf-case__cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Light theme */
body.theme-light .pf-case               { background: #fff; border-color: rgba(15,23,42,.1); }
body.theme-light .pf-case__title        { color: #0f172a; }
body.theme-light .pf-case__subtitle     { color: #64748b; }
body.theme-light .pf-case__tag          { background: rgba(15,23,42,.05); border-color: rgba(15,23,42,.1); color: #475569; }
body.theme-light .pf-case__section      { background: rgba(15,23,42,.03); border-color: rgba(15,23,42,.08); }
body.theme-light .pf-case__section p    { color: #334155; }
body.theme-light .pf-case__feature      { color: #334155; }

/* Responsive */
@media (max-width: 960px) {
	.pf-case {
		grid-template-columns: 1fr;
	}
	.pf-case__image-wrap {
		min-height: 260px;
		height: 260px;
	}
	.pf-case__body {
		padding: 28px 28px 32px;
	}
}

@media (max-width: 560px) {
	.pf-case__title        { font-size: 24px; }
	.pf-case__features     { grid-template-columns: 1fr; }
	.pf-case__image-wrap   { min-height: 200px; height: 200px; }
	.pf-cases-list         { gap: 48px; }
}
