.hero {
	position: relative;
	display: flex;
	min-height: max(50rem, 100svh);
	padding: calc(var(--header-height) + 4rem) 0 4rem;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 24%, rgba(242, 41, 91, 0.1), transparent 32%),
		radial-gradient(circle at 62% 60%, rgba(86, 77, 137, 0.12), transparent 38%),
		linear-gradient(135deg, #fbfbfc 0%, #f7f5fb 58%, #fff6f8 100%);
}

.hero__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(86, 77, 137, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.055) 1px, transparent 1px);
	background-size: 5.2rem 5.2rem;
	mask-image: linear-gradient(to right, transparent 5%, #000 65%, #000 100%);
}

.hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.7;
}

.hero__orb--one {
	width: min(32vw, 31rem);
	height: min(32vw, 31rem);
	right: 3vw;
	top: 10vh;
	background: linear-gradient(135deg, rgba(86, 77, 137, 0.14), rgba(242, 41, 91, 0.15));
}

.hero__orb--two {
	width: 13rem;
	height: 13rem;
	right: 35%;
	bottom: 8%;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 40px rgba(86, 77, 137, 0.1);
}

.hero__grid-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(32rem, 1.05fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: center;
}

.hero__copy {
	position: relative;
	z-index: 4;
}

.hero h1 {
	max-width: 11ch;
	font-size: clamp(3.3rem, 5.8vw, 5.4rem);
}

.hero h1 span {
	display: block;
	font-size: 0.92em;
	background: linear-gradient(96deg, var(--color-purple) 5%, var(--color-pink) 95%);
	background-clip: text;
	color: transparent;
}

.hero__lead {
	max-width: 42rem;
	margin: 2rem 0 2.2rem;
	color: var(--color-ink-soft);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.65;
}

.hero__microcopy {
	margin: 1.1rem 0 0;
	color: var(--color-ink-soft);
	font-size: 0.77rem;
}

.hero-showcase {
	position: relative;
	min-height: clamp(34rem, 50vw, 46rem);
	perspective: 1000px;
}

.hero-showcase .browser-card {
	position: absolute;
	transition: transform 500ms var(--ease-out);
}

.browser-card--ujhaz {
	z-index: 1;
	top: 4%;
	left: 7%;
	width: 61%;
	transform: rotate(-7deg) translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
}

.browser-card--bexfit {
	z-index: 3;
	top: 28%;
	right: -2%;
	width: 69%;
	transform: rotate(5deg) translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
}

.browser-card--alexoptika {
	z-index: 2;
	bottom: 3%;
	left: 1%;
	width: 63%;
	transform: rotate(-2deg) translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
}

.hero-showcase__badge {
	position: absolute;
	z-index: 5;
	display: grid;
	min-width: 8.8rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 15px 35px rgba(39, 32, 65, 0.13);
	backdrop-filter: blur(10px);
}

.hero-showcase__badge strong {
	color: var(--color-purple);
	font-size: 1.8rem;
	letter-spacing: -0.05em;
	line-height: 1;
}

.hero-showcase__badge span {
	margin-top: 0.3rem;
	color: var(--color-ink-soft);
	font-size: 0.62rem;
	font-weight: 700;
}

.hero-showcase__badge--experience {
	top: 15%;
	right: 1%;
}

.hero-showcase__badge--rating {
	bottom: 9%;
	right: 5%;
}

.intro-services {
	background: var(--color-white);
}

.service-cards {
	display: grid;
	grid-template-columns: 1.18fr 0.82fr;
	gap: 1.25rem;
}

.service-card {
	position: relative;
	display: flex;
	min-height: 30rem;
	padding: clamp(1.8rem, 4vw, 3.5rem);
	overflow: hidden;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-paper);
}

.service-card--primary {
	background: var(--color-lilac);
}

.service-card__number {
	margin-bottom: auto;
	color: var(--color-purple);
	font-size: 0.76rem;
	font-weight: 750;
}

.service-card h3 {
	position: relative;
	z-index: 2;
	max-width: 14ch;
}

.service-card p {
	position: relative;
	z-index: 2;
	max-width: 34rem;
	color: var(--color-ink-soft);
}

.service-card .text-link {
	position: relative;
	z-index: 2;
	margin-top: 1rem;
}

.service-card__decoration {
	position: absolute;
	top: 3.5rem;
	right: 2rem;
	width: 15rem;
	height: 11rem;
	transform: rotate(8deg);
}

.service-card__decoration span {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(86, 77, 137, 0.25);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: var(--shadow-soft);
}

.service-card__decoration span:nth-child(2) {
	transform: translate(-1.4rem, 1.2rem);
}

.service-card__decoration span:nth-child(3) {
	transform: translate(-2.8rem, 2.4rem);
}

.service-card__status {
	position: absolute;
	top: 3rem;
	right: 2rem;
	display: flex;
	padding: 0.65rem 0.85rem;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
	color: var(--color-ink-soft);
	font-size: 0.66rem;
	font-weight: 700;
}

.service-card__status span {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #23a76f;
	box-shadow: 0 0 0 0.3rem rgba(35, 167, 111, 0.13);
}

.featured-work {
	background: var(--color-paper);
}

.featured-work__list {
	display: grid;
	gap: clamp(5rem, 10vw, 10rem);
}

.project-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.project-showcase:nth-child(even) {
	grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
}

.project-showcase:nth-child(even) .project-showcase__visual {
	order: 2;
}

.project-showcase__visual {
	position: relative;
	padding: clamp(1.5rem, 5vw, 5rem);
	border-radius: var(--radius-lg);
}

.project-showcase--ujhaz .project-showcase__visual {
	background: #eaf7fc;
}

.project-showcase--bexfit .project-showcase__visual {
	background: #e5f1f3;
}

.project-showcase--alexoptika .project-showcase__visual {
	background: #f0f6dc;
}

.project-showcase__browser {
	overflow: hidden;
	border-radius: 1rem;
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	transform: rotate(var(--project-tilt, -1.5deg));
	transition: transform 500ms var(--ease-out);
}

.project-showcase:nth-child(even) .project-showcase__browser {
	--project-tilt: 1.5deg;
}

.project-showcase:hover .project-showcase__browser {
	transform: rotate(0deg) translateY(-0.35rem);
}

.project-showcase__viewport {
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.project-showcase__viewport img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 1.6s var(--ease-out);
}

.project-showcase:hover .project-showcase__viewport img {
	transform: scale(1.035);
}

.project-showcase__number {
	display: block;
	margin-bottom: 3rem;
	color: var(--color-purple);
	font-size: 0.78rem;
	font-weight: 750;
}

.project-showcase__copy > p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.trust-section {
	background: var(--color-white);
}

.trust-panel {
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: clamp(3rem, 8vw, 8rem);
	padding: clamp(2.2rem, 6vw, 6rem);
	border-radius: var(--radius-lg);
	background: var(--color-ink);
	color: var(--color-white);
}

.trust-panel .eyebrow {
	color: #d5d0ff;
}

.trust-panel__intro p:not(.eyebrow) {
	max-width: 40rem;
	color: rgba(255, 255, 255, 0.66);
}

.trust-panel__person {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	margin-top: 2.2rem;
	padding-top: 1.5rem;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-panel__person img {
	width: 5.5rem;
	height: 6.8rem;
	border-radius: 1rem;
	object-fit: cover;
	object-position: 50% 20%;
}

.trust-panel__person p {
	margin: 0 0 0.35rem;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 0.84rem;
	line-height: 1.5;
}

.trust-panel__person strong {
	color: var(--color-white);
	font-size: 0.8rem;
}

.trust-list {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}

.trust-list li {
	display: grid;
	grid-template-columns: 2.4rem 1fr;
	padding: 1.3rem 0;
	gap: 0.7rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-list li:last-child {
	border-bottom: 0;
}

.trust-list span {
	color: var(--color-pink);
	font-size: 0.7rem;
	font-weight: 750;
}

.trust-list strong {
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	font-weight: 600;
}

.process {
	background: var(--color-paper);
}

.process-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--color-line);
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: minmax(8rem, 0.4fr) minmax(0, 1fr);
	padding: clamp(1.8rem, 4vw, 3.2rem) 0;
	border-bottom: 1px solid var(--color-line);
}

.process-list__number {
	color: var(--color-purple);
	font-size: 0.78rem;
	font-weight: 750;
}

.process-list li > div {
	display: grid;
	grid-template-columns: minmax(12rem, 0.5fr) minmax(0, 0.5fr);
	gap: 2rem;
}

.process-list h3 {
	margin: 0;
	font-size: clamp(1.5rem, 2.4vw, 2.6rem);
}

.process-list p {
	margin: 0;
	color: var(--color-ink-soft);
}

.operation-teaser {
	padding-top: 0;
	background: var(--color-paper);
}

.operation-teaser__panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: clamp(2rem, 7vw, 7rem);
	padding: clamp(2.2rem, 6vw, 6rem);
	overflow: hidden;
	align-items: end;
	border-radius: var(--radius-lg);
	background: var(--color-purple);
	color: var(--color-white);
}

.operation-teaser .eyebrow {
	color: #ded9ff;
}

.operation-teaser__panel p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.operation-teaser__pulse {
	position: absolute;
	right: 6%;
	top: 8%;
	width: 8rem;
	height: 8rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
}

.operation-teaser__pulse::before,
.operation-teaser__pulse::after {
	position: absolute;
	inset: 20%;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	content: "";
}

.operation-teaser__pulse::after {
	inset: 39%;
	background: var(--color-pink);
	border: 0;
}

.office-invite {
	background: var(--color-white);
}

.office-invite__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
}

.office-invite__copy > p:not(.eyebrow) {
	color: var(--color-ink-soft);
	font-size: 1.08rem;
}

.office-invite address {
	margin: 2rem 0;
	font-style: normal;
}

.office-invite__visual {
	min-height: 34rem;
}

.office-invite__map {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 34rem;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(26deg, transparent 49.5%, rgba(86, 77, 137, 0.09) 50%, transparent 50.5%) 0 0 / 9rem 9rem,
		linear-gradient(-26deg, transparent 49.5%, rgba(86, 77, 137, 0.07) 50%, transparent 50.5%) 0 0 / 11rem 11rem,
		var(--color-lilac);
}

.office-invite__road {
	position: absolute;
	height: 1.1rem;
	border: 4px solid var(--color-white);
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.13);
	box-shadow: 0 0 0 1px rgba(86, 77, 137, 0.08);
}

.office-invite__road--one {
	width: 130%;
	left: -15%;
	top: 28%;
	transform: rotate(-12deg);
}

.office-invite__road--two {
	width: 110%;
	left: 10%;
	top: 60%;
	transform: rotate(32deg);
}

.office-invite__road--three {
	width: 80%;
	left: -10%;
	top: 72%;
	transform: rotate(-36deg);
}

.office-invite__pin {
	position: absolute;
	top: 47%;
	left: 52%;
	display: grid;
	min-width: 10rem;
	padding: 1rem 1.2rem 1rem 3.2rem;
	border-radius: 1rem;
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	transform: translate(-50%, -50%);
}

.office-invite__pin i {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	width: 1.35rem;
	height: 1.35rem;
	border: 0.35rem solid var(--color-pink);
	border-radius: 50% 50% 50% 0;
	transform: translateY(-55%) rotate(-45deg);
}

.office-invite__pin strong {
	font-size: 1rem;
}

.office-invite__pin small {
	color: var(--color-ink-soft);
}

.page-hero {
	padding: calc(var(--header-height) + 7rem) 0 6rem;
	background: linear-gradient(135deg, var(--color-lilac), var(--color-blush));
}

.page-hero--compact {
	padding-bottom: 4rem;
}

.page-hero--center {
	min-height: 80svh;
	text-align: center;
}

.page-hero--center .eyebrow {
	justify-content: center;
}

.page-hero__lead,
.article__lead {
	max-width: 720px;
	color: var(--color-ink-soft);
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.article__header {
	padding: calc(var(--header-height) + 6rem) 0 4rem;
}

.article__header h1 {
	font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.article__image img {
	width: 100%;
	max-height: 48rem;
	border-radius: var(--radius-lg);
	object-fit: cover;
}

.article__content {
	padding-block: 5rem var(--space-section);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-white);
}

.post-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--color-lilac);
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease-out);
}

.post-card:hover .post-card__image img {
	transform: scale(1.04);
}

.post-card__body {
	padding: clamp(1.4rem, 3vw, 2.2rem);
}

.post-card__meta {
	color: var(--color-purple);
	font-size: 0.72rem;
	font-weight: 700;
}

.post-card h2 {
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.post-card h2 a {
	text-decoration: none;
}

.post-card__body > p:not(.post-card__meta) {
	color: var(--color-ink-soft);
}

.pagination-wrap {
	margin-top: 3rem;
}

@media (max-width: 1100px) {
	.hero {
		min-height: auto;
		padding-top: calc(var(--header-height) + 7rem);
	}

	.hero__grid-layout {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		max-width: 12ch;
	}

	.hero-showcase {
		width: min(100%, 46rem);
		min-height: 38rem;
		margin-inline: auto;
	}
}

@media (max-width: 800px) {
	.service-cards,
	.project-showcase,
	.project-showcase:nth-child(even),
	.trust-panel,
	.operation-teaser__panel,
	.office-invite__grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 26rem;
	}

	.project-showcase:nth-child(even) .project-showcase__visual {
		order: 0;
	}

	.project-showcase__number {
		margin-bottom: 1.5rem;
	}

	.process-list li {
		grid-template-columns: 3rem 1fr;
	}

	.process-list li > div {
		grid-template-columns: 1fr;
		gap: 0.6rem;
	}

	.office-invite__grid {
		gap: 2.5rem;
	}

	.office-invite__visual,
	.office-invite__map {
		min-height: 25rem;
	}

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

@media (max-width: 600px) {
	.hero {
		padding-top: calc(var(--header-height) + 5.5rem);
	}

	.hero__lead {
		margin-top: 1.3rem;
	}

	.hero-showcase {
		min-height: 26rem;
		margin-top: 1.5rem;
	}

	.browser-card--ujhaz {
		top: 1%;
		left: 2%;
		width: 73%;
	}

	.browser-card--bexfit {
		top: 29%;
		right: -8%;
		width: 78%;
	}

	.browser-card--alexoptika {
		bottom: 1%;
		left: -5%;
		width: 72%;
	}

	.hero-showcase__badge {
		display: none;
	}

	.service-card__decoration {
		right: -3rem;
	}

	.project-showcase__visual {
		padding: 1rem;
		border-radius: var(--radius-md);
	}

	.trust-panel,
	.operation-teaser__panel,
	.closing-cta__panel {
		border-radius: var(--radius-md);
	}

	.operation-teaser__pulse {
		display: none;
	}
}

/* Service page system. */
.service-hero {
	position: relative;
	display: flex;
	min-height: min(58rem, 100svh);
	padding: calc(var(--header-height) + 5rem) 0 5rem;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 20%, rgba(242, 41, 91, 0.12), transparent 29%),
		linear-gradient(135deg, #fbfbfd 0%, #f3f0f9 65%, #fff4f7 100%);
}

.service-hero--care {
	background:
		radial-gradient(circle at 80% 26%, rgba(68, 177, 128, 0.14), transparent 27%),
		linear-gradient(135deg, #fbfbfd 0%, #f1f0f8 58%, #f0faf6 100%);
}

.service-hero__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.service-hero__ambient::before {
	position: absolute;
	width: 44rem;
	height: 44rem;
	right: -15rem;
	top: -17rem;
	border: 1px solid rgba(86, 77, 137, 0.15);
	border-radius: 50%;
	box-shadow:
		0 0 0 6rem rgba(86, 77, 137, 0.025),
		0 0 0 12rem rgba(86, 77, 137, 0.018);
	content: "";
}

.service-hero__ambient > span,
.service-hero__ambient > i {
	position: absolute;
	border: 1px solid rgba(86, 77, 137, 0.12);
	border-radius: 50%;
}

.service-hero__ambient > span {
	width: 9rem;
	height: 9rem;
	left: 46%;
	bottom: 8%;
}

.service-hero__ambient > i {
	width: 1rem;
	height: 1rem;
	left: 42%;
	top: 22%;
	background: var(--color-pink);
	border: 0;
	box-shadow: 0 0 0 0.6rem rgba(242, 41, 91, 0.1);
}

.service-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
	gap: clamp(3rem, 7vw, 7rem);
	align-items: center;
}

.service-hero h1 {
	max-width: 13ch;
	font-size: clamp(3.1rem, 5.7vw, 6.3rem);
}

.service-hero__lead {
	max-width: 48rem;
	margin: 1.8rem 0 2.2rem;
	color: var(--color-ink-soft);
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	line-height: 1.65;
}

.service-hero__visual {
	position: relative;
	min-height: 38rem;
}

.build-canvas {
	position: absolute;
	inset: 5% 0 3% 2%;
	border: 1px solid rgba(255, 255, 255, 0.84);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--shadow-card);
	transform: rotate(2.5deg);
	backdrop-filter: blur(16px);
}

.build-canvas__toolbar {
	display: flex;
	height: 3rem;
	padding-inline: 1rem;
	align-items: center;
	gap: 0.42rem;
	border-bottom: 1px solid var(--color-line);
}

.build-canvas__toolbar span {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: rgba(23, 21, 31, 0.18);
}

.build-canvas__toolbar small {
	margin-left: 0.5rem;
	color: var(--color-ink-soft);
	font-size: 0.65rem;
}

.build-canvas__content {
	position: absolute;
	inset: 3rem 0 0;
	padding: 6.5rem 4rem;
	overflow: hidden;
	border-radius: 0 0 1.5rem 1.5rem;
	background:
		radial-gradient(circle at 78% 22%, rgba(242, 41, 91, 0.22), transparent 21%),
		linear-gradient(145deg, #eeeaf8, #fff);
}

.build-canvas__headline {
	display: grid;
	width: 61%;
	gap: 0.75rem;
}

.build-canvas__headline i {
	height: 1.45rem;
	border-radius: 999px;
	background: var(--color-purple);
}

.build-canvas__headline i:nth-child(2) {
	width: 82%;
	background: var(--color-pink);
}

.build-canvas__headline i:nth-child(3) {
	width: 54%;
	height: 0.55rem;
	margin-top: 0.7rem;
	background: rgba(23, 21, 31, 0.19);
}

.build-canvas__button {
	width: 8rem;
	height: 2.5rem;
	margin-top: 2rem;
	border-radius: 999px;
	background: var(--color-ink);
}

.build-canvas__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 4.8rem;
	gap: 0.7rem;
}

.build-canvas__cards span {
	height: 7.5rem;
	border: 1px solid rgba(86, 77, 137, 0.16);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.75);
}

.build-canvas__note {
	position: absolute;
	z-index: 2;
	display: grid;
	min-width: 11rem;
	padding: 0.85rem 1rem;
	border-radius: 0.85rem;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
	transform: rotate(-2.5deg);
}

.build-canvas__note strong {
	color: var(--color-purple);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.build-canvas__note small {
	color: var(--color-ink-soft);
	font-size: 0.66rem;
}

.build-canvas__note--goal {
	left: -3rem;
	top: 24%;
}

.build-canvas__note--answer {
	right: -1.5rem;
	bottom: 17%;
}

.build-canvas__cursor {
	position: absolute;
	z-index: 3;
	width: 1.2rem;
	height: 1.6rem;
	right: 22%;
	top: 35%;
	background: var(--color-pink);
	clip-path: polygon(0 0, 100% 71%, 57% 76%, 43% 100%);
	filter: drop-shadow(0 4px 7px rgba(242, 41, 91, 0.25));
}

.service-method,
.care-included {
	background: var(--color-white);
}

.method-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.method-card {
	min-height: 24rem;
	padding: clamp(1.8rem, 4vw, 3.5rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-paper);
}

.method-card--large {
	grid-row: span 2;
	min-height: 49.25rem;
	background:
		radial-gradient(circle at 82% 80%, rgba(242, 41, 91, 0.13), transparent 28%),
		var(--color-lilac);
}

.method-card__index {
	display: block;
	margin-bottom: clamp(5rem, 12vw, 12rem);
	color: var(--color-purple);
	font-size: 0.75rem;
	font-weight: 750;
}

.method-card:not(.method-card--large) .method-card__index {
	margin-bottom: 3.5rem;
}

.method-card p {
	max-width: 37rem;
	color: var(--color-ink-soft);
}

.pricing-section {
	background: var(--color-paper);
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.price-card {
	position: relative;
	display: flex;
	min-height: 31rem;
	padding: clamp(1.6rem, 3vw, 2.6rem);
	flex-direction: column;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-white);
}

.price-card--featured {
	background: var(--color-purple);
	color: var(--color-white);
	transform: translateY(-1rem);
	box-shadow: var(--shadow-card);
}

.price-card__type {
	margin-bottom: 3.5rem;
	color: var(--color-purple);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.price-card--featured .price-card__type {
	color: #ded9ff;
}

.price-card > p:not(.price-card__type, .price-card__price) {
	color: var(--color-ink-soft);
}

.price-card--featured > p:not(.price-card__type, .price-card__price) {
	color: rgba(255, 255, 255, 0.7);
}

.price-card__price {
	display: grid;
	margin: auto 0 0;
	padding-top: 2rem;
	border-top: 1px solid var(--color-line);
}

.price-card--featured .price-card__price {
	border-color: rgba(255, 255, 255, 0.18);
}

.price-card__price span,
.price-card__price small {
	color: var(--color-ink-soft);
	font-size: 0.68rem;
	font-weight: 650;
}

.price-card--featured .price-card__price span,
.price-card--featured .price-card__price small {
	color: rgba(255, 255, 255, 0.65);
}

.price-card__price strong {
	font-size: clamp(1.7rem, 2.5vw, 2.6rem);
	letter-spacing: -0.05em;
}

.included-section {
	background: var(--color-white);
}

.included-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.included-section__intro {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	align-self: start;
}

.included-section__intro p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.check-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--color-line);
	list-style: none;
}

.check-list li {
	position: relative;
	display: grid;
	padding: 1.65rem 0 1.65rem 3.2rem;
	border-bottom: 1px solid var(--color-line);
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: 1.7rem;
	display: grid;
	width: 1.8rem;
	height: 1.8rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-lilac);
	color: var(--color-purple);
	content: "✓";
	font-size: 0.75rem;
	font-weight: 800;
}

.check-list strong {
	font-size: 1.08rem;
}

.check-list span {
	color: var(--color-ink-soft);
	font-size: 0.86rem;
}

.ai-section {
	padding-top: 0;
	background: var(--color-white);
}

.ai-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: clamp(2.5rem, 8vw, 8rem);
	padding: clamp(2.2rem, 6vw, 6rem);
	overflow: hidden;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%),
		var(--color-ink);
	color: var(--color-white);
}

.ai-panel .eyebrow {
	color: #d7d1ff;
}

.ai-panel > div:nth-child(2) {
	position: relative;
	z-index: 2;
}

.ai-panel > div:nth-child(2) p {
	color: rgba(255, 255, 255, 0.68);
}

.ai-panel__signal {
	position: absolute;
	right: -9rem;
	bottom: -9rem;
	width: 25rem;
	height: 25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.ai-panel__signal span {
	position: absolute;
	inset: 18%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.ai-panel__signal span:nth-child(2) {
	inset: 36%;
}

.ai-panel__signal span:nth-child(3) {
	inset: 48%;
	background: var(--color-pink);
	border: 0;
}

.delivery-section {
	background: var(--color-paper);
}

.delivery-line {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	list-style: none;
}

.delivery-line li {
	position: relative;
	display: grid;
	min-height: 13rem;
	padding: 1.5rem 1rem;
	align-content: space-between;
	border-right: 1px solid var(--color-line);
}

.delivery-line li:last-child {
	border-right: 0;
}

.delivery-line li > span {
	display: grid;
	width: 1.8rem;
	height: 1.8rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-purple);
	color: var(--color-white);
	font-size: 0.68rem;
	font-weight: 750;
}

.delivery-line strong {
	font-size: 0.88rem;
	line-height: 1.35;
}

.delivery-line small {
	color: var(--color-ink-soft);
	font-size: 0.65rem;
}

.contract-note,
.license-note {
	display: grid;
	grid-template-columns: minmax(13rem, 0.42fr) minmax(0, 0.58fr);
	margin-top: 2rem;
	padding: 1.5rem 1.7rem;
	gap: 2rem;
	border: 1px solid rgba(86, 77, 137, 0.18);
	border-radius: var(--radius-md);
	background: var(--color-lilac);
}

.contract-note p,
.license-note p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.86rem;
}

.faq-section {
	background: var(--color-white);
}

.faq-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
	border-top: 1px solid var(--color-line);
}

.faq-list details {
	border-bottom: 1px solid var(--color-line);
}

.faq-list summary {
	position: relative;
	display: flex;
	padding: 1.65rem 3.2rem 1.65rem 0;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	font-weight: 700;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary span {
	position: absolute;
	right: 0;
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-lilac);
	color: var(--color-purple);
	transition: transform 200ms ease;
}

.faq-list details[open] summary span {
	transform: rotate(45deg);
}

.faq-list details p {
	max-width: 50rem;
	padding: 0 3.2rem 1.7rem 0;
	color: var(--color-ink-soft);
}

/* Care page. */
.care-monitor {
	position: absolute;
	inset: 5% 2% 3%;
	padding: 2rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.6rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-card);
	transform: rotate(-2deg);
	backdrop-filter: blur(16px);
}

.care-monitor__top {
	display: grid;
	grid-template-columns: auto 1fr;
	padding-bottom: 1.3rem;
	align-items: center;
	column-gap: 0.75rem;
	border-bottom: 1px solid var(--color-line);
}

.care-monitor__top > span {
	grid-row: span 2;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: #23a76f;
	box-shadow: 0 0 0 0.4rem rgba(35, 167, 111, 0.12);
}

.care-monitor__top small {
	color: var(--color-purple);
	font-size: 0.65rem;
	font-weight: 750;
}

.care-monitor__top strong {
	font-size: 0.95rem;
}

.care-monitor__score {
	position: relative;
	display: grid;
	width: 12rem;
	height: 12rem;
	margin: 2.4rem auto;
	place-content: center;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: 50%;
	text-align: center;
}

.care-monitor__score::before,
.care-monitor__score::after {
	position: absolute;
	inset: 0.8rem;
	border: 0.65rem solid var(--color-lilac);
	border-top-color: var(--color-purple);
	border-right-color: var(--color-pink);
	border-radius: 50%;
	content: "";
	transform: rotate(20deg);
}

.care-monitor__score strong,
.care-monitor__score span {
	position: relative;
	z-index: 2;
}

.care-monitor__score strong {
	font-size: 2.4rem;
	letter-spacing: -0.06em;
	line-height: 1;
}

.care-monitor__score span {
	color: var(--color-ink-soft);
	font-size: 0.65rem;
}

.care-monitor ul {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 0.5rem;
	list-style: none;
}

.care-monitor li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	padding: 0.8rem;
	align-items: center;
	gap: 0.65rem;
	border-radius: 0.7rem;
	background: var(--color-paper);
}

.care-monitor li > span {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #23a76f;
}

.care-monitor li strong {
	font-size: 0.75rem;
}

.care-monitor li small {
	color: var(--color-ink-soft);
	font-size: 0.62rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.feature-grid article {
	min-height: 22rem;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-paper);
}

.feature-grid__icon {
	display: grid;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 5rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-lilac);
	color: var(--color-purple);
	font-size: 0.7rem;
	font-weight: 750;
}

.feature-grid h3 {
	font-size: clamp(1.25rem, 1.7vw, 1.75rem);
}

.feature-grid p {
	color: var(--color-ink-soft);
	font-size: 0.9rem;
}

.license-note {
	grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 0.72fr);
}

.pricing-section--care {
	background: var(--color-paper);
}

.takeover-section {
	padding-top: 0;
	background: var(--color-paper);
}

.takeover-panel {
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: clamp(2.5rem, 8vw, 8rem);
	padding: clamp(2.2rem, 6vw, 6rem);
	border-radius: var(--radius-lg);
	background: var(--color-purple);
	color: var(--color-white);
}

.takeover-panel .eyebrow {
	color: #d7d1ff;
}

.takeover-panel p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

.response-section {
	background: var(--color-white);
}

.response-track {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto;
	padding: 2rem;
	align-items: center;
	gap: 1.25rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-paper);
}

.response-track > span {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.8rem;
	font-weight: 750;
}

.response-track i {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: #23a76f;
	box-shadow: 0 0 0 0.35rem rgba(35, 167, 111, 0.12);
}

.response-track b {
	height: 2px;
	background: linear-gradient(to right, var(--color-purple), var(--color-pink));
}

/* Local Pápa page. */
.local-hero {
	position: relative;
	display: flex;
	min-height: min(58rem, 100svh);
	padding: calc(var(--header-height) + 5rem) 0 5rem;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 82%, rgba(242, 41, 91, 0.09), transparent 28%),
		linear-gradient(135deg, #fbfbfd, #f2eff9 64%, #fff);
}

.local-hero__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.local-hero__ambient span {
	position: absolute;
	right: -2vw;
	top: 4rem;
	color: rgba(86, 77, 137, 0.035);
	font-size: clamp(12rem, 33vw, 38rem);
	font-weight: 800;
	letter-spacing: -0.12em;
	line-height: 1;
}

.local-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.8fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
}

.local-hero h1 {
	max-width: 14ch;
	font-size: clamp(3rem, 5.8vw, 6.3rem);
}

.local-hero__map,
.contact-office__map {
	position: relative;
	min-height: 37rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(26deg, transparent 49.5%, rgba(86, 77, 137, 0.08) 50%, transparent 50.5%) 0 0 / 8rem 8rem,
		linear-gradient(-26deg, transparent 49.5%, rgba(86, 77, 137, 0.06) 50%, transparent 50.5%) 0 0 / 11rem 11rem,
		rgba(255, 255, 255, 0.76);
	box-shadow: var(--shadow-soft);
}

.local-map__line {
	position: absolute;
	height: 1.1rem;
	border: 4px solid rgba(255, 255, 255, 0.94);
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.12);
}

.local-map__line--one {
	width: 125%;
	left: -15%;
	top: 26%;
	transform: rotate(-18deg);
}

.local-map__line--two {
	width: 105%;
	left: 5%;
	top: 58%;
	transform: rotate(31deg);
}

.local-map__line--three {
	width: 87%;
	left: -18%;
	top: 78%;
	transform: rotate(-41deg);
}

.local-map__pin {
	position: absolute;
	z-index: 2;
	top: 48%;
	left: 54%;
	display: grid;
	min-width: 10.5rem;
	padding: 1rem 1.1rem 1rem 3.2rem;
	border-radius: 1rem;
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	transform: translate(-50%, -50%);
}

.local-map__pin i {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	width: 1.35rem;
	height: 1.35rem;
	border: 0.35rem solid var(--color-pink);
	border-radius: 50% 50% 50% 0;
	transform: translateY(-55%) rotate(-45deg);
}

.local-map__pin small,
.local-map__label {
	color: var(--color-ink-soft);
	font-size: 0.65rem;
}

.local-map__label {
	position: absolute;
	padding: 0.4rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
}

.local-map__label--center {
	left: 14%;
	top: 34%;
}

.local-map__label--station {
	right: 8%;
	bottom: 18%;
}

.local-value {
	background: var(--color-white);
}

.local-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.local-benefits article {
	min-height: 24rem;
	padding: clamp(1.6rem, 3vw, 2.7rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-paper);
}

.local-benefits span {
	display: block;
	margin-bottom: 8rem;
	color: var(--color-purple);
	font-size: 0.75rem;
	font-weight: 750;
}

.local-benefits p {
	color: var(--color-ink-soft);
}

.office-gallery-section {
	background: var(--color-paper);
}

.office-gallery-section address {
	margin-top: 1rem;
	color: var(--color-ink);
	font-style: normal;
	font-size: 0.88rem;
}

.office-gallery {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	grid-template-rows: repeat(2, minmax(14rem, 20rem));
	gap: 1rem;
}

.office-gallery__item {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--color-lilac);
}

.office-gallery__item--1 {
	grid-row: 1 / 3;
}

.office-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.local-process {
	background: var(--color-white);
}

.local-service-link {
	padding-top: 0;
	background: var(--color-white);
}

/* Contact page. */
.contact-hero {
	padding: calc(var(--header-height) + 5rem) 0 6rem;
	background:
		radial-gradient(circle at 15% 78%, rgba(242, 41, 91, 0.09), transparent 25%),
		linear-gradient(135deg, #fbfbfd, #f2eff9);
}

.contact-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(32rem, 1.2fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.contact-hero__copy {
	padding-top: 3rem;
}

.contact-hero h1 {
	font-size: clamp(3rem, 5.4vw, 6rem);
}

.contact-facts {
	display: grid;
	margin: 3rem 0 0;
	padding: 0;
	border-top: 1px solid var(--color-line);
	list-style: none;
}

.contact-facts li {
	display: grid;
	grid-template-columns: 7rem 1fr;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--color-line);
	font-size: 0.84rem;
}

.contact-facts li > span {
	color: var(--color-ink-soft);
}

.contact-facts a {
	font-weight: 700;
	text-decoration: none;
}

.contact-form-panel {
	padding: clamp(1.2rem, 3vw, 2.2rem);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-soft);
}

.contact-form-panel__head {
	display: flex;
	padding: 0.4rem 0.4rem 1.4rem;
	align-items: center;
	gap: 0.8rem;
	border-bottom: 1px solid var(--color-line);
}

.contact-form-panel__head > span {
	display: grid;
	width: 2.2rem;
	height: 2.2rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-purple);
	color: var(--color-white);
	font-size: 0.7rem;
	font-weight: 750;
}

.contact-form-panel__head p,
.contact-form-panel__head small {
	margin: 0;
}

.contact-form-panel__head p {
	font-size: 0.85rem;
	font-weight: 750;
}

.contact-form-panel__head small {
	color: var(--color-ink-soft);
	font-size: 0.66rem;
}

.crm-form {
	min-height: 31.25rem;
}

.crm-form iframe {
	width: 100%;
	border: 0;
}

.contact-next {
	background: var(--color-white);
}

.contact-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	gap: 1rem;
	list-style: none;
}

.contact-steps li {
	min-height: 20rem;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-paper);
}

.contact-steps span {
	display: block;
	margin-bottom: 6rem;
	color: var(--color-purple);
	font-size: 0.72rem;
	font-weight: 750;
}

.contact-steps strong {
	display: block;
	margin-bottom: 0.8rem;
	font-size: 1.15rem;
}

.contact-steps p {
	color: var(--color-ink-soft);
	font-size: 0.9rem;
}

.contact-office {
	background: var(--color-paper);
}

.contact-office__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
}

.contact-office__map {
	min-height: 31rem;
	background:
		linear-gradient(26deg, transparent 49.5%, rgba(86, 77, 137, 0.08) 50%, transparent 50.5%) 0 0 / 8rem 8rem,
		var(--color-lilac);
}

.contact-office address {
	margin-top: 2rem;
	font-style: normal;
}

/* References. */
.references-hero {
	position: relative;
	padding: calc(var(--header-height) + 7rem) 0 5rem;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 25%, rgba(242, 41, 91, 0.12), transparent 25%),
		linear-gradient(135deg, #fbfbfd, #f2eff9 60%, #fff4f7);
}

.references-hero__copy {
	max-width: 64rem;
}

.references-hero h1 {
	font-size: clamp(3.2rem, 7vw, 7.5rem);
}

.references-hero__ticker {
	display: flex;
	width: max-content;
	margin-top: 6rem;
	align-items: center;
	gap: 1.5rem;
	color: rgba(86, 77, 137, 0.25);
	font-size: clamp(1.4rem, 3vw, 3rem);
	font-weight: 750;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.references-hero__ticker i {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--color-pink);
}

.flagship-section {
	background: var(--color-white);
}

.flagship-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1rem;
}

.flagship-card {
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--color-paper);
}

.flagship-card:first-child {
	grid-row: span 2;
}

.flagship-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--color-lilac);
}

.flagship-card:first-child .flagship-card__image {
	aspect-ratio: auto;
	height: 38rem;
}

.flagship-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 800ms var(--ease-out);
}

.flagship-card:hover .flagship-card__image img {
	transform: scale(1.035);
}

.flagship-card__copy {
	padding: clamp(1.5rem, 4vw, 3rem);
}

.flagship-card__copy .eyebrow {
	margin-bottom: 1rem;
}

.flagship-card__copy p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.flagship-card--ujhaz {
	background: #eaf7fc;
}

.flagship-card--bexfit {
	background: #e5f1f3;
}

.flagship-card--alexoptika {
	background: #f0f6dc;
}

.reference-library {
	background: var(--color-paper);
}

.reference-filters {
	display: flex;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.reference-filters button {
	min-height: 2.8rem;
	padding: 0.65rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-ink);
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 700;
}

.reference-filters button:hover,
.reference-filters button.is-active {
	border-color: var(--color-purple);
	background: var(--color-purple);
	color: var(--color-white);
}

.reference-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.reference-card {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-white);
}

.reference-card[hidden] {
	display: none;
}

.reference-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--color-lilac);
}

.reference-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 600ms var(--ease-out);
}

.reference-card:hover .reference-card__image img {
	transform: scale(1.04);
}

.reference-card__body {
	padding: 1.35rem;
}

.reference-card h3 {
	margin-bottom: 0.6rem;
	font-size: 1.25rem;
}

.reference-card p {
	color: var(--color-ink-soft);
	font-size: 0.8rem;
}

.reference-card .text-link {
	font-size: 0.78rem;
}

@media (max-width: 1100px) {
	.service-hero,
	.local-hero {
		min-height: auto;
		padding-top: calc(var(--header-height) + 7rem);
	}

	.service-hero__grid,
	.local-hero__grid {
		grid-template-columns: 1fr;
	}

	.service-hero h1,
	.local-hero h1 {
		max-width: 16ch;
	}

	.service-hero__visual {
		width: min(100%, 42rem);
		min-height: 34rem;
		margin-inline: auto;
	}

	.local-hero__map {
		width: min(100%, 42rem);
		min-height: 32rem;
		margin-inline: auto;
	}

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

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

	.delivery-line li:nth-child(3) {
		border-right: 0;
	}

	.delivery-line li:nth-child(-n + 3) {
		border-bottom: 1px solid var(--color-line);
	}

	.contact-hero__grid {
		grid-template-columns: 1fr;
	}

	.contact-hero__copy {
		padding-top: 1rem;
	}

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

@media (max-width: 800px) {
	.method-grid,
	.price-grid,
	.included-section__grid,
	.ai-panel,
	.faq-section__grid,
	.takeover-panel,
	.local-benefits,
	.contact-steps,
	.contact-office__grid,
	.flagship-grid {
		grid-template-columns: 1fr;
	}

	.method-card--large {
		grid-row: auto;
		min-height: 30rem;
	}

	.method-card__index {
		margin-bottom: 5rem;
	}

	.price-grid {
		gap: 1rem;
	}

	.price-card--featured {
		transform: none;
	}

	.included-section__intro {
		position: static;
	}

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

	.feature-grid article {
		min-height: 19rem;
	}

	.contract-note,
	.license-note {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.office-gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 24rem 16rem;
	}

	.office-gallery__item--1 {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.flagship-card:first-child {
		grid-row: auto;
	}

	.flagship-card:first-child .flagship-card__image {
		height: auto;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 600px) {
	.service-hero__visual {
		min-height: 26rem;
	}

	.build-canvas {
		inset: 4% 0;
	}

	.build-canvas__content {
		padding: 4rem 1.5rem;
	}

	.build-canvas__note--goal {
		left: -0.4rem;
	}

	.build-canvas__note--answer {
		right: -0.3rem;
	}

	.care-monitor {
		inset: 2% 0;
		padding: 1.2rem;
	}

	.care-monitor__score {
		width: 10rem;
		height: 10rem;
		margin: 1.4rem auto;
	}

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

	.delivery-line li,
	.delivery-line li:nth-child(3) {
		border-right: 1px solid var(--color-line);
		border-bottom: 1px solid var(--color-line);
	}

	.delivery-line li:nth-child(even) {
		border-right: 0;
	}

	.delivery-line li:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.response-track {
		grid-template-columns: 1fr;
	}

	.response-track b {
		width: 2px;
		height: 2rem;
		margin-left: 0.35rem;
	}

	.local-hero__map,
	.contact-office__map {
		min-height: 25rem;
	}

	.office-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, 17rem);
	}

	.office-gallery__item--1 {
		grid-column: auto;
	}

	.contact-facts li {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.contact-form-panel {
		padding: 0.8rem;
		border-radius: var(--radius-md);
	}

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

	.references-hero__ticker {
		margin-top: 4rem;
	}
}

/* --------------------------------------------------------------------------
   2026 visual refinement
   Meaningful interface motifs, lighter trust surfaces and responsive hierarchy.
   -------------------------------------------------------------------------- */

[data-glow-card] {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}

[data-glow-card]::after {
	position: absolute;
	z-index: 0;
	inset: 0;
	background: radial-gradient(26rem circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(242, 41, 91, 0.11), transparent 45%);
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms ease;
}

[data-glow-card] > * {
	position: relative;
	z-index: 1;
}

[data-glow-card]:hover {
	border-color: rgba(86, 77, 137, 0.24);
	box-shadow: 0 24px 55px rgba(49, 39, 83, 0.1);
	transform: translateY(-0.25rem);
}

[data-glow-card]:hover::after {
	opacity: 1;
}

/* Homepage service cards. */
.service-card__blueprint {
	position: absolute !important;
	z-index: 0 !important;
	top: 3.3rem;
	right: 2.4rem;
	width: min(47%, 18rem);
	height: 12rem;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.16);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 22px 55px rgba(64, 55, 110, 0.14);
	transform: rotate(3deg);
	transition: transform 500ms var(--ease-out);
}

.service-card:hover .service-card__blueprint {
	transform: rotate(0deg) translateY(-0.25rem);
}

.service-card__blueprint-bar {
	display: flex;
	height: 1.7rem;
	padding: 0 0.65rem;
	align-items: center;
	gap: 0.3rem;
	border-bottom: 1px solid var(--color-line);
}

.service-card__blueprint-bar span {
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 50%;
	background: rgba(23, 21, 31, 0.18);
}

.service-card__blueprint-copy {
	display: grid;
	width: 54%;
	margin: 1.2rem 0 0 1.2rem;
	gap: 0.35rem;
}

.service-card__blueprint-copy i {
	height: 0.55rem;
	border-radius: 999px;
	background: var(--color-purple);
}

.service-card__blueprint-copy i:nth-child(2) {
	width: 76%;
	background: var(--color-pink);
}

.service-card__blueprint-copy i:nth-child(3) {
	width: 88%;
	height: 0.24rem;
	margin-top: 0.3rem;
	background: rgba(23, 21, 31, 0.15);
}

.service-card__blueprint-button {
	width: 3.8rem;
	height: 1rem;
	margin: 0.85rem 0 0 1.2rem;
	border-radius: 999px;
	background: var(--color-ink);
}

.service-card__blueprint-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 1.15rem 1.2rem 0;
	gap: 0.4rem;
}

.service-card__blueprint-grid span {
	height: 2.1rem;
	border-radius: 0.42rem;
	background: var(--color-lilac);
}

.service-card__blueprint small {
	position: absolute;
	right: 0.75rem;
	top: 2.4rem;
	padding: 0.35rem 0.5rem;
	border-radius: 999px;
	background: var(--color-blush);
	color: var(--color-pink);
	font-size: 0.52rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.service-card__care {
	position: absolute !important;
	z-index: 0 !important;
	top: 7.35rem;
	right: 2rem;
	display: grid;
	width: min(62%, 17rem);
	padding: 0.65rem;
	gap: 0.4rem;
	border: 1px solid var(--color-line);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--shadow-soft);
	transform: rotate(-2deg);
	transition: transform 500ms var(--ease-out);
}

.service-card:hover .service-card__care {
	transform: rotate(0deg) translateY(-0.2rem);
}

.service-card__care > span {
	display: grid;
	grid-template-columns: auto 1fr auto;
	padding: 0.55rem 0.6rem;
	align-items: center;
	gap: 0.5rem;
	border-radius: 0.6rem;
	background: var(--color-paper);
}

.service-card__care i {
	width: 0.46rem;
	height: 0.46rem;
	border-radius: 50%;
	background: #23a76f;
	box-shadow: 0 0 0 0.24rem rgba(35, 167, 111, 0.11);
}

.service-card__care strong,
.service-card__care small {
	font-size: 0.58rem;
}

.service-card__care small {
	color: var(--color-ink-soft);
}

/* Light, editorial trust panel. */
.trust-panel {
	position: relative;
	border: 1px solid rgba(86, 77, 137, 0.14);
	background:
		radial-gradient(circle at 12% 92%, rgba(242, 41, 91, 0.1), transparent 29%),
		radial-gradient(circle at 92% 7%, rgba(86, 77, 137, 0.12), transparent 32%),
		linear-gradient(135deg, #f4f1fa, #fff 58%, #fff6f8);
	color: var(--color-ink);
	box-shadow: 0 36px 90px rgba(49, 39, 83, 0.1);
}

.trust-panel .eyebrow {
	color: var(--color-purple);
}

.trust-panel__intro p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.trust-panel__person {
	grid-template-columns: 7rem 1fr;
	border-color: rgba(86, 77, 137, 0.15);
}

.trust-panel__portrait {
	display: block;
	position: relative;
	overflow: hidden;
	width: 7rem;
	height: 7rem;
	border-radius: 1rem;
	box-shadow: 0 16px 35px rgba(49, 39, 83, 0.13);
}

.trust-panel__person .trust-panel__portrait img {
	width: 100%;
	height: 100%;
	max-width: none;
	border-radius: 0;
	object-fit: cover;
	transform: scale(1.42);
	transform-origin: 50% 26%;
	box-shadow: none;
}

.trust-panel__person p {
	color: var(--color-ink-soft) !important;
}

.trust-panel__person strong {
	color: var(--color-ink);
}

.trust-panel__person strong a {
	color: inherit;
	text-decoration: none;
}

.trust-panel__person strong a:hover {
	color: var(--color-purple);
}

.trust-list {
	align-content: center;
	gap: 0.65rem;
}

.trust-list li {
	padding: 1.05rem 1.15rem;
	align-items: center;
	border: 1px solid rgba(86, 77, 137, 0.12);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 8px 25px rgba(49, 39, 83, 0.05);
}

.trust-list li:last-child {
	border-bottom: 1px solid rgba(86, 77, 137, 0.12);
}

.trust-panel__seal {
	position: absolute;
	right: clamp(1.5rem, 4vw, 4rem);
	top: -1.4rem;
	display: grid;
	min-width: 8.5rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-soft);
	transform: rotate(2deg);
}

.trust-panel__seal strong {
	color: var(--color-purple);
	font-size: 1.8rem;
	letter-spacing: -0.06em;
	line-height: 1;
}

.trust-panel__seal span {
	color: var(--color-ink-soft);
	font-size: 0.62rem;
	font-weight: 700;
}

/* The workflow reads as a living sequence rather than a spreadsheet. */
.process-list li {
	position: relative;
	padding-inline: 1.1rem;
	border-radius: 0.8rem;
	transition: background 300ms ease, transform 300ms var(--ease-out);
}

.process-list li::before {
	position: absolute;
	left: -0.28rem;
	top: 50%;
	width: 0.62rem;
	height: 0.62rem;
	border: 2px solid var(--color-paper);
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.25);
	box-shadow: 0 0 0 1px rgba(86, 77, 137, 0.2);
	content: "";
	transform: translateY(-50%);
	transition: background 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.process-list li.is-active {
	background: linear-gradient(90deg, rgba(238, 234, 248, 0.72), rgba(255, 255, 255, 0));
	transform: translateX(0.35rem);
}

.process-list li.is-active::before {
	background: var(--color-pink);
	box-shadow: 0 0 0 0.42rem rgba(242, 41, 91, 0.1);
	transform: translateY(-50%) scale(1.15);
}

/* A real office is stronger proof than an abstract map. */
.office-photo-stack {
	position: relative;
	min-height: 36rem;
}

.office-photo-stack__item {
	position: absolute;
	overflow: hidden;
	margin: 0;
	border: 0.55rem solid rgba(255, 255, 255, 0.92);
	border-radius: var(--radius-lg);
	background: var(--color-lilac);
	box-shadow: var(--shadow-card);
	transition: transform 500ms var(--ease-out);
}

.office-photo-stack__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.office-photo-stack__item--1 {
	left: 0;
	top: 4%;
	width: 68%;
	height: 82%;
	transform: rotate(-2deg);
}

.office-photo-stack__item--2 {
	right: 0;
	top: 0;
	width: 42%;
	height: 43%;
	transform: rotate(3deg);
}

.office-photo-stack__item--3 {
	right: 3%;
	bottom: 0;
	width: 46%;
	height: 48%;
	transform: rotate(1deg);
}

.office-photo-stack:hover .office-photo-stack__item--1 {
	transform: rotate(-0.5deg) translate(-0.25rem, -0.25rem);
}

.office-photo-stack:hover .office-photo-stack__item--2 {
	transform: rotate(1deg) translate(0.2rem, -0.3rem);
}

.office-photo-stack:hover .office-photo-stack__item--3 {
	transform: rotate(0deg) translate(0.3rem, 0.2rem);
}

.office-photo-stack__badge {
	position: absolute;
	z-index: 5;
	left: 48%;
	bottom: 9%;
	display: grid;
	min-width: 11rem;
	padding: 0.9rem 1rem 0.9rem 3rem;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(12px);
}

.office-photo-stack__badge i {
	position: absolute;
	left: 1rem;
	top: 50%;
	width: 1.05rem;
	height: 1.05rem;
	border: 0.29rem solid var(--color-pink);
	border-radius: 50% 50% 50% 0;
	transform: translateY(-58%) rotate(-45deg);
}

.office-photo-stack__badge strong {
	font-size: 0.75rem;
}

.office-photo-stack__badge small {
	color: var(--color-ink-soft);
	font-size: 0.62rem;
}

/* Weboldalkészítés. */
.service-page--build .service-hero h1 {
	max-width: 14ch;
	font-size: clamp(3rem, 4.05vw, 4.8rem);
}

.method-card {
	position: relative;
}

.method-card.method-card--large {
	min-height: 38rem;
}

.method-card {
	min-height: 18.5rem;
}

.method-card__index {
	margin-bottom: clamp(4rem, 7vw, 7rem);
}

.method-card:not(.method-card--large) .method-card__index {
	margin-bottom: 2rem;
}

.method-card__index {
	position: relative;
	z-index: 2;
}

.method-card__motif {
	position: absolute !important;
	z-index: 0 !important;
	right: 2rem;
	top: 2rem;
	display: block;
	width: 9rem;
	height: 7rem;
	opacity: 0.76;
}

.method-card__motif i {
	position: absolute;
	display: block;
	border: 1px solid rgba(86, 77, 137, 0.22);
	background: rgba(255, 255, 255, 0.68);
}

.method-card__motif--conversation i {
	width: 5.8rem;
	height: 3.1rem;
	border-radius: 1rem 1rem 1rem 0.3rem;
}

.method-card__motif--conversation i:nth-child(1) {
	left: 0;
	top: 0;
}

.method-card__motif--conversation i:nth-child(2) {
	right: 0;
	top: 2.2rem;
	border-color: rgba(242, 41, 91, 0.24);
	border-radius: 1rem 1rem 0.3rem 1rem;
}

.method-card__motif--conversation i:nth-child(3) {
	left: 1.2rem;
	bottom: 0;
	width: 4.2rem;
	height: 0.35rem;
	border: 0;
	border-radius: 999px;
	background: var(--color-purple);
}

.method-card__motif--path i {
	top: 3rem;
	width: 1.2rem;
	height: 1.2rem;
	border: 0.32rem solid var(--color-purple);
	border-radius: 50%;
}

.method-card__motif--path i:nth-child(1) {
	left: 0;
}

.method-card__motif--path i:nth-child(2) {
	left: 3.8rem;
	border-color: var(--color-pink);
}

.method-card__motif--path i:nth-child(3) {
	right: 0;
}

.method-card__motif--path::before {
	position: absolute;
	left: 1rem;
	right: 1rem;
	top: 3.52rem;
	height: 2px;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink), var(--color-purple));
	content: "";
}

.method-card__motif--screen {
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.2);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.75);
}

.method-card__motif--screen i {
	left: 1rem;
	right: 1rem;
	height: 0.48rem;
	border: 0;
	border-radius: 999px;
	background: var(--color-purple);
}

.method-card__motif--screen i:nth-child(1) {
	top: 1.4rem;
}

.method-card__motif--screen i:nth-child(2) {
	top: 2.4rem;
	right: 3rem;
	background: var(--color-pink);
}

.method-card__motif--screen i:nth-child(3) {
	top: 4rem;
	height: 1.8rem;
	border-radius: 0.5rem;
	background: var(--color-lilac);
}

.ai-panel {
	border: 1px solid rgba(86, 77, 137, 0.15);
	background:
		radial-gradient(circle at 92% 86%, rgba(242, 41, 91, 0.1), transparent 30%),
		linear-gradient(135deg, #f0edf8, #fff 62%, #fff3f6);
	color: var(--color-ink);
	box-shadow: 0 30px 80px rgba(49, 39, 83, 0.09);
}

.ai-panel .eyebrow {
	color: var(--color-purple);
}

.ai-panel > div:nth-child(2) p {
	color: var(--color-ink-soft);
}

.ai-panel__signal {
	border-color: rgba(86, 77, 137, 0.1);
}

.ai-panel__signal span {
	border-color: rgba(86, 77, 137, 0.11);
}

/* Üzemeltetés feature system. */
.feature-grid article {
	min-height: 20rem;
	background: linear-gradient(145deg, #fff, var(--color-paper));
}

.feature-grid__icon {
	position: absolute !important;
	left: clamp(1.5rem, 3vw, 2.5rem);
	top: clamp(1.5rem, 3vw, 2.5rem);
	margin: 0;
}

.feature-grid__visual {
	position: relative !important;
	display: block;
	width: 8.5rem;
	height: 5.2rem;
	margin: 3.7rem 0 2rem auto;
}

.feature-grid__visual i {
	position: absolute;
	display: block;
}

.feature-grid__item--hosting .feature-grid__visual i {
	right: 0;
	width: 7.4rem;
	height: 1.15rem;
	border: 1px solid rgba(86, 77, 137, 0.22);
	border-radius: 0.4rem;
	background: rgba(238, 234, 248, 0.7);
	box-shadow: inset 0.75rem 0 var(--color-purple);
}

.feature-grid__item--hosting .feature-grid__visual i:nth-child(1) { top: 0; }
.feature-grid__item--hosting .feature-grid__visual i:nth-child(2) { top: 1.55rem; right: 0.45rem; }
.feature-grid__item--hosting .feature-grid__visual i:nth-child(3) { top: 3.1rem; right: 0.9rem; }

.feature-grid__item--backup .feature-grid__visual i {
	inset: 0.6rem 1.4rem;
	border: 0.55rem solid var(--color-lilac);
	border-top-color: var(--color-purple);
	border-radius: 50%;
}

.feature-grid__item--backup .feature-grid__visual i:nth-child(2) {
	inset: 1.25rem 2.05rem;
	border-top-color: var(--color-pink);
}

.feature-grid__item--backup .feature-grid__visual i:nth-child(3) {
	inset: 2.05rem 2.85rem;
	border: 0;
	background: var(--color-purple);
}

.feature-grid__item--maintenance .feature-grid__visual i {
	top: 50%;
	width: 2.5rem;
	height: 2.5rem;
	border: 0.45rem dotted var(--color-purple);
	border-radius: 50%;
	transform: translateY(-50%);
}

.feature-grid__item--maintenance .feature-grid__visual i:nth-child(1) { left: 0; }
.feature-grid__item--maintenance .feature-grid__visual i:nth-child(2) { left: 2.9rem; border-color: var(--color-pink); transform: translateY(-50%) scale(1.2); }
.feature-grid__item--maintenance .feature-grid__visual i:nth-child(3) { right: 0; }

.feature-grid__item--repair .feature-grid__visual::before {
	position: absolute;
	left: 0.7rem;
	right: 0.7rem;
	top: 50%;
	height: 2px;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
	content: "";
}

.feature-grid__item--repair .feature-grid__visual i {
	top: 50%;
	width: 1.2rem;
	height: 1.2rem;
	border: 0.3rem solid var(--color-purple);
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}

.feature-grid__item--repair .feature-grid__visual i:nth-child(1) { left: 0; }
.feature-grid__item--repair .feature-grid__visual i:nth-child(2) { left: 50%; border-color: var(--color-pink); transform: translate(-50%, -50%) scale(1.25); }
.feature-grid__item--repair .feature-grid__visual i:nth-child(3) { right: 0; }

.feature-grid__item--support .feature-grid__visual i {
	width: 5.5rem;
	height: 2.4rem;
	border: 1px solid rgba(86, 77, 137, 0.2);
	border-radius: 0.9rem 0.9rem 0.9rem 0.2rem;
	background: var(--color-lilac);
}

.feature-grid__item--support .feature-grid__visual i:nth-child(1) { left: 0; top: 0; }
.feature-grid__item--support .feature-grid__visual i:nth-child(2) { right: 0; bottom: 0; border-radius: 0.9rem 0.9rem 0.2rem 0.9rem; background: var(--color-blush); }
.feature-grid__item--support .feature-grid__visual i:nth-child(3) { display: none; }

.feature-grid__item--license .feature-grid__visual i {
	width: 4.7rem;
	height: 3.3rem;
	border: 1px solid rgba(86, 77, 137, 0.2);
	border-radius: 0.7rem;
	background: rgba(238, 234, 248, 0.8);
	box-shadow: inset 0 0.55rem var(--color-purple);
}

.feature-grid__item--license .feature-grid__visual i:nth-child(1) { left: 0; top: 0; transform: rotate(-5deg); }
.feature-grid__item--license .feature-grid__visual i:nth-child(2) { right: 0; bottom: 0; transform: rotate(4deg); box-shadow: inset 0 0.55rem var(--color-pink); }
.feature-grid__item--license .feature-grid__visual i:nth-child(3) { display: none; }

.response-promise {
	display: grid;
	grid-template-columns: minmax(11rem, 0.3fr) minmax(0, 0.7fr);
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: var(--radius-lg);
	background: linear-gradient(125deg, var(--color-lilac), #fff);
	box-shadow: 0 22px 60px rgba(49, 39, 83, 0.08);
}

.response-promise__number {
	display: grid;
	padding: 2rem;
	align-content: center;
	border-right: 1px solid rgba(86, 77, 137, 0.14);
}

.response-promise__number strong {
	color: var(--color-purple);
	font-size: clamp(4rem, 8vw, 7rem);
	letter-spacing: -0.08em;
	line-height: 0.82;
}

.response-promise__number span {
	font-size: 1.1rem;
	font-weight: 750;
}

.response-promise__number small {
	margin-top: 0.4rem;
	color: var(--color-ink-soft);
	font-size: 0.65rem;
}

.response-promise .response-track {
	border: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.62);
}

/* Pápa page. */
.local-hero__photos {
	min-height: 40rem;
}

.local-hero h1 {
	font-size: clamp(3rem, 4.7vw, 5.25rem);
}

/* Contact page: the form is a focused second step instead of a fragile hero visual. */
.contact-hero {
	min-height: min(52rem, 100svh);
	display: flex;
	align-items: center;
}

.contact-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.8fr);
	align-items: center;
}

.contact-hero__copy {
	padding-top: 0;
}

.contact-hero__visual {
	position: relative;
	min-height: 34rem;
}

.contact-response-card {
	position: absolute;
	inset: 3% 2% 4% 4%;
	padding: clamp(1.7rem, 4vw, 3.5rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 88% 12%, rgba(242, 41, 91, 0.13), transparent 30%),
		rgba(255, 255, 255, 0.82);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(15px);
	transform: rotate(1.6deg);
}

.contact-response-card__status {
	display: inline-flex;
	padding: 0.55rem 0.75rem;
	align-items: center;
	gap: 0.55rem;
	border-radius: 999px;
	background: rgba(35, 167, 111, 0.1);
	color: #16734e;
	font-size: 0.67rem;
	font-weight: 750;
}

.contact-response-card__status i {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #23a76f;
	box-shadow: 0 0 0 0.3rem rgba(35, 167, 111, 0.12);
}

.contact-response-card__time {
	display: flex;
	margin: 2.3rem 0 1rem;
	align-items: end;
	gap: 0.8rem;
}

.contact-response-card__time strong {
	color: var(--color-purple);
	font-size: clamp(5rem, 10vw, 8rem);
	letter-spacing: -0.09em;
	line-height: 0.72;
}

.contact-response-card__time span {
	max-width: 7rem;
	font-size: 1.15rem;
	font-weight: 750;
	line-height: 1.1;
}

.contact-response-card > p {
	max-width: 24rem;
	color: var(--color-ink-soft);
	font-size: 0.9rem;
}

.contact-response-card ol {
	display: grid;
	margin: 1.8rem 0 0;
	padding: 0;
	gap: 0.45rem;
	list-style: none;
}

.contact-response-card li {
	display: grid;
	grid-template-columns: 2.2rem 1fr;
	padding: 0.65rem;
	align-items: center;
	border-radius: 0.7rem;
	background: rgba(238, 234, 248, 0.64);
	font-size: 0.75rem;
	font-weight: 700;
}

.contact-response-card li span {
	color: var(--color-purple);
	font-size: 0.62rem;
}

.contact-response-card__note {
	position: absolute;
	z-index: 3;
	right: -0.5rem;
	bottom: 0;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: var(--color-purple);
	box-shadow: var(--shadow-soft);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 750;
	transform: rotate(-2deg);
}

.contact-form-section {
	background: var(--color-white);
}

.contact-form-section__grid {
	display: grid;
	grid-template-columns: minmax(18rem, 0.62fr) minmax(32rem, 1.38fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.contact-form-section__copy {
	position: sticky;
	top: calc(var(--header-height) + 3rem);
}

.contact-form-section__copy > p:not(.eyebrow) {
	color: var(--color-ink-soft);
	font-size: 1.05rem;
}

.contact-form-section__privacy {
	display: flex;
	margin-top: 2rem;
	align-items: flex-start;
	gap: 0.7rem;
	color: var(--color-ink-soft);
	font-size: 0.75rem;
}

.contact-form-section__privacy i {
	flex: 0 0 auto;
	width: 0.85rem;
	height: 1rem;
	margin-top: 0.18rem;
	border: 2px solid var(--color-purple);
	border-radius: 0.18rem;
}

.contact-next {
	background: var(--color-paper);
}

.contact-office {
	background: var(--color-white);
}

.contact-office__photos {
	min-height: 33rem;
}

/* References hero: immediate visual evidence, not a wall of type. */
.references-hero {
	padding-top: calc(var(--header-height) + 5rem);
}

.references-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
	gap: clamp(3rem, 7vw, 7rem);
	align-items: center;
}

.references-hero__copy {
	max-width: none;
}

.references-hero h1 {
	max-width: 12ch;
	font-size: clamp(3.2rem, 4.6vw, 5.2rem);
}

.references-hero__visual {
	position: relative;
	min-height: 39rem;
	perspective: 1000px;
}

.references-hero__card {
	position: absolute;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1rem;
	background: #fff;
	box-shadow: var(--shadow-card);
	transition: transform 480ms var(--ease-out);
}

.references-hero__card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top;
}

.references-hero__card--ujhaz {
	z-index: 1;
	left: 0;
	top: 4%;
	width: 64%;
	transform: translate3d(var(--stack-x, 0), var(--stack-y, 0), 0) rotate(-7deg);
}

.references-hero__card--bexfit {
	z-index: 3;
	right: 0;
	top: 29%;
	width: 70%;
	transform: translate3d(var(--stack-x, 0), var(--stack-y, 0), 0) rotate(5deg);
}

.references-hero__card--alexoptika {
	z-index: 2;
	left: 4%;
	bottom: 2%;
	width: 62%;
	transform: translate3d(var(--stack-x, 0), var(--stack-y, 0), 0) rotate(-2deg);
}

.references-hero__badge {
	position: absolute;
	z-index: 5;
	right: 3%;
	top: 8%;
	display: grid;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(10px);
}

.references-hero__badge strong {
	color: var(--color-purple);
	font-size: 1.9rem;
	letter-spacing: -0.06em;
	line-height: 1;
}

.references-hero__badge span {
	color: var(--color-ink-soft);
	font-size: 0.62rem;
	font-weight: 700;
}

.references-hero__ticker {
	margin-top: 2.5rem;
}

/* Blog archive. */
.blog-hero {
	padding-bottom: 5rem;
}

.blog-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(28rem, 1.3fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
}

.blog-hero__copy h1 {
	font-size: clamp(3.2rem, 6.3vw, 6.8rem);
}

.blog-hero__topics {
	display: flex;
	margin-top: 2rem;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.blog-hero__topics span {
	padding: 0.48rem 0.7rem;
	border: 1px solid rgba(86, 77, 137, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	color: var(--color-purple);
	font-size: 0.65rem;
	font-weight: 700;
}

.blog-featured {
	overflow: hidden;
	border: 0.55rem solid rgba(255, 255, 255, 0.82);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-card);
	transform: rotate(1.5deg);
	transition: transform 500ms var(--ease-out);
}

.blog-featured:hover {
	transform: rotate(0deg) translateY(-0.25rem);
}

.blog-featured__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--color-lilac);
}

.blog-featured__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease-out);
}

.blog-featured:hover .blog-featured__image img {
	transform: scale(1.035);
}

.blog-featured__body {
	padding: clamp(1.4rem, 3vw, 2.2rem);
}

.blog-featured h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.6rem);
}

.blog-featured h2 a {
	text-decoration: none;
}

.blog-hero__visual {
	position: relative;
	min-height: 25rem;
}

.blog-hero__visual span {
	position: absolute;
	width: 65%;
	height: 72%;
	border: 1px solid rgba(86, 77, 137, 0.15);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.65);
	box-shadow: var(--shadow-soft);
}

.blog-hero__visual span:nth-child(1) { left: 0; top: 0; transform: rotate(-7deg); }
.blog-hero__visual span:nth-child(2) { right: 0; top: 12%; transform: rotate(7deg); }
.blog-hero__visual span:nth-child(3) { left: 18%; bottom: 0; background: var(--color-blush); }
.blog-hero__visual i { position: absolute; z-index: 2; left: 30%; top: 48%; color: var(--color-purple); font-size: 0.72rem; font-style: normal; font-weight: 800; letter-spacing: 0.12em; }

@media (max-width: 1100px) {
	.references-hero__grid,
	.blog-hero__grid {
		grid-template-columns: 1fr;
	}

	.contact-hero__grid {
		grid-template-columns: 1fr;
	}

	.references-hero h1 {
		max-width: 13ch;
	}

	.references-hero__visual {
		width: min(100%, 44rem);
		margin-inline: auto;
	}

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

	.contact-form-section__copy {
		position: static;
	}
}

@media (max-width: 800px) {
	.trust-panel__seal {
		right: 1.2rem;
	}

	.office-photo-stack,
	.local-hero__photos,
	.contact-office__photos {
		min-height: 30rem;
	}

	.contact-hero {
		min-height: auto;
	}

	.contact-hero__visual {
		width: min(100%, 34rem);
		min-height: 31rem;
		margin-inline: auto;
	}

	.response-promise {
		grid-template-columns: 1fr;
	}

	.response-promise__number {
		border-right: 0;
		border-bottom: 1px solid rgba(86, 77, 137, 0.14);
	}
}

@media (max-width: 600px) {
	h2 {
		font-size: clamp(2.05rem, 10.3vw, 3.05rem);
	}

	.hero h1 {
		max-width: 100%;
		font-size: clamp(2.65rem, 11.6vw, 3.3rem);
		letter-spacing: -0.055em;
	}

	.hero h1 span {
		font-size: 0.88em;
	}

	.service-hero h1,
	.references-hero h1,
	.blog-hero__copy h1 {
		max-width: 100%;
		font-size: clamp(2.55rem, 11.7vw, 3.4rem);
		letter-spacing: -0.055em;
	}

	.service-page--build .service-hero h1,
	.local-hero h1,
	.contact-hero h1 {
		max-width: 100%;
		font-size: clamp(2.35rem, 10.5vw, 3rem);
		letter-spacing: -0.055em;
	}

	.article__header h1 {
		font-size: clamp(2.45rem, 11vw, 3.35rem);
	}

	.service-card {
		min-height: 28rem;
	}

	.service-card__blueprint {
		top: 3.6rem;
		right: -0.8rem;
		width: 67%;
	}

	.service-card__care {
		right: 1rem;
		width: 72%;
	}

	.trust-panel__seal {
		position: static;
		width: fit-content;
		margin-top: -0.5rem;
		transform: none;
	}

	.trust-panel__person {
		grid-template-columns: 5.8rem 1fr;
	}

	.trust-panel__portrait {
		width: 5.8rem;
		height: 5.8rem;
	}

	.process-list li {
		padding-inline: 0.7rem;
	}

	.process-list li::before {
		display: none;
	}

	.process-list li.is-active {
		transform: none;
	}

	.office-photo-stack,
	.local-hero__photos,
	.contact-office__photos {
		min-height: 25rem;
	}

	.office-photo-stack__item {
		border-width: 0.35rem;
		border-radius: 1.2rem;
	}

	.office-photo-stack__badge {
		left: 34%;
		bottom: 5%;
	}

	.method-card__motif {
		right: 1.1rem;
		top: 1.2rem;
		width: 7.2rem;
		transform: scale(0.8);
		transform-origin: top right;
	}

	.feature-grid__visual {
		margin-top: 3.2rem;
	}

	.response-promise .response-track {
		padding: 1.5rem;
	}

	.contact-hero {
		padding-top: calc(var(--header-height) + 4.8rem);
	}

	.contact-hero__visual {
		min-height: 28rem;
	}

	.contact-response-card {
		inset: 2% 0 5%;
		padding: 1.4rem;
		transform: none;
	}

	.contact-response-card__time strong {
		font-size: 5.2rem;
	}

	.contact-response-card__note {
		right: 0;
	}

	.contact-form-section__grid {
		gap: 2rem;
	}

	.references-hero {
		padding-top: calc(var(--header-height) + 4.8rem);
	}

	.references-hero__visual {
		min-height: 27rem;
	}

	.references-hero__badge {
		display: none;
	}

	.references-hero__ticker {
		margin-top: 2rem;
		font-size: 1rem;
	}

	.blog-hero {
		padding-top: calc(var(--header-height) + 4.8rem);
		padding-bottom: 4rem;
	}

	.blog-hero__grid {
		gap: 2.5rem;
	}

	.blog-featured {
		border-width: 0.35rem;
		border-radius: var(--radius-md);
		transform: none;
	}
}

/* --------------------------------------------------------------------------
   Homepage art direction v3
   Responsive light motion, liquid glass and evidence-led interface details.
   -------------------------------------------------------------------------- */

.hero {
	isolation: isolate;
	min-height: max(52rem, 100svh);
	padding-block: calc(var(--header-height) + 4.5rem) 4.5rem;
	background:
		radial-gradient(circle at 86% 13%, rgba(242, 41, 91, 0.1), transparent 30%),
		radial-gradient(circle at 68% 76%, rgba(86, 77, 137, 0.11), transparent 36%),
		linear-gradient(135deg, #fdfdfe 0%, #f6f3fb 54%, #fff7fa 100%);
}

.hero__ambient {
	z-index: -1;
}

.hero-motion {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.98;
}

.hero__aurora {
	position: absolute;
	border-radius: 50%;
	filter: blur(5px);
	mix-blend-mode: multiply;
	opacity: 0.65;
	will-change: transform;
}

.hero__aurora--one {
	right: -12rem;
	top: -8rem;
	width: clamp(24rem, 48vw, 50rem);
	aspect-ratio: 1;
	background:
		radial-gradient(circle at 35% 38%, rgba(255, 255, 255, 0.88), transparent 27%),
		conic-gradient(from 35deg, rgba(86, 77, 137, 0.07), rgba(242, 41, 91, 0.16), rgba(255, 255, 255, 0.55), rgba(86, 77, 137, 0.07));
	animation: hero-aurora-one 16s ease-in-out infinite alternate;
}

.hero__aurora--two {
	left: 41%;
	bottom: -17rem;
	width: clamp(22rem, 42vw, 44rem);
	aspect-ratio: 1;
	background: radial-gradient(circle at 50% 50%, rgba(126, 104, 190, 0.15), rgba(242, 41, 91, 0.06) 46%, transparent 69%);
	animation: hero-aurora-two 18s ease-in-out infinite alternate;
}

.hero__noise {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(86, 77, 137, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.028) 1px, transparent 1px);
	background-size: 5rem 5rem;
	mask-image: linear-gradient(90deg, transparent, #000 52%, #000);
	opacity: 0.72;
}

@keyframes hero-aurora-one {
	to { transform: translate3d(-4rem, 2rem, 0) rotate(17deg) scale(1.06); }
}

@keyframes hero-aurora-two {
	to { transform: translate3d(3rem, -2rem, 0) rotate(-14deg) scale(0.94); }
}

.hero__grid-layout {
	grid-template-columns: minmax(0, 0.96fr) minmax(30rem, 1.04fr);
	gap: clamp(2.5rem, 5vw, 6rem);
}

.hero h1 {
	max-width: 11.4ch;
	overflow: visible;
	font-size: clamp(3.4rem, 5.75vw, 5.55rem);
}

.hero h1 span {
	width: max-content;
	max-width: none;
	padding-right: 0.12em;
	overflow: visible;
	background-image: linear-gradient(96deg, var(--color-purple) 2%, #7c519f 48%, var(--color-pink) 98%);
	letter-spacing: -0.062em;
	white-space: nowrap;
}

.hero-glass-stage {
	position: relative;
	min-height: clamp(34rem, 47vw, 42rem);
	perspective: 1200px;
}

.hero-glass-stage::before {
	position: absolute;
	inset: 10% 4% 7% 9%;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 48% 52% 54% 46% / 43% 41% 59% 57%;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08)),
		radial-gradient(circle at 70% 20%, rgba(242, 41, 91, 0.1), transparent 38%);
	box-shadow:
		inset 16px 18px 42px rgba(255, 255, 255, 0.52),
		inset -18px -20px 44px rgba(86, 77, 137, 0.06),
		0 40px 90px rgba(49, 39, 83, 0.09);
	backdrop-filter: blur(16px) saturate(155%);
	content: "";
	transform: rotate(-5deg);
	animation: hero-glass-breathe 9s ease-in-out infinite alternate;
}

@keyframes hero-glass-breathe {
	to { border-radius: 53% 47% 42% 58% / 49% 56% 44% 51%; transform: rotate(1deg) scale(1.025); }
}

.hero-glass-stage__refraction {
	position: absolute;
	z-index: 0;
	right: 0;
	top: 2%;
	width: 12rem;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 50%;
	background:
		radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.94), transparent 20%),
		linear-gradient(142deg, rgba(255, 255, 255, 0.46), rgba(242, 41, 91, 0.08) 50%, rgba(86, 77, 137, 0.13));
	box-shadow:
		inset 8px 10px 20px rgba(255, 255, 255, 0.7),
		0 25px 70px rgba(86, 77, 137, 0.12);
	backdrop-filter: blur(17px) saturate(170%);
}

.hero-glass-card {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.76);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.88),
		inset 0 -1px 0 rgba(86, 77, 137, 0.06),
		0 26px 65px rgba(49, 39, 83, 0.12);
	backdrop-filter: blur(26px) saturate(185%);
	transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
	transition: transform 680ms var(--ease-out), box-shadow 400ms ease;
}

.hero-glass-card:hover {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 34px 80px rgba(49, 39, 83, 0.16);
}

.hero-glass-card--statement {
	left: 2%;
	top: 15%;
	display: grid;
	width: min(76%, 29rem);
	padding: clamp(1.5rem, 3vw, 2.2rem);
	gap: 0.6rem;
	border-radius: 2rem 2rem 2rem 0.8rem;
	transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0) rotate(-2.5deg);
}

.hero-glass-card--statement p {
	margin: 0;
	color: var(--color-purple);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-glass-card--statement strong {
	max-width: 18ch;
	font-size: clamp(1.45rem, 2.35vw, 2.25rem);
	letter-spacing: -0.045em;
	line-height: 1.1;
}

.hero-glass-card--statement span {
	color: var(--color-ink-soft);
	font-size: 0.76rem;
	font-weight: 650;
}

.hero-glass-card--google {
	right: 0;
	top: 43%;
	display: grid;
	width: min(54%, 19rem);
	padding: 1.35rem 1.5rem;
	gap: 0.55rem;
	border-radius: 1.65rem 0.7rem 1.65rem 1.65rem;
	transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0) rotate(2.4deg);
}

.hero-glass-card--google img {
	width: 5.8rem;
	height: auto;
}

.hero-glass-card--google div {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
}

.hero-glass-card--google strong {
	font-size: 2.5rem;
	letter-spacing: -0.075em;
	line-height: 1;
}

.hero-glass-card--google div span {
	color: #f5a623;
	font-size: 0.76rem;
	letter-spacing: 0.05em;
}

.hero-glass-card--google small,
.hero-glass-card--metric span {
	color: var(--color-ink-soft);
	font-size: 0.67rem;
	font-weight: 700;
	line-height: 1.35;
}

.hero-glass-card--metric {
	display: grid;
	min-width: 9rem;
	padding: 1rem 1.15rem;
	border-radius: 1.25rem;
}

.hero-glass-card--metric strong {
	color: var(--color-purple);
	font-size: 2rem;
	letter-spacing: -0.07em;
	line-height: 1;
}

.hero-glass-card--projects {
	left: 9%;
	bottom: 9%;
}

.hero-glass-card--care {
	right: 24%;
	bottom: 0;
}

/* Structured service cards: visual evidence and copy never occupy the same layer. */
.service-cards {
	grid-template-columns: 1.08fr 0.92fr;
}

.service-card {
	display: grid;
	min-height: 40rem;
	padding: clamp(1.6rem, 3.4vw, 3rem);
	grid-template-rows: auto minmax(13rem, 0.9fr) auto;
	align-items: stretch;
	gap: 1.8rem;
	background: rgba(249, 248, 252, 0.9);
}

.service-card--primary {
	background:
		linear-gradient(145deg, rgba(238, 234, 248, 0.92), rgba(255, 255, 255, 0.88));
}

.service-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.service-card__header small {
	color: var(--color-ink-soft);
	font-size: 0.64rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-card__number {
	margin: 0;
}

.service-card__blueprint {
	position: relative !important;
	inset: auto !important;
	width: 100%;
	height: 14.5rem;
	align-self: center;
	transform: rotate(1.3deg);
}

.service-card__body {
	align-self: end;
}

.service-card__body h3 {
	max-width: none;
}

.service-card__body p {
	max-width: 38rem;
}

.service-card__ledger {
	position: relative;
	display: grid;
	align-self: center;
	padding: 0.7rem;
	gap: 0.55rem;
	border: 1px solid rgba(86, 77, 137, 0.13);
	border-radius: 1.4rem;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 234, 248, 0.58));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 24px 55px rgba(49, 39, 83, 0.1);
	backdrop-filter: blur(18px) saturate(160%);
	transform: rotate(-1.2deg);
	transition: transform 500ms var(--ease-out);
}

.service-card:hover .service-card__ledger {
	transform: rotate(0deg) translateY(-0.25rem);
}

.service-card__ledger > span {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 0.9rem 1rem;
	align-items: center;
	gap: 1rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.66);
}

.service-card__ledger strong {
	font-size: 0.76rem;
}

.service-card__ledger small {
	color: var(--color-ink-soft);
	font-size: 0.65rem;
	font-weight: 650;
	text-align: right;
}

/* Full-page case-study movement on hover. */
.featured-work {
	position: relative;
	background:
		linear-gradient(180deg, #f7f7f8 0%, #fbfafc 48%, #f7f7f8 100%);
}

.featured-work::before {
	position: absolute;
	left: 0;
	top: 18%;
	width: 28rem;
	height: 28rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.07);
	content: "";
	filter: blur(65px);
}

.project-showcase__visual {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.85),
		0 35px 90px rgba(49, 39, 83, 0.08);
}

.project-showcase__browser {
	border: 1px solid rgba(255, 255, 255, 0.82);
	box-shadow:
		0 28px 70px rgba(32, 26, 51, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.project-showcase__viewport {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #fff;
}

.project-showcase__viewport img,
.project-showcase:hover .project-showcase__viewport img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: none;
	height: auto;
	object-fit: initial;
	transform: translate3d(0, 0, 0);
	transition: transform 1.15s var(--ease-out);
	will-change: transform;
}

.project-showcase:hover .project-showcase__viewport.is-scrolling img {
	transform: translate3d(0, var(--project-scroll-distance, 0), 0);
	transition-duration: var(--project-scroll-duration, 22s);
	transition-timing-function: cubic-bezier(0.2, 0.74, 0.12, 1);
}

.project-showcase__scroll-hint {
	position: absolute;
	z-index: 3;
	right: 0.8rem;
	bottom: 0.8rem;
	display: inline-flex;
	padding: 0.58rem 0.78rem;
	align-items: center;
	gap: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.67);
	box-shadow: 0 12px 30px rgba(31, 25, 54, 0.12);
	backdrop-filter: blur(15px) saturate(170%);
	color: var(--color-ink);
	font-size: 0.62rem;
	font-style: normal;
	font-weight: 750;
	transition: opacity 280ms ease, transform 280ms var(--ease-out);
}

.project-showcase__scroll-hint i {
	color: var(--color-pink);
	font-size: 0.85rem;
	font-style: normal;
}

.project-showcase__viewport.is-scrolling .project-showcase__scroll-hint {
	opacity: 0;
	transform: translateY(0.4rem);
}

/* Apple-inspired glass, without sacrificing contrast or legibility. */
.trust-section {
	position: relative;
	background:
		radial-gradient(circle at 12% 28%, rgba(242, 41, 91, 0.11), transparent 23%),
		radial-gradient(circle at 88% 72%, rgba(86, 77, 137, 0.15), transparent 29%),
		linear-gradient(135deg, #f4f1fa, #fff9fb);
}

.trust-panel {
	isolation: isolate;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.82);
	background:
		linear-gradient(138deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		inset 0 -1px 0 rgba(86, 77, 137, 0.06),
		0 42px 110px rgba(49, 39, 83, 0.14);
	backdrop-filter: blur(30px) saturate(180%);
}

.trust-panel::before {
	position: absolute;
	z-index: 0;
	right: -8rem;
	bottom: -11rem;
	width: 27rem;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 44% 56% 58% 42% / 48% 37% 63% 52%;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(242, 41, 91, 0.06));
	box-shadow: inset 20px 22px 50px rgba(255, 255, 255, 0.44);
	content: "";
	pointer-events: none;
	transform: rotate(22deg);
}

.trust-panel::before {
	display: none;
}

.trust-panel__intro,
.trust-panel .trust-list {
	position: relative;
	z-index: 1;
}

.trust-panel__seal {
	position: absolute;
	z-index: 3;
	right: clamp(1.5rem, 4vw, 4rem);
	top: 1.4rem;
}

.trust-list li,
.trust-panel__seal,
.office-photo-stack__badge {
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.5);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 14px 34px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(18px) saturate(175%);
}

.operation-teaser {
	background:
		radial-gradient(circle at 84% 32%, rgba(242, 41, 91, 0.09), transparent 22%),
		var(--color-paper);
}

.operation-teaser__panel {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.86);
	background:
		linear-gradient(137deg, rgba(255, 255, 255, 0.72), rgba(238, 234, 248, 0.44));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 38px 90px rgba(49, 39, 83, 0.12);
	backdrop-filter: blur(28px) saturate(180%);
	color: var(--color-ink);
}

.operation-teaser .eyebrow {
	color: var(--color-purple);
}

.operation-teaser__panel p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.operation-teaser__details {
	position: relative;
	z-index: 1;
}

.operation-teaser__glass-stack {
	display: grid;
	margin-bottom: 1.5rem;
	gap: 0.45rem;
	perspective: 700px;
}

.operation-teaser__glass-stack span {
	display: flex;
	padding: 0.72rem 0.85rem;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.5);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 10px 28px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(14px) saturate(160%);
	font-size: 0.68rem;
	transform-origin: center;
	transition: transform 400ms var(--ease-out);
}

.operation-teaser__glass-stack span:nth-child(1) { transform: translateX(-0.8rem) rotateX(2deg); }
.operation-teaser__glass-stack span:nth-child(2) { transform: translateX(0.35rem); }
.operation-teaser__glass-stack span:nth-child(3) { transform: translateX(-0.25rem) rotateX(-2deg); }

.operation-teaser__panel:hover .operation-teaser__glass-stack span {
	transform: translateX(0);
}

.operation-teaser__glass-stack i {
	color: var(--color-pink);
	font-size: 0.58rem;
	font-style: normal;
}

.office-invite {
	background:
		radial-gradient(circle at 78% 50%, rgba(86, 77, 137, 0.07), transparent 27%),
		var(--color-white);
}

.office-photo-stack__item {
	border-color: rgba(255, 255, 255, 0.76);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 28px 70px rgba(49, 39, 83, 0.17);
}

@media (max-width: 1040px) {
	.hero {
		min-height: auto;
		padding-bottom: 5.5rem;
	}

	.hero__grid-layout {
		grid-template-columns: 1fr;
	}

	.hero__copy {
		max-width: 49rem;
		padding-top: 2rem;
	}

	.hero-glass-stage {
		width: min(100%, 45rem);
		min-height: 35rem;
		margin-inline: auto;
	}

	.service-cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 760px) {
	.hero {
		padding-top: calc(var(--header-height) + 3.8rem);
	}

	.hero h1 {
		max-width: 100%;
		font-size: clamp(2.65rem, 11.5vw, 4.3rem);
	}

	.hero h1 span {
		font-size: 0.8em;
		letter-spacing: -0.058em;
	}

	.hero__lead {
		margin-top: 1.5rem;
	}

	.hero-glass-stage {
		min-height: 31rem;
	}

	.hero-glass-stage::before {
		inset: 12% 1% 7% 4%;
	}

	.hero-glass-stage__refraction {
		width: 8.5rem;
	}

	.hero-glass-card--statement {
		left: 0;
		width: 79%;
	}

	.hero-glass-card--google {
		width: 62%;
	}

	.hero-glass-card--projects {
		left: 3%;
	}

	.hero-glass-card--care {
		right: 10%;
	}

	.service-cards {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 34rem;
	}

	.service-card__blueprint {
		width: 100%;
		height: 13rem;
	}

	.project-showcase__scroll-hint {
		display: none;
	}

	.operation-teaser__panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 440px) {
	.hero h1 {
		font-size: clamp(2.42rem, 11.2vw, 3.1rem);
	}

	.hero h1 span {
		font-size: 0.76em;
	}

	.hero-glass-stage {
		min-height: 29rem;
	}

	.hero-glass-card--statement {
		top: 12%;
		width: 88%;
		padding: 1.2rem;
	}

	.hero-glass-card--statement strong {
		font-size: 1.35rem;
	}

	.hero-glass-card--google {
		top: 45%;
		width: 69%;
		padding: 1rem;
	}

	.hero-glass-card--google strong {
		font-size: 2rem;
	}

	.hero-glass-card--metric {
		min-width: 7.8rem;
		padding: 0.8rem 0.9rem;
	}

	.hero-glass-card--metric strong {
		font-size: 1.65rem;
	}

	.hero-glass-card--projects {
		bottom: 5%;
	}

	.hero-glass-card--care {
		right: 1%;
		bottom: -2%;
	}

	.service-card {
		min-height: 32rem;
		padding: 1.3rem;
		gap: 1.3rem;
	}

	.service-card__ledger > span {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.service-card__ledger small {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__aurora,
	.hero-glass-stage::before {
		animation: none;
	}

	.project-showcase__viewport img {
		transition: none;
	}
}

/* --------------------------------------------------------------------------
   Homepage art direction v4
   Calmer type scale, ordered hero composition and one visual language.
   -------------------------------------------------------------------------- */

body .site-main h1 {
	font-size: clamp(2.75rem, 4.35vw, 4.7rem) !important;
}

body .site-main h2 {
	font-size: clamp(1.95rem, 3.15vw, 3.6rem) !important;
}

body .site-main .post-card h2,
body .site-main .blog-featured h2,
body .site-main .prose h2 {
	font-size: clamp(1.45rem, 2.25vw, 2.25rem) !important;
}

.hero {
	min-height: max(48rem, 96svh);
	padding-block: calc(var(--header-height) + 3.5rem) 3.75rem;
}

.hero-motion {
	opacity: 0.7;
}

.hero__aurora {
	opacity: 0.46;
}

.hero__noise {
	opacity: 0.4;
}

.hero__grid-layout {
	grid-template-columns: minmax(0, 1.04fr) minmax(30rem, 0.96fr);
	gap: clamp(2.5rem, 5vw, 5rem);
}

body .site-main .hero h1 {
	max-width: 11.8ch;
	font-size: clamp(3rem, 4.25vw, 4.55rem) !important;
}

.hero__lead {
	max-width: 38rem;
	margin-block: 1.65rem 1.9rem;
}

.hero-glass-stage {
	display: grid;
	min-height: clamp(34rem, 43vw, 38rem);
	padding: 2rem;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: repeat(12, minmax(0, 1fr));
}

.hero-glass-stage::before {
	inset: 7% 3% 5% 5%;
	border-radius: 3rem;
	transform: rotate(-1deg);
	animation: hero-glass-breathe-v4 10s ease-in-out infinite alternate;
}

@keyframes hero-glass-breathe-v4 {
	to { border-radius: 3.6rem 2.5rem 3.3rem 2.7rem; transform: rotate(0.6deg) scale(1.012); }
}

.hero-glass-stage__refraction {
	z-index: 1;
	right: 2%;
	top: 4%;
	width: 9rem;
	opacity: 0.72;
}

.hero-glass-card {
	position: relative;
	inset: auto;
	width: auto;
	min-width: 0;
	align-self: stretch;
	transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
}

.hero-glass-card--statement {
	z-index: 3;
	grid-column: 1 / 10;
	grid-row: 2 / 6;
	padding: clamp(1.35rem, 2.5vw, 1.9rem);
	border-radius: 1.65rem;
	transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
}

.hero-glass-card--statement strong {
	font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.hero-glass-card--google {
	z-index: 4;
	grid-column: 7 / 13;
	grid-row: 5 / 9;
	padding: 1.2rem 1.35rem;
	border-radius: 1.65rem;
	transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
}

.hero-glass-card--metric {
	z-index: 3;
	padding: 0.9rem 1.05rem;
	align-self: center;
	border-radius: 1.25rem;
}

.hero-glass-card--projects {
	grid-column: 2 / 6;
	grid-row: 9 / 12;
}

.hero-glass-card--care {
	grid-column: 7 / 11;
	grid-row: 9 / 12;
}

.intro-services {
	position: relative;
	background:
		radial-gradient(circle at 12% 80%, rgba(86, 77, 137, 0.09), transparent 25%),
		radial-gradient(circle at 88% 18%, rgba(242, 41, 91, 0.07), transparent 22%),
		linear-gradient(135deg, #f7f4fb 0%, #fff 50%, #fff8fa 100%);
}

.service-cards {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.35rem;
}

.service-card,
.service-card--primary {
	isolation: isolate;
	min-height: 37rem;
	padding: clamp(1.55rem, 3vw, 2.5rem);
	grid-template-rows: auto 14.5rem auto;
	border: 1px solid rgba(255, 255, 255, 0.82);
	background:
		linear-gradient(138deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.38));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		inset 0 -1px 0 rgba(86, 77, 137, 0.06),
		0 30px 75px rgba(49, 39, 83, 0.1);
	backdrop-filter: blur(28px) saturate(180%);
}

.service-card::before {
	position: absolute;
	z-index: -1;
	right: -6rem;
	top: -7rem;
	width: 19rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(86, 77, 137, 0.12), transparent 68%);
	content: "";
	pointer-events: none;
}

.service-card:nth-child(2)::before {
	right: auto;
	left: -6rem;
	top: auto;
	bottom: -7rem;
	background: radial-gradient(circle, rgba(242, 41, 91, 0.09), transparent 68%);
}

.service-visual {
	position: relative;
	overflow: hidden;
	height: 14.5rem;
	align-self: center;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 1.4rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(238, 234, 248, 0.48));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 24px 55px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(20px) saturate(175%);
	transition: transform 500ms var(--ease-out), box-shadow 500ms ease;
}

.service-card:hover .service-visual {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		0 32px 70px rgba(49, 39, 83, 0.15);
	transform: translateY(-0.25rem);
}

.service-visual__chrome {
	display: flex;
	height: 2.4rem;
	padding-inline: 1rem;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(86, 77, 137, 0.1);
	color: var(--color-ink-soft);
	font-size: 0.58rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.service-visual__chrome i {
	display: grid;
	width: 1.35rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.13);
	border-radius: 0.45rem;
	background: rgba(255, 255, 255, 0.58);
	color: var(--color-purple);
	font-size: 0.52rem;
	font-style: normal;
}

.service-visual__body {
	display: grid;
	height: calc(100% - 2.4rem);
	padding: 1.1rem;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 0.85rem;
}

.service-visual__copy {
	display: flex;
	padding: 1rem;
	flex-direction: column;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.56);
}

.service-visual__copy strong,
.service-visual__copy small {
	display: block;
	border-radius: 999px;
	background: var(--color-purple);
}

.service-visual__copy strong {
	width: 88%;
	height: 0.72rem;
}

.service-visual__copy strong:nth-child(2) {
	width: 64%;
	margin-top: 0.38rem;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.service-visual__copy small {
	width: 94%;
	height: 0.22rem;
	margin-top: 0.9rem;
	background: rgba(23, 21, 31, 0.13);
}

.service-visual__copy small:nth-of-type(2) {
	width: 76%;
	margin-top: 0.32rem;
}

.service-visual__copy i {
	width: 4.2rem;
	height: 1.15rem;
	margin-top: auto;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), var(--color-pink));
}

.service-visual__tiles {
	display: grid;
	gap: 0.5rem;
}

.service-visual__tiles span {
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 0.8rem;
	background:
		linear-gradient(135deg, rgba(238, 234, 248, 0.9), rgba(255, 255, 255, 0.76));
}

.service-visual__body--care {
	display: grid;
	padding: 1.1rem;
	grid-template-columns: 1fr;
	gap: 0.55rem;
}

.service-visual__body--care > span {
	display: grid;
	padding: 0.72rem 0.85rem;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.58);
}

.service-visual__body--care strong {
	font-size: 0.7rem;
}

.service-visual__body--care small {
	color: var(--color-ink-soft);
	font-size: 0.61rem;
	font-weight: 650;
}

.trust-panel {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: stretch;
}

.trust-panel__intro {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.trust-panel__person {
	margin-top: auto;
}

.trust-panel__evidence {
	position: relative;
	z-index: 1;
	display: grid;
	height: 100%;
	grid-template-rows: auto 1fr;
	gap: 0.75rem;
}

.trust-panel__seal {
	position: static;
	display: grid;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 1.15rem 1.3rem;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 0.08rem 1rem;
	border-radius: 1.15rem;
	background:
		linear-gradient(125deg, rgba(86, 77, 137, 0.1), rgba(255, 255, 255, 0.56) 55%, rgba(242, 41, 91, 0.08));
	transform: none;
}

.trust-panel__seal strong {
	grid-row: 1 / 3;
	color: var(--color-purple);
	font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.trust-panel__seal span {
	align-self: end;
	color: var(--color-ink);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.trust-panel__seal small {
	align-self: start;
	color: var(--color-ink-soft);
	font-size: 0.64rem;
	line-height: 1.4;
}

.trust-panel__evidence .trust-list {
	display: grid;
	grid-template-rows: repeat(5, minmax(0, 1fr));
	gap: 0.55rem;
}

.trust-panel__evidence .trust-list li {
	min-height: 0;
	padding: 0.85rem 1rem;
}

.operation-teaser__glass-stack span {
	padding: 0.86rem 1rem;
	gap: 0.85rem;
	font-size: 0.84rem;
}

.operation-teaser__glass-stack i {
	font-size: 0.7rem;
}

.operation-teaser__glass-stack strong {
	font-size: 0.84rem;
}

@media (max-width: 1040px) {
	.hero__grid-layout {
		grid-template-columns: 1fr;
	}

	.hero-glass-stage {
		width: min(100%, 43rem);
	}

	.trust-panel {
		grid-template-columns: 1fr;
	}

	.trust-panel__person {
		margin-top: 2rem;
	}
}

@media (max-width: 760px) {
	body .site-main h1 {
		font-size: clamp(2.25rem, 9.2vw, 3.1rem) !important;
	}

	body .site-main h2 {
		font-size: clamp(1.85rem, 7.8vw, 2.55rem) !important;
	}

	body .site-main .post-card h2,
	body .site-main .blog-featured h2,
	body .site-main .prose h2 {
		font-size: clamp(1.4rem, 6.4vw, 2rem) !important;
	}

	body .site-main .hero h1 {
		font-size: clamp(2.55rem, 10.4vw, 3.35rem) !important;
	}

	.hero-glass-stage {
		min-height: 34rem;
		padding: 0.7rem;
	}

	.hero-glass-card--statement {
		grid-column: 1 / 12;
		grid-row: 2 / 6;
	}

	.hero-glass-card--google {
		grid-column: 4 / 13;
		grid-row: 6 / 10;
	}

	.hero-glass-card--projects {
		grid-column: 1 / 6;
		grid-row: 10 / 13;
	}

	.hero-glass-card--care {
		grid-column: 7 / 13;
		grid-row: 10 / 13;
	}

	.service-cards {
		grid-template-columns: 1fr;
	}

	.service-card,
	.service-card--primary {
		min-height: 34rem;
	}
}

@media (max-width: 440px) {
	.hero-glass-card--statement {
		width: auto;
	}

	.hero-glass-card--google {
		width: auto;
	}

	.service-visual__body {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.service-visual__body--care {
		grid-template-columns: 1fr;
	}

	.service-visual__body--care > span {
		grid-template-columns: 1fr;
		gap: 0.1rem;
	}

	.trust-panel__seal {
		grid-template-columns: 1fr;
	}

	.trust-panel__seal strong {
		grid-row: auto;
	}
}

/* --------------------------------------------------------------------------
   Hero composition v6
   Compact proof cards over an animated, system-oriented technical backdrop.
   -------------------------------------------------------------------------- */

.hero-motion {
	opacity: 1;
}

.hero__aurora {
	display: none;
}

.hero__noise {
	background-image:
		linear-gradient(rgba(86, 77, 137, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.045) 1px, transparent 1px);
	background-size: 3.75rem 3.75rem;
	mask-image: linear-gradient(90deg, transparent 28%, #000 56%, #000);
	opacity: 0.58;
}

.hero-glass-stage {
	min-height: clamp(34rem, 42vw, 37rem);
	padding: 1rem;
}

.hero-glass-stage::before {
	inset: 4% 0 2% 3%;
	border: 0;
	border-radius: 2.8rem;
	background:
		radial-gradient(circle at 76% 30%, rgba(242, 41, 91, 0.15), transparent 32%),
		radial-gradient(circle at 28% 72%, rgba(86, 77, 137, 0.14), transparent 38%);
	box-shadow: none;
	backdrop-filter: none;
	animation: none;
	transform: none;
}

.hero-web-frame {
	position: relative;
	z-index: 1;
	overflow: hidden;
	grid-column: 1 / 13;
	grid-row: 1 / 13;
	margin: 0.7rem 0.35rem 0.45rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 2rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.37), rgba(246, 242, 252, 0.16));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.92),
		inset 0 -1px 0 rgba(86, 77, 137, 0.08),
		0 32px 80px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(15px) saturate(150%);
	transform: none;
}

.hero-web-frame::after {
	position: absolute;
	z-index: 2;
	top: 2.75rem;
	bottom: 0;
	left: -34%;
	width: 34%;
	background: linear-gradient(90deg, transparent, rgba(242, 41, 91, 0.08), rgba(255, 255, 255, 0.22), transparent);
	content: "";
	pointer-events: none;
	animation: hero-frame-scan 7s linear infinite;
}

@keyframes hero-frame-scan {
	to { transform: translateX(410%); }
}

.hero-web-frame__bar {
	display: flex;
	height: 2.75rem;
	padding-inline: 1rem;
	align-items: center;
	gap: 0.38rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.13);
	background: rgba(255, 255, 255, 0.16);
}

.hero-web-frame__bar span {
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 0.12rem;
	background: rgba(86, 77, 137, 0.36);
}

.hero-web-frame__bar span:nth-child(2) {
	background: rgba(124, 107, 190, 0.42);
}

.hero-web-frame__bar span:nth-child(3) {
	background: rgba(242, 41, 91, 0.42);
}

.hero-web-frame__layout {
	position: absolute;
	inset: 3.8rem 1rem 1rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 1.25rem;
	background:
		linear-gradient(rgba(86, 77, 137, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.09) 1px, transparent 1px);
	background-size: 2.65rem 2.65rem;
	opacity: 0.9;
}

.hero-web-frame__layout::before,
.hero-web-frame__layout::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.hero-web-frame__layout::before {
	inset: 12% 9%;
	border: 1px solid rgba(86, 77, 137, 0.14);
	background:
		linear-gradient(90deg, transparent 32%, rgba(86, 77, 137, 0.13) 32%, rgba(86, 77, 137, 0.13) 32.3%, transparent 32.3%),
		linear-gradient(90deg, transparent 67%, rgba(242, 41, 91, 0.11) 67%, rgba(242, 41, 91, 0.11) 67.3%, transparent 67.3%);
	clip-path: polygon(0 0, 82% 0, 82% 18%, 100% 18%, 100% 100%, 18% 100%, 18% 82%, 0 82%);
}

.hero-web-frame__layout::after {
	inset: 0;
	background:
		linear-gradient(90deg, rgba(86, 77, 137, 0.14), rgba(86, 77, 137, 0.14)) 15% 25% / 48% 1px no-repeat,
		linear-gradient(rgba(86, 77, 137, 0.14), rgba(86, 77, 137, 0.14)) 63% 25% / 1px 27% no-repeat,
		linear-gradient(90deg, rgba(242, 41, 91, 0.12), rgba(242, 41, 91, 0.12)) 39% 72% / 45% 1px no-repeat;
}

.hero-web-frame__layout i {
	position: absolute;
	z-index: 2;
	width: 3.1rem;
	height: 1.5rem;
	border: 1px solid rgba(86, 77, 137, 0.15);
	border-radius: 0.35rem;
	background:
		linear-gradient(90deg, rgba(86, 77, 137, 0.22) 36%, transparent 36%) 0.45rem 0.42rem / 2rem 2px no-repeat,
		linear-gradient(90deg, rgba(242, 41, 91, 0.16) 55%, transparent 55%) 0.45rem 0.75rem / 1.45rem 2px no-repeat,
		rgba(255, 255, 255, 0.56);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.92),
		0 10px 24px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(10px);
	animation: hero-module-pulse 3.8s ease-in-out infinite alternate;
}

.hero-web-frame__layout i:nth-child(1) { left: 8%; top: 12%; }
.hero-web-frame__layout i:nth-child(2) { right: 10%; top: 16%; animation-delay: -1.1s; }
.hero-web-frame__layout i:nth-child(3) { left: 43%; top: 46%; width: 3.8rem; animation-delay: -2.2s; }
.hero-web-frame__layout i:nth-child(4) { left: 12%; bottom: 9%; animation-delay: -0.7s; }
.hero-web-frame__layout i:nth-child(5) { right: 7%; bottom: 11%; animation-delay: -1.8s; }

@keyframes hero-module-pulse {
	to {
		border-color: rgba(242, 41, 91, 0.28);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.96),
			0 10px 30px rgba(242, 41, 91, 0.14);
	}
}

.hero-glass-card {
	transform: none !important;
	transition: box-shadow 400ms ease, border-color 400ms ease;
}

.hero-glass-card:hover {
	transform: none !important;
}

.hero-glass-card--google {
	z-index: 4;
	display: grid;
	grid-column: 2 / 12;
	grid-row: 3 / 7;
	padding: clamp(1.15rem, 2.2vw, 1.55rem) clamp(1.25rem, 2.6vw, 1.8rem);
	grid-template-columns: minmax(5.8rem, 0.72fr) minmax(11rem, 1.28fr);
	grid-template-rows: auto auto;
	align-content: center;
	align-items: center;
	column-gap: clamp(1rem, 2vw, 1.6rem);
	row-gap: 0.75rem;
	border-radius: 1.6rem;
	background:
		linear-gradient(137deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		0 24px 58px rgba(49, 39, 83, 0.13);
}

.hero-glass-card--google img {
	grid-column: 1;
	grid-row: 1;
	width: 6rem;
}

.hero-glass-card--google div {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	align-items: center;
	justify-content: flex-start;
	gap: 0.85rem;
}

.hero-glass-card--google strong {
	font-size: clamp(3rem, 4.2vw, 3.8rem);
}

.hero-glass-card--google div span {
	font-size: clamp(0.78rem, 1vw, 0.95rem);
}

.hero-glass-card--google small {
	grid-column: 1 / 3;
	grid-row: 2;
	padding-top: 0.7rem;
	border-top: 1px solid rgba(86, 77, 137, 0.11);
	font-size: 0.76rem;
}

.hero-glass-card--statement {
	z-index: 5;
	display: flex;
	grid-column: 3 / 11;
	grid-row: 8 / 11;
	padding: clamp(1.35rem, 2.4vw, 1.8rem);
	align-items: center;
	align-self: stretch;
	border-radius: 1.45rem;
	background:
		linear-gradient(118deg, rgba(70, 62, 119, 0.94), rgba(111, 73, 148, 0.92) 52%, rgba(229, 42, 94, 0.9));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.34),
		0 24px 56px rgba(86, 77, 137, 0.24);
	color: #fff;
}

.hero-glass-card--statement strong {
	max-width: 25ch;
	color: #fff;
	font-size: clamp(1.28rem, 1.8vw, 1.7rem);
	line-height: 1.18;
}

@media (max-width: 760px) {
	.hero__noise {
		mask-image: linear-gradient(180deg, transparent 18%, #000 44%, #000);
	}

	.hero-glass-stage {
		min-height: 30rem;
		padding: 0.3rem;
	}

	.hero-web-frame {
		margin: 0.5rem 0.15rem 0.25rem;
		border-radius: 1.6rem;
	}

	.hero-web-frame__layout {
		inset: 3.55rem 0.75rem 0.75rem;
		background-size: 2.3rem 2.3rem;
	}

	.hero-glass-card--google {
		grid-column: 1 / 13;
		grid-row: 3 / 7;
		padding: 1.2rem 1.25rem;
		grid-template-columns: 5.6rem minmax(0, 1fr);
		column-gap: 1rem;
		border-radius: 1.45rem;
	}

	.hero-glass-card--google img {
		width: 5.45rem;
	}

	.hero-glass-card--google strong {
		font-size: 2.9rem;
	}

	.hero-glass-card--statement {
		grid-column: 2 / 12;
		grid-row: 8 / 11;
		width: auto;
		padding: 1.2rem;
	}

	.hero-glass-card--statement strong {
		font-size: 1.24rem;
	}
}

@media (max-width: 380px) {
	.hero-glass-card--google {
		padding-inline: 1rem;
		grid-template-columns: 4.9rem minmax(0, 1fr);
		column-gap: 0.75rem;
	}

	.hero-glass-card--google img {
		width: 4.8rem;
	}

	.hero-glass-card--google strong {
		font-size: 2.65rem;
	}

	.hero-glass-card--google div {
		gap: 0.55rem;
	}

	.hero-glass-card--google div span {
		font-size: 0.7rem;
	}
}

/* --------------------------------------------------------------------------
   Hero composition v7
   A calm iOS-style app surface with three equally wide proof widgets.
   -------------------------------------------------------------------------- */

.hero {
	background:
		radial-gradient(circle at 84% 13%, rgba(242, 41, 91, 0.15), transparent 28%),
		radial-gradient(circle at 62% 79%, rgba(99, 80, 162, 0.16), transparent 34%),
		linear-gradient(137deg, #fdfdff 0%, #f5f3fb 52%, #fff7fa 100%);
}

.hero__ambient {
	overflow: hidden;
}

.hero-ios-wallpaper {
	position: absolute;
	border-radius: 50%;
	filter: blur(18px);
	opacity: 0.75;
}

.hero-ios-wallpaper--one {
	right: -9rem;
	top: -13rem;
	width: clamp(34rem, 56vw, 58rem);
	aspect-ratio: 1;
	background:
		radial-gradient(circle at 34% 37%, rgba(255, 255, 255, 0.88), transparent 19%),
		conic-gradient(from 120deg, rgba(86, 77, 137, 0.11), rgba(242, 41, 91, 0.18), rgba(255, 255, 255, 0.5), rgba(124, 107, 190, 0.16), rgba(86, 77, 137, 0.11));
	transform: rotate(-13deg);
}

.hero-ios-wallpaper--two {
	right: 25%;
	bottom: -24rem;
	width: clamp(31rem, 51vw, 53rem);
	aspect-ratio: 1;
	background:
		radial-gradient(circle at 50% 50%, rgba(124, 107, 190, 0.18), rgba(242, 41, 91, 0.08) 45%, transparent 70%);
}

.hero-ios-app-field {
	position: absolute;
	right: -2.5rem;
	top: 8%;
	display: grid;
	width: min(49vw, 43rem);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.1vw, 2rem);
	opacity: 0.26;
	transform: rotate(-4deg);
	mask-image: linear-gradient(90deg, transparent, #000 24%, #000 86%, transparent);
}

.hero-ios-app-field i {
	position: relative;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 25%;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 18px 42px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(14px) saturate(150%);
}

.hero-ios-app-field i::before,
.hero-ios-app-field i::after {
	position: absolute;
	content: "";
}

.hero-ios-app-field i::before {
	inset: 29%;
	border: 2px solid rgba(86, 77, 137, 0.28);
	border-radius: 32%;
}

.hero-ios-app-field i::after {
	left: 36%;
	right: 36%;
	top: 48%;
	height: 2px;
	background: rgba(242, 41, 91, 0.3);
	box-shadow: 0 -0.52rem 0 rgba(86, 77, 137, 0.18), 0 0.52rem 0 rgba(86, 77, 137, 0.18);
}

.hero-ios-app-field i:nth-child(2n)::before {
	inset: 25% 32%;
	border-radius: 50%;
}

.hero-ios-app-field i:nth-child(3n)::after {
	left: 28%;
	right: 28%;
	transform: rotate(-36deg);
}

.hero-ios-app-field i:nth-child(5) {
	grid-column: 2;
}

.hero__noise {
	background-image:
		linear-gradient(rgba(86, 77, 137, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.025) 1px, transparent 1px);
	background-size: 4.75rem 4.75rem;
	mask-image: linear-gradient(90deg, transparent 20%, #000 62%, #000);
	opacity: 0.5;
}

.hero-proof-stage {
	position: relative;
	display: grid;
	min-height: clamp(34rem, 42vw, 37rem);
	place-items: center;
}

.hero-ios-shell {
	position: absolute;
	inset: 0.35rem 1rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 3.25rem;
	background:
		radial-gradient(circle at 76% 15%, rgba(242, 41, 91, 0.13), transparent 27%),
		radial-gradient(circle at 18% 80%, rgba(86, 77, 137, 0.14), transparent 32%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(239, 235, 248, 0.2));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		inset 0 -1px 0 rgba(86, 77, 137, 0.08),
		0 36px 90px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(22px) saturate(165%);
}

.hero-ios-shell__island {
	position: absolute;
	left: 50%;
	top: 1rem;
	width: 5.8rem;
	height: 1.4rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(22, 20, 31, 0.86);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		0 8px 20px rgba(27, 21, 43, 0.16);
	transform: translateX(-50%);
}

.hero-ios-shell__icons {
	position: absolute;
	inset: 4rem 1.3rem 5rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-content: space-between;
	justify-content: space-between;
	gap: 2.4rem;
	opacity: 0.45;
}

.hero-ios-shell__icons i {
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 24%;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.92),
		0 13px 32px rgba(49, 39, 83, 0.09);
}

.hero-ios-shell__dock {
	position: absolute;
	right: 1.3rem;
	bottom: 1rem;
	left: 1.3rem;
	display: grid;
	height: 3.5rem;
	padding: 0.55rem 1.1rem;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.34);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(20px) saturate(170%);
}

.hero-ios-shell__dock i {
	aspect-ratio: 1;
	justify-self: center;
	border-radius: 28%;
	background:
		linear-gradient(145deg, rgba(86, 77, 137, 0.54), rgba(124, 107, 190, 0.38));
}

.hero-ios-shell__dock i:nth-child(2),
.hero-ios-shell__dock i:nth-child(4) {
	background:
		linear-gradient(145deg, rgba(242, 41, 91, 0.56), rgba(203, 58, 122, 0.4));
}

.hero-proof-stack {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(calc(100% - 5rem), 28rem);
	gap: 0.9rem;
}

.hero-proof-card {
	display: grid;
	width: 100%;
	min-height: 7.55rem;
	padding: 1.15rem 1.35rem;
	grid-template-columns: minmax(5.4rem, 0.7fr) minmax(0, 1.3fr);
	align-items: center;
	column-gap: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 1.55rem;
	background:
		linear-gradient(138deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.53));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		0 22px 54px rgba(49, 39, 83, 0.12);
	backdrop-filter: blur(26px) saturate(180%);
	transform: none;
}

.hero-proof-card--google {
	grid-template-rows: auto auto;
	row-gap: 0.5rem;
}

.hero-proof-card--google img {
	grid-column: 1;
	grid-row: 1;
	width: 5.4rem;
	height: auto;
}

.hero-proof-card__rating {
	display: flex;
	grid-column: 2;
	grid-row: 1;
	align-items: center;
	gap: 0.7rem;
}

.hero-proof-card__rating strong {
	font-size: 2.75rem;
	letter-spacing: -0.075em;
	line-height: 1;
}

.hero-proof-card__rating span {
	color: #f5a623;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}

.hero-proof-card--google small {
	grid-column: 1 / 3;
	grid-row: 2;
	padding-top: 0.55rem;
	border-top: 1px solid rgba(86, 77, 137, 0.1);
	color: var(--color-ink-soft);
	font-size: 0.7rem;
	font-weight: 750;
}

.hero-proof-card__number {
	color: var(--color-purple);
	font-size: clamp(2rem, 3.2vw, 2.65rem);
	letter-spacing: -0.065em;
	line-height: 1;
}

.hero-proof-card > span {
	max-width: 20ch;
	color: var(--color-ink);
	font-size: 0.98rem;
	font-weight: 750;
	line-height: 1.35;
}

.hero-proof-card--experience {
	border-color: rgba(255, 255, 255, 0.46);
	background:
		linear-gradient(118deg, rgba(75, 66, 128, 0.93), rgba(112, 75, 150, 0.9) 53%, rgba(229, 42, 94, 0.88));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.32),
		0 22px 54px rgba(86, 77, 137, 0.23);
}

.hero-proof-card--experience .hero-proof-card__number,
.hero-proof-card--experience > span {
	color: #fff;
}

.hero-proof-card--care {
	background:
		linear-gradient(138deg, rgba(255, 255, 255, 0.86), rgba(250, 239, 246, 0.58));
}

.hero-proof-card--care .hero-proof-card__number {
	color: var(--color-pink);
}

@media (max-width: 760px) {
	.hero-ios-app-field {
		right: -6rem;
		top: 38%;
		width: 34rem;
		gap: 1.3rem;
		opacity: 0.2;
	}

	.hero__noise {
		mask-image: linear-gradient(180deg, transparent 12%, #000 44%, #000);
	}

	.hero-proof-stage {
		min-height: 31.5rem;
	}

	.hero-ios-shell {
		inset: 0.35rem 0.15rem;
		border-radius: 2.5rem;
	}

	.hero-proof-stack {
		width: calc(100% - 2.2rem);
		gap: 0.75rem;
	}

	.hero-proof-card {
		min-height: 7.25rem;
		padding: 1rem 1.1rem;
		grid-template-columns: minmax(4.8rem, 0.65fr) minmax(0, 1.35fr);
		column-gap: 0.9rem;
		border-radius: 1.4rem;
	}

	.hero-proof-card--google img {
		width: 4.85rem;
	}

	.hero-proof-card__rating {
		gap: 0.5rem;
	}

	.hero-proof-card__rating strong {
		font-size: 2.45rem;
	}

	.hero-proof-card__rating span {
		font-size: 0.68rem;
	}

	.hero-proof-card__number {
		font-size: 2.15rem;
	}

	.hero-proof-card > span {
		font-size: 0.9rem;
	}
}

@media (max-width: 380px) {
	.hero-proof-card {
		grid-template-columns: 4.25rem minmax(0, 1fr);
		column-gap: 0.7rem;
	}

	.hero-proof-card--google img {
		width: 4.2rem;
	}

	.hero-proof-card__rating strong {
		font-size: 2.2rem;
	}

	.hero-proof-card__rating span {
		font-size: 0.6rem;
	}
}

/* The highlighted promise is intentionally the strongest line of the H1. */
body .site-main .hero h1 span {
	margin-top: 0.015em;
	font-size: 1.07em;
	font-weight: 800;
	letter-spacing: -0.072em;
	line-height: 0.96;
}

@media (max-width: 760px) {
	body .site-main .hero h1 span {
		font-size: 1.04em;
		letter-spacing: -0.078em;
	}
}

@media (max-width: 380px) {
	body .site-main .hero h1 span {
		font-size: 1em;
		letter-spacing: -0.08em;
	}
}

/* --------------------------------------------------------------------------
   Hero composition v8
   Moving development app icons and an interactive glass iPhone dock.
   -------------------------------------------------------------------------- */

.hero-ios-icon-runners {
	position: absolute;
	top: 10%;
	right: -7rem;
	bottom: 12%;
	left: 35%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0.44;
	transform: rotate(-3.5deg);
	mask-image: linear-gradient(90deg, transparent, #000 13%, #000 88%, transparent);
}

.hero-ios-icon-row {
	overflow: hidden;
	padding-block: 0.8rem;
}

.hero-ios-icon-track,
.hero-ios-icon-set {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 1.3rem;
}

.hero-ios-icon-track {
	animation: hero-tech-icons-run 32s linear infinite;
	will-change: transform;
}

.hero-ios-icon-row--reverse .hero-ios-icon-track {
	animation-direction: reverse;
	animation-duration: 38s;
}

@keyframes hero-tech-icons-run {
	to { transform: translate3d(calc(-50% - 0.65rem), 0, 0); }
}

.hero-tech-app {
	position: relative;
	display: grid;
	width: clamp(4rem, 5.6vw, 5.15rem);
	flex: 0 0 auto;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 24%;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 17px 38px rgba(49, 39, 83, 0.14);
	font-style: normal;
}

.hero-tech-app span {
	position: relative;
	z-index: 1;
	color: var(--color-purple);
	font-size: 1rem;
	font-weight: 850;
	letter-spacing: -0.045em;
}

.hero-tech-app--wp {
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.88), rgba(124, 107, 190, 0.68));
}

.hero-tech-app--wp span {
	display: grid;
	width: 2.15rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 50%;
	color: #fff;
	font-family: Georgia, serif;
	font-size: 1.3rem;
}

.hero-tech-app--php {
	background: linear-gradient(145deg, rgba(118, 101, 182, 0.77), rgba(238, 234, 248, 0.72));
}

.hero-tech-app--php span {
	color: #fff;
	font-size: 1.05rem;
	font-style: italic;
	letter-spacing: -0.08em;
}

.hero-tech-app--codex {
	background: linear-gradient(145deg, rgba(26, 24, 34, 0.9), rgba(86, 77, 137, 0.75));
}

.hero-tech-app--codex span {
	color: #fff;
	font-size: 0.84rem;
	letter-spacing: -0.04em;
}

.hero-tech-app--google {
	background: rgba(255, 255, 255, 0.78);
}

.hero-tech-app--google span {
	background: linear-gradient(115deg, #4285f4 12%, #34a853 38%, #fbbc05 62%, #ea4335 86%);
	background-clip: text;
	color: transparent;
	font-family: Arial, sans-serif;
	font-size: 1.65rem;
	font-weight: 800;
}

.hero-tech-app--close {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(251, 214, 226, 0.62));
}

.hero-tech-app--close span {
	color: var(--color-pink);
	font-size: 2rem;
	font-weight: 450;
	line-height: 1;
}

.hero-tech-app--menu {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(233, 228, 245, 0.65));
}

.hero-tech-app--menu span {
	color: var(--color-purple);
	font-size: 1.75rem;
	font-weight: 650;
	line-height: 0.8;
	transform: translateY(-0.08em);
}

.hero-proof-stage::before,
.hero-proof-stage::after {
	position: absolute;
	z-index: 0;
	width: 0.28rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.22);
	box-shadow: 0 8px 18px rgba(49, 39, 83, 0.1);
	content: "";
}

.hero-proof-stage::before {
	left: 0.72rem;
	top: 8.7rem;
	height: 4.5rem;
}

.hero-proof-stage::after {
	right: 0.72rem;
	top: 10.5rem;
	height: 5.2rem;
}

.hero-ios-shell {
	z-index: 1;
	border: 2px solid rgba(255, 255, 255, 0.92);
	outline: 1px solid rgba(49, 39, 83, 0.15);
	outline-offset: -0.28rem;
	border-radius: 3.45rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		inset 0 -1px 0 rgba(86, 77, 137, 0.1),
		0 0 0 0.32rem rgba(255, 255, 255, 0.23),
		0 38px 92px rgba(49, 39, 83, 0.15);
}

.hero-ios-shell::after {
	position: absolute;
	z-index: 6;
	left: 50%;
	bottom: 0.34rem;
	width: 7rem;
	height: 0.27rem;
	border-radius: 999px;
	background: rgba(26, 23, 35, 0.72);
	content: "";
	transform: translateX(-50%);
}

.hero-ios-shell__status {
	position: absolute;
	z-index: 4;
	top: 0.82rem;
	right: 1.55rem;
	left: 1.55rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(30, 27, 40, 0.72);
	font-size: 0.56rem;
	font-weight: 850;
	letter-spacing: 0.01em;
}

.hero-ios-shell__status i {
	font-size: 0.43rem;
	font-style: normal;
	letter-spacing: 0.12em;
}

.hero-ios-shell__island {
	z-index: 5;
	top: 0.62rem;
	width: 6.2rem;
	height: 1.5rem;
}

.hero-ios-shell__icons {
	opacity: 0.28;
}

.hero-ios-shell__dock {
	z-index: 5;
	right: 1.25rem;
	bottom: 1.05rem;
	left: 1.25rem;
	height: 4rem;
	padding: 0.55rem 1.15rem;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	border-radius: 1.55rem;
	pointer-events: auto;
}

.hero-dock-action {
	position: relative;
	display: grid;
	width: 2.75rem;
	aspect-ratio: 1;
	place-items: center;
	justify-self: center;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 28%;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		0 10px 22px rgba(49, 39, 83, 0.14);
	transition: filter 220ms ease, transform 220ms var(--ease-out);
}

.hero-dock-action:hover {
	filter: saturate(1.12) brightness(1.04);
	transform: scale(1.07);
}

.hero-dock-action:focus-visible {
	outline: 3px solid rgba(242, 41, 91, 0.42);
	outline-offset: 3px;
}

.hero-dock-action span::before {
	display: block;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(25, 20, 39, 0.14);
}

.hero-dock-action--phone {
	background: linear-gradient(145deg, #55d76f, #22a949);
}

.hero-dock-action--phone span::before {
	content: "☎";
	transform: rotate(-14deg);
}

.hero-dock-action--email {
	background: linear-gradient(145deg, #7f72db, #5543b0);
}

.hero-dock-action--email span::before {
	content: "✉";
	font-size: 1.18rem;
}

.hero-dock-action--map {
	background: linear-gradient(145deg, #ff5b8f, #d62563);
}

.hero-dock-action--map span::before {
	content: "➤";
	font-size: 1.12rem;
	transform: rotate(-42deg);
}

@media (max-width: 760px) {
	.hero-ios-icon-runners {
		top: 38%;
		right: -14rem;
		bottom: 5%;
		left: -5rem;
		opacity: 0.28;
		transform: rotate(-3deg);
	}

	.hero-tech-app {
		width: 4rem;
	}

	.hero-proof-stage::before {
		left: -0.02rem;
	}

	.hero-proof-stage::after {
		right: -0.02rem;
	}

	.hero-ios-shell {
		border-radius: 2.7rem;
	}

	.hero-ios-shell__dock {
		right: 1rem;
		left: 1rem;
		height: 3.8rem;
	}

	.hero-dock-action {
		width: 2.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-ios-icon-track {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
   Hero composition v9
   Brand-accurate technology marks and a slimmer, taller iPhone silhouette.
   -------------------------------------------------------------------------- */

.hero-tech-app img {
	display: block;
	width: 60%;
	height: 60%;
	object-fit: contain;
}

.hero-tech-app--wp {
	background: rgba(255, 255, 255, 0.82);
}

.hero-tech-app--wp img {
	width: 58%;
	height: 58%;
}

.hero-tech-app--php {
	background: linear-gradient(145deg, rgba(119, 123, 179, 0.96), rgba(72, 76, 137, 0.82));
}

.hero-tech-app--php img {
	width: 70%;
	height: 70%;
	filter: brightness(0) invert(1);
}

.hero-tech-app--codex {
	background: rgba(255, 255, 255, 0.84);
}

.hero-tech-app--codex img {
	width: 52%;
	height: 52%;
}

.hero-tech-app--google {
	background: rgba(255, 255, 255, 0.84);
}

.hero-tech-app--google img {
	width: 52%;
	height: 52%;
}

.hero-tech-app--javascript {
	background: #f7df1e;
}

.hero-tech-app--javascript img {
	width: 68%;
	height: 68%;
}

.hero-tech-app--cpanel {
	background: rgba(255, 255, 255, 0.86);
}

.hero-tech-app--cpanel img {
	width: 76%;
	height: 76%;
}

.hero-tech-app--woocommerce {
	background: rgba(255, 255, 255, 0.86);
}

.hero-tech-app--woocommerce img {
	width: 66%;
	height: 66%;
}

.service-card__title-link {
	color: inherit;
	text-decoration: none;
}

.service-card__title-link:hover,
.service-card__title-link:focus-visible {
	color: inherit;
}

.service-card__title-link:focus-visible {
	border-radius: 0.2em;
	outline: 3px solid rgba(86, 77, 137, 0.22);
	outline-offset: 0.18em;
}

.hero-proof-stage {
	min-height: clamp(40.5rem, 50vw, 43rem);
}

.hero-proof-stage::before {
	left: calc(50% - min(36%, 11rem) - 0.22rem);
	top: 10rem;
}

.hero-proof-stage::after {
	right: calc(50% - min(36%, 11rem) - 0.22rem);
	top: 12.2rem;
}

.hero-ios-shell {
	top: 0.15rem;
	right: auto;
	bottom: 0.15rem;
	left: 50%;
	width: min(72%, 22rem);
	transform: translateX(-50%);
}

.hero-proof-stack {
	width: min(64%, 20rem);
}

.hero-ios-shell__status {
	top: 0.86rem;
	right: 1.5rem;
	left: 1.5rem;
}

.hero-ios-shell__status time {
	min-width: 2.2rem;
	color: rgba(25, 23, 34, 0.78);
	font: inherit;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}

.hero-ios-wifi {
	position: relative;
	display: block;
	width: 1.05rem;
	height: 0.78rem;
	color: rgba(25, 23, 34, 0.8);
}

.hero-ios-wifi::before,
.hero-ios-wifi::after {
	position: absolute;
	left: 50%;
	border: 0.12rem solid transparent;
	border-top-color: currentColor;
	border-radius: 50%;
	content: "";
	transform: translateX(-50%);
}

.hero-ios-wifi::before {
	top: 0.04rem;
	width: 1.05rem;
	height: 0.82rem;
}

.hero-ios-wifi::after {
	top: 0.27rem;
	width: 0.62rem;
	height: 0.48rem;
}

.hero-ios-wifi i {
	position: absolute;
	left: 50%;
	bottom: 0.04rem;
	width: 0.18rem;
	height: 0.18rem;
	border-radius: 50%;
	background: currentColor;
	transform: translateX(-50%);
}

.hero-ios-shell__dock {
	bottom: 1.7rem;
	height: 4.05rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
}

.hero-ios-shell::after {
	bottom: 0.46rem;
}

.hero-dock-action,
.hero-dock-action--phone,
.hero-dock-action--email,
.hero-dock-action--map {
	border-color: rgba(255, 255, 255, 0.84);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(237, 232, 247, 0.3));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		inset 0 -1px 0 rgba(86, 77, 137, 0.08),
		0 10px 24px rgba(49, 39, 83, 0.12);
	backdrop-filter: blur(18px) saturate(165%);
}

.hero-dock-action span::before {
	color: rgba(70, 62, 119, 0.86);
	text-shadow: none;
}

@media (max-width: 760px) {
	.hero-proof-stage {
		min-height: 40.5rem;
	}

	.hero-ios-shell {
		width: 92%;
		border-radius: 3rem;
	}

	.hero-proof-stage::before {
		left: calc(4% - 0.02rem);
		top: 10rem;
	}

	.hero-proof-stage::after {
		right: calc(4% - 0.02rem);
		top: 12.2rem;
	}

	.hero-proof-stack {
		width: calc(100% - 3.4rem);
	}

	.hero-ios-shell__dock {
		bottom: 1.6rem;
	}
}

/* Unified iOS-style contact dock. */
.hero-dock-action,
.hero-dock-action--phone,
.hero-dock-action--email,
.hero-dock-action--map {
	width: 2.75rem;
	height: 2.75rem;
	aspect-ratio: auto;
	border-color: rgba(255, 255, 255, 0.66);
	background:
		linear-gradient(135deg, rgba(86, 77, 137, 0.9), rgba(132, 78, 156, 0.83) 54%, rgba(224, 42, 96, 0.76));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(49, 39, 83, 0.16),
		0 10px 25px rgba(86, 77, 137, 0.22);
	backdrop-filter: blur(18px) saturate(175%);
}

.hero-dock-action span::before {
	color: #fff;
	font-size: 1.25rem;
	text-shadow: 0 1px 3px rgba(38, 27, 66, 0.18);
}

.hero-dock-action--email span::before {
	font-size: 1.25rem;
	transform: scale(1.05);
}

.hero-dock-action--map img {
	display: block;
	width: 1.42rem;
	height: 1.42rem;
	object-fit: contain;
}

.hero-dock-action--map span::before {
	content: none;
}

@media (max-width: 760px) {
	.hero-dock-action,
	.hero-dock-action--phone,
	.hero-dock-action--email,
	.hero-dock-action--map {
		width: 2.6rem;
		height: 2.6rem;
	}

	.hero-dock-action--phone span::before,
	.hero-dock-action--email span::before {
		font-size: 1.2rem;
	}

	.hero-dock-action--map img {
		width: 1.35rem;
		height: 1.35rem;
	}
}

/* Reference-matched iOS contact glyphs on a quieter Webfy glass surface. */
.hero-dock-action,
.hero-dock-action--phone,
.hero-dock-action--email,
.hero-dock-action--map {
	isolation: isolate;
	overflow: hidden;
	border-color: rgba(255, 255, 255, 0.72);
	background:
		linear-gradient(145deg, rgba(139, 122, 194, 0.58), rgba(96, 82, 145, 0.46) 56%, rgba(197, 86, 139, 0.38));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.62),
		inset 0 -1px 0 rgba(49, 39, 83, 0.12),
		0 9px 22px rgba(86, 77, 137, 0.16);
	backdrop-filter: blur(20px) saturate(145%);
}

.hero-dock-action::before {
	position: absolute;
	z-index: -1;
	inset: 1px;
	border-radius: inherit;
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.32), transparent 42%),
		radial-gradient(circle at 76% 84%, rgba(255, 255, 255, 0.12), transparent 40%);
	content: "";
	pointer-events: none;
}

.hero-dock-action span {
	position: relative;
	z-index: 1;
	display: block;
	width: 1.34rem;
	height: 1.34rem;
	filter: drop-shadow(0 1px 1px rgba(46, 35, 78, 0.16));
}

.hero-dock-action span::before {
	position: absolute;
	inset: 0;
	display: block;
	background: linear-gradient(160deg, #fff 10%, #f7f5ff 58%, #e8e3f4 100%);
	content: "" !important;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transform: none;
}

.hero-dock-action--phone span::before {
	-webkit-mask-image: url("../images/icons/phone-solid.svg");
	mask-image: url("../images/icons/phone-solid.svg");
}

.hero-dock-action--email span {
	width: 1.48rem;
	height: 1.48rem;
}

.hero-dock-action--email span::before {
	-webkit-mask-image: url("../images/icons/envelope-solid.svg");
	mask-image: url("../images/icons/envelope-solid.svg");
}

.hero-dock-action--map span {
	width: 1.35rem;
	height: 1.35rem;
}

.hero-dock-action--map span::before {
	-webkit-mask-image: url("../images/icons/navigation-solid.svg");
	mask-image: url("../images/icons/navigation-solid.svg");
}

.hero-dock-action--map img {
	display: none;
}

.hero-dock-action:hover {
	filter: brightness(1.04);
}

@media (max-width: 760px) {
	.hero-dock-action span {
		width: 1.28rem;
		height: 1.28rem;
	}

	.hero-dock-action--email span {
		width: 1.43rem;
		height: 1.43rem;
	}

	.hero-dock-action--map span {
		width: 1.3rem;
		height: 1.3rem;
	}
}

/* --------------------------------------------------------------------------
   Subpage art direction 2026
   The homepage is the visual benchmark: liquid glass, purposeful interface
   motifs, tighter editorial rhythm and a distinct visual idea per section.
   -------------------------------------------------------------------------- */

.service-page > .section,
.local-page > .section,
.references-page > .section,
.contact-page > .section {
	padding-block: clamp(5.5rem, 8vw, 8rem);
}

.service-page .section-heading,
.local-page .section-heading,
.references-page .section-heading,
.contact-page .section-heading {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.service-page > .ai-section,
.service-page > .takeover-section,
.local-page > .local-service-link {
	padding-top: 0;
}

.service-hero,
.local-hero,
.references-hero,
.contact-hero {
	isolation: isolate;
}

.service-hero::after,
.local-hero::after,
.references-hero::after,
.contact-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgba(86, 77, 137, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.045) 1px, transparent 1px);
	background-position: 50% 50%;
	background-size: 5.4rem 5.4rem;
	content: "";
	mask-image: radial-gradient(circle at 76% 46%, #000 0, transparent 62%);
	pointer-events: none;
}

.service-hero__grid,
.local-hero__grid,
.references-hero__grid,
.contact-hero__grid {
	z-index: 2;
}

.build-canvas,
.care-monitor,
.contact-response-card {
	border-color: rgba(255, 255, 255, 0.9);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 243, 251, 0.68));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 35px 90px rgba(49, 39, 83, 0.15);
	backdrop-filter: blur(24px) saturate(155%);
}

.build-canvas {
	border-radius: 2rem;
}

.build-canvas__toolbar {
	height: 3.3rem;
	border-color: rgba(86, 77, 137, 0.1);
}

.build-canvas__content {
	inset-block-start: 3.3rem;
	border-radius: 0 0 2rem 2rem;
	background:
		linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
		radial-gradient(circle at 78% 22%, rgba(242, 41, 91, 0.2), transparent 23%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.9), rgba(255, 255, 255, 0.9));
	background-size: 2.8rem 2.8rem, 2.8rem 2.8rem, auto, auto;
}

.build-canvas__note {
	border: 1px solid rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(16px);
}

/* Weboldalkészítés: the cards form an intentional product-design system. */
.service-method {
	background:
		radial-gradient(circle at 6% 86%, rgba(86, 77, 137, 0.07), transparent 28%),
		var(--color-white);
}

.method-grid {
	gap: 1.35rem;
}

.method-card {
	display: flex;
	min-height: 17.5rem;
	padding: clamp(1.6rem, 3.2vw, 3rem);
	flex-direction: column;
	border-color: rgba(86, 77, 137, 0.13);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 250, 0.78));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 20px 55px rgba(49, 39, 83, 0.07);
	backdrop-filter: blur(18px);
}

.method-card.method-card--large {
	min-height: 36.35rem;
	background:
		radial-gradient(circle at 82% 84%, rgba(242, 41, 91, 0.12), transparent 30%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.92), rgba(255, 255, 255, 0.82));
}

.method-card__index,
.method-card:not(.method-card--large) .method-card__index {
	margin-bottom: 0;
}

.method-card h3 {
	max-width: 18ch;
	margin-top: auto;
}

.method-card__motif {
	top: clamp(1.6rem, 3vw, 2.4rem);
	right: clamp(1.6rem, 3vw, 2.4rem);
}

.pricing-section {
	position: relative;
	background:
		radial-gradient(circle at 84% 18%, rgba(242, 41, 91, 0.065), transparent 25%),
		linear-gradient(180deg, #f8f7fa, #f5f4f7);
}

.price-grid {
	gap: 1.2rem;
}

.price-card {
	min-height: 27rem;
	border-color: rgba(86, 77, 137, 0.12);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(250, 249, 252, 0.82));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 18px 50px rgba(49, 39, 83, 0.065);
	backdrop-filter: blur(18px);
}

.price-card--featured {
	border-color: rgba(255, 255, 255, 0.5);
	background:
		radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.2), transparent 26%),
		linear-gradient(145deg, #665b9b 0%, #564d89 54%, #c82f68 115%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.28),
		0 30px 70px rgba(72, 56, 119, 0.22);
}

.price-card__type {
	width: fit-content;
	margin-bottom: 2.5rem;
	padding: 0.48rem 0.68rem;
	border: 1px solid rgba(86, 77, 137, 0.12);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.72);
}

.price-card--featured .price-card__type {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.12);
}

.included-section__intro {
	padding: clamp(1.7rem, 3vw, 2.7rem);
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 92% 8%, rgba(242, 41, 91, 0.1), transparent 30%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.78), rgba(255, 255, 255, 0.86));
	box-shadow: 0 25px 60px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(18px);
}

.check-list {
	display: grid;
	gap: 0.7rem;
	border: 0;
}

.check-list li {
	padding: 1.25rem 1.35rem 1.25rem 4.1rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 30px rgba(49, 39, 83, 0.045);
}

.check-list li::before {
	left: 1.25rem;
	top: 50%;
	width: 2rem;
	height: 2rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 234, 248, 0.82));
	box-shadow:
		inset 0 1px 0 #fff,
		0 7px 16px rgba(86, 77, 137, 0.1);
	transform: translateY(-50%);
}

.ai-panel,
.takeover-panel {
	border: 1px solid rgba(255, 255, 255, 0.86);
	background:
		radial-gradient(circle at 92% 84%, rgba(242, 41, 91, 0.1), transparent 30%),
		linear-gradient(135deg, rgba(238, 234, 248, 0.82), rgba(255, 255, 255, 0.92) 62%, rgba(255, 240, 244, 0.72));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 32px 85px rgba(49, 39, 83, 0.1);
	color: var(--color-ink);
	backdrop-filter: blur(24px) saturate(155%);
}

.ai-panel .eyebrow,
.takeover-panel .eyebrow {
	color: var(--color-purple);
}

.ai-panel > div:nth-child(2) p,
.takeover-panel p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.ai-panel__signal {
	right: 1.8rem;
	bottom: -3.8rem;
	width: 15rem;
	height: 10rem;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.35rem;
	background:
		linear-gradient(rgba(86, 77, 137, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.04) 1px, transparent 1px),
		rgba(255, 255, 255, 0.5);
	background-size: 1.5rem 1.5rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.92),
		0 16px 36px rgba(49, 39, 83, 0.07);
	opacity: 0.68;
	transform: rotate(-3deg);
}

.ai-panel__signal::before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1.25rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	background:
		radial-gradient(circle at 0.75rem 50%, rgba(86, 77, 137, 0.28) 0 0.12rem, transparent 0.13rem),
		radial-gradient(circle at 1.2rem 50%, rgba(86, 77, 137, 0.18) 0 0.12rem, transparent 0.13rem),
		radial-gradient(circle at 1.65rem 50%, rgba(86, 77, 137, 0.12) 0 0.12rem, transparent 0.13rem),
		rgba(255, 255, 255, 0.52);
	content: "";
}

.ai-panel__signal span {
	left: 1.2rem;
	right: 1.2rem;
	width: auto;
	height: 0.75rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(86, 77, 137, 0.16), rgba(86, 77, 137, 0.42));
}

.ai-panel__signal span:nth-child(1) {
	top: 2.1rem;
}

.ai-panel__signal span:nth-child(2) {
	inset: auto 3.4rem auto 1.2rem;
	top: 3.55rem;
	background: linear-gradient(90deg, rgba(242, 41, 91, 0.34), rgba(242, 41, 91, 0.12));
}

.ai-panel__signal span:nth-child(3) {
	inset: auto 2rem auto 1.2rem;
	top: 5rem;
	background: linear-gradient(90deg, rgba(86, 77, 137, 0.12), rgba(86, 77, 137, 0.3));
}

.ai-panel__signal i {
	position: absolute;
	right: 1.2rem;
	top: 3.35rem;
	width: 1.2rem;
	height: 1.2rem;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: 0.38rem;
	background: rgba(255, 255, 255, 0.74);
}

.takeover-panel .button--light {
	border-color: transparent;
	background: linear-gradient(105deg, var(--color-purple), #76539e 46%, var(--color-pink));
	box-shadow: 0 14px 34px rgba(86, 77, 137, 0.2);
	color: #fff;
}

.delivery-line {
	gap: 0.65rem;
	border: 0;
}

.delivery-line li {
	min-height: 12rem;
	padding: 1.25rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 1rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 250, 0.78));
	box-shadow: 0 12px 32px rgba(49, 39, 83, 0.045);
}

.delivery-line li:last-child {
	border-right: 1px solid rgba(86, 77, 137, 0.11);
}

.delivery-line li > span {
	background: linear-gradient(145deg, var(--color-purple), #796ca9);
	box-shadow: 0 8px 18px rgba(86, 77, 137, 0.18);
}

.contract-note,
.license-note {
	border-color: rgba(86, 77, 137, 0.12);
	background:
		linear-gradient(145deg, rgba(238, 234, 248, 0.78), rgba(255, 255, 255, 0.84));
	box-shadow: 0 14px 38px rgba(49, 39, 83, 0.05);
}

.faq-list {
	display: grid;
	gap: 0.65rem;
	border: 0;
}

.faq-list details {
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 10px 28px rgba(49, 39, 83, 0.04);
}

.faq-list summary {
	padding: 1.35rem 4.2rem 1.35rem 1.35rem;
}

.faq-list summary span {
	right: 1.25rem;
}

.faq-list details p {
	padding: 0 4.2rem 1.4rem 1.35rem;
}

/* Üzemeltetés: a decorative marks now read as one coherent control system. */
.care-monitor {
	border-radius: 2rem;
	transform: rotate(-1.25deg);
}

.care-monitor__top {
	border-color: rgba(86, 77, 137, 0.1);
}

.care-monitor__top > span {
	position: relative;
	width: 1.65rem;
	height: 1.65rem;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: 0.55rem;
	background: linear-gradient(145deg, rgba(238, 234, 248, 0.9), #fff);
	box-shadow: inset 0 1px 0 #fff;
}

.care-monitor__top > span::after {
	position: absolute;
	left: 50%;
	top: 46%;
	width: 0.55rem;
	height: 0.3rem;
	border-left: 0.13rem solid var(--color-purple);
	border-bottom: 0.13rem solid var(--color-purple);
	content: "";
	transform: translate(-50%, -50%) rotate(-45deg);
}

.care-monitor li {
	border: 1px solid rgba(86, 77, 137, 0.08);
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 8px 22px rgba(49, 39, 83, 0.04);
}

.care-monitor li > span {
	position: relative;
	width: 1.15rem;
	height: 1.15rem;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: 0.4rem;
	background: rgba(238, 234, 248, 0.9);
	box-shadow: none;
}

.care-monitor li > span::after {
	position: absolute;
	left: 50%;
	top: 46%;
	width: 0.42rem;
	height: 0.22rem;
	border-left: 0.11rem solid var(--color-purple);
	border-bottom: 0.11rem solid var(--color-purple);
	content: "";
	transform: translate(-50%, -50%) rotate(-45deg);
}

.feature-grid {
	gap: 1.15rem;
}

.feature-grid article {
	min-height: 21rem;
	border-color: rgba(86, 77, 137, 0.12);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 250, 0.82));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 18px 48px rgba(49, 39, 83, 0.06);
	backdrop-filter: blur(18px);
}

.feature-grid__visual {
	width: 100%;
	height: 7.2rem;
	margin: 3.7rem 0 1.6rem;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1rem;
	background:
		linear-gradient(rgba(86, 77, 137, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.035) 1px, transparent 1px),
		rgba(255, 255, 255, 0.7);
	background-size: 1.4rem 1.4rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 12px 28px rgba(49, 39, 83, 0.05);
}

.feature-grid__visual::after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1.15rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	background:
		radial-gradient(circle at 0.7rem 50%, rgba(86, 77, 137, 0.28) 0 0.12rem, transparent 0.13rem),
		radial-gradient(circle at 1.15rem 50%, rgba(86, 77, 137, 0.18) 0 0.12rem, transparent 0.13rem),
		radial-gradient(circle at 1.6rem 50%, rgba(86, 77, 137, 0.12) 0 0.12rem, transparent 0.13rem),
		rgba(255, 255, 255, 0.52);
	content: "";
}

.feature-grid__item--hosting .feature-grid__visual i {
	right: 1.2rem;
	width: calc(100% - 2.4rem);
}

.feature-grid__item--backup .feature-grid__visual i {
	left: 50%;
	right: auto;
	top: 1.75rem;
	bottom: auto;
	width: 4.4rem;
	height: 4.4rem;
	transform: translateX(-50%);
}

.feature-grid__item--backup .feature-grid__visual i:nth-child(2) {
	left: 50%;
	right: auto;
	top: 2.35rem;
	bottom: auto;
	width: 3.2rem;
	height: 3.2rem;
	transform: translateX(-50%);
}

.feature-grid__item--backup .feature-grid__visual i:nth-child(3) {
	left: 50%;
	right: auto;
	top: 3.25rem;
	bottom: auto;
	width: 1.4rem;
	height: 1.4rem;
	transform: translateX(-50%);
}

.feature-grid__item--maintenance .feature-grid__visual i {
	left: 1.1rem;
	width: calc(100% - 2.2rem);
	height: 0.9rem;
	border: 0;
	border-radius: 999px;
	background:
		radial-gradient(circle at calc(100% - 0.45rem) 50%, #fff 0 0.28rem, transparent 0.3rem),
		linear-gradient(90deg, rgba(86, 77, 137, 0.16), rgba(86, 77, 137, 0.5));
	transform: none;
}

.feature-grid__item--maintenance .feature-grid__visual i:nth-child(1) {
	top: 1.8rem;
}

.feature-grid__item--maintenance .feature-grid__visual i:nth-child(2) {
	top: 3.25rem;
	border: 0;
	background:
		radial-gradient(circle at 0.45rem 50%, #fff 0 0.28rem, transparent 0.3rem),
		linear-gradient(90deg, rgba(242, 41, 91, 0.42), rgba(242, 41, 91, 0.12));
	transform: none;
}

.feature-grid__item--maintenance .feature-grid__visual i:nth-child(3) {
	top: 4.7rem;
	right: auto;
}

.feature-grid__item--repair .feature-grid__visual::before {
	left: 1.6rem;
	right: 1.6rem;
}

.feature-grid__item--repair .feature-grid__visual i {
	top: 50%;
}

.feature-grid__item--support .feature-grid__visual i {
	top: 1.8rem;
	left: 1rem;
}

.feature-grid__item--support .feature-grid__visual i:nth-child(2) {
	right: 1rem;
	bottom: 0.8rem;
	left: auto;
	top: auto;
}

.feature-grid__item--license .feature-grid__visual i {
	top: 1.7rem;
	left: 1.1rem;
}

.feature-grid__item--license .feature-grid__visual i:nth-child(2) {
	right: 1.1rem;
	bottom: 0.75rem;
	left: auto;
	top: auto;
}

.response-promise {
	border-color: rgba(86, 77, 137, 0.12);
	background:
		linear-gradient(145deg, rgba(238, 234, 248, 0.76), rgba(255, 255, 255, 0.86));
	box-shadow:
		inset 0 1px 0 #fff,
		0 24px 65px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(18px);
}

.response-track i {
	position: relative;
	width: 1.15rem;
	height: 1.15rem;
	border: 1px solid rgba(86, 77, 137, 0.14);
	border-radius: 0.38rem;
	background: rgba(238, 234, 248, 0.9);
	box-shadow: none;
}

.response-track i::after {
	position: absolute;
	left: 50%;
	top: 46%;
	width: 0.42rem;
	height: 0.22rem;
	border-left: 0.11rem solid var(--color-purple);
	border-bottom: 0.11rem solid var(--color-purple);
	content: "";
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* Pápa: every benefit is anchored in a real, recognisable proof. */
.local-value {
	background:
		radial-gradient(circle at 10% 80%, rgba(86, 77, 137, 0.06), transparent 25%),
		var(--color-white);
}

.local-benefits {
	gap: 1.15rem;
}

.local-benefits article {
	display: flex;
	min-height: 27rem;
	padding: clamp(1.5rem, 2.8vw, 2.4rem);
	flex-direction: column;
	border-color: rgba(86, 77, 137, 0.12);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 250, 0.8));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 18px 48px rgba(49, 39, 83, 0.06);
	backdrop-filter: blur(18px);
}

.local-benefits .local-benefit__number {
	margin-bottom: 1.4rem;
}

.local-benefit__visual {
	position: relative;
	display: grid;
	min-height: 8.5rem;
	margin-bottom: 2rem;
	padding: 1.3rem;
	overflow: hidden;
	align-content: start;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 1.15rem;
	background:
		linear-gradient(145deg, rgba(238, 234, 248, 0.68), rgba(255, 255, 255, 0.8));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 12px 28px rgba(49, 39, 83, 0.06);
}

.local-benefit__visual small {
	color: var(--color-purple);
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.local-benefit__visual strong {
	max-width: 12rem;
	margin-top: 0.4rem;
	font-size: 0.82rem;
}

.local-benefit__visual i {
	position: absolute;
	display: block;
}

.local-benefit__visual--meeting i {
	right: 1.1rem;
	bottom: 1rem;
	width: 5rem;
	height: 2.5rem;
	border: 1px solid rgba(86, 77, 137, 0.16);
	border-radius: 0.9rem 0.9rem 0.9rem 0.25rem;
	background: rgba(255, 255, 255, 0.72);
}

.local-benefit__visual--meeting i:nth-of-type(2) {
	right: 4.1rem;
	bottom: 2.2rem;
	width: 4.1rem;
	border-radius: 0.9rem 0.9rem 0.25rem 0.9rem;
	background: rgba(255, 240, 244, 0.82);
}

.local-benefit__visual--location {
	background:
		linear-gradient(28deg, transparent 49.4%, rgba(86, 77, 137, 0.07) 49.7% 50.3%, transparent 50.6%) 0 0 / 4rem 4rem,
		linear-gradient(-28deg, transparent 49.4%, rgba(86, 77, 137, 0.05) 49.7% 50.3%, transparent 50.6%) 0 0 / 5rem 5rem,
		linear-gradient(145deg, rgba(238, 234, 248, 0.68), rgba(255, 255, 255, 0.8));
}

.local-benefit__visual--location i:first-of-type {
	right: 2.2rem;
	bottom: 1.45rem;
	width: 1.65rem;
	height: 1.65rem;
	border: 0.38rem solid var(--color-pink);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.local-benefit__visual--location i:nth-of-type(2) {
	right: 1.25rem;
	bottom: 0.9rem;
	width: 3.4rem;
	height: 0.65rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.1);
	filter: blur(1px);
}

.local-benefit__visual--care i {
	right: 1.3rem;
	bottom: 1.2rem;
	width: 4.7rem;
	height: 4.7rem;
	border: 0.62rem solid rgba(86, 77, 137, 0.12);
	border-top-color: var(--color-purple);
	border-right-color: var(--color-pink);
	border-radius: 50%;
}

.local-benefit__visual--care i:nth-of-type(2) {
	right: 2.65rem;
	bottom: 2.55rem;
	width: 2rem;
	height: 2rem;
	border: 0;
	background: var(--color-purple);
	clip-path: polygon(48% 0, 92% 20%, 84% 73%, 48% 100%, 12% 73%, 4% 20%);
	opacity: 0.18;
}

.local-benefits h3 {
	margin-top: auto;
}

.office-gallery__item {
	border: 0.45rem solid rgba(255, 255, 255, 0.88);
	box-shadow: 0 24px 65px rgba(49, 39, 83, 0.11);
}

.local-process .process-list li {
	padding-inline: 1.1rem;
}

/* References: the flagship work receives the same full-page motion as home. */
.flagship-section {
	background:
		radial-gradient(circle at 88% 8%, rgba(242, 41, 91, 0.055), transparent 22%),
		var(--color-white);
}

.flagship-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.4rem, 3vw, 2.5rem);
}

.flagship-card,
.flagship-card:first-child {
	display: grid;
	min-height: 34rem;
	grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: var(--radius-lg);
	box-shadow: 0 28px 75px rgba(49, 39, 83, 0.09);
}

.flagship-card:nth-child(even) {
	grid-template-columns: minmax(22rem, 0.85fr) minmax(0, 1.15fr);
}

.flagship-card:nth-child(even) .flagship-card__image {
	order: 2;
}

.flagship-card__image,
.flagship-card:first-child .flagship-card__image {
	position: relative;
	display: grid;
	height: 34rem;
	padding: clamp(1.2rem, 2.4vw, 2rem);
	grid-template-rows: 2.7rem minmax(0, 1fr);
	overflow: hidden;
	aspect-ratio: auto;
	background:
		radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.84), transparent 28%),
		rgba(255, 255, 255, 0.24);
	text-decoration: none;
}

.flagship-card__bar {
	display: flex;
	padding-inline: 1rem;
	align-items: center;
	gap: 0.38rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-bottom: 0;
	border-radius: 1rem 1rem 0 0;
	background: rgba(255, 255, 255, 0.86);
}

.flagship-card__bar i {
	width: 0.48rem;
	height: 0.48rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.18);
}

.flagship-card__bar small {
	margin-left: 0.45rem;
	color: var(--color-ink-soft);
	font-size: 0.62rem;
}

.flagship-card__viewport {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 0 0 1rem 1rem;
	background: #fff;
	box-shadow: 0 18px 42px rgba(49, 39, 83, 0.12);
}

.flagship-card__viewport img {
	width: 100%;
	height: auto;
	max-width: none;
	object-fit: initial;
	transform: translate3d(0, 0, 0);
	transition-property: transform;
	transition-duration: var(--project-scroll-duration, 22s);
	transition-timing-function: cubic-bezier(0.18, 0.55, 0.22, 1);
}

.flagship-card__viewport.is-scrolling img {
	transform: translate3d(0, var(--project-scroll-distance, 0), 0);
}

.flagship-card:hover .flagship-card__viewport img {
	transform: translate3d(0, 0, 0);
}

.flagship-card:hover .flagship-card__viewport.is-scrolling img {
	transform: translate3d(0, var(--project-scroll-distance, 0), 0);
}

.flagship-card__scroll-hint {
	position: absolute;
	right: 0.9rem;
	bottom: 0.9rem;
	display: inline-flex;
	padding: 0.48rem 0.65rem;
	align-items: center;
	gap: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 10px 24px rgba(49, 39, 83, 0.12);
	color: var(--color-purple);
	font-size: 0.6rem;
	font-weight: 750;
	backdrop-filter: blur(14px);
	transition: opacity 240ms ease;
}

.flagship-card__viewport.is-scrolling .flagship-card__scroll-hint {
	opacity: 0;
}

.flagship-card__copy {
	display: flex;
	padding: clamp(2rem, 4.5vw, 4.4rem);
	flex-direction: column;
	justify-content: center;
}

.flagship-card__copy h3 {
	font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.reference-card {
	border-color: rgba(86, 77, 137, 0.1);
	background: rgba(255, 255, 255, 0.84);
	box-shadow:
		inset 0 1px 0 #fff,
		0 14px 36px rgba(49, 39, 83, 0.055);
	backdrop-filter: blur(16px);
	transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.reference-card:hover {
	box-shadow: 0 24px 55px rgba(49, 39, 83, 0.1);
	transform: translateY(-0.3rem);
}

.reference-filters {
	position: sticky;
	z-index: 5;
	top: calc(var(--header-height) + 1rem);
	width: fit-content;
	padding: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 34px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(18px) saturate(155%);
}

.reference-filters button {
	min-height: 2.5rem;
	border-color: transparent;
	background: transparent;
}

/* Kapcsolat: clear conversion path without generic status-dashboard styling. */
.contact-hero {
	background:
		radial-gradient(circle at 86% 18%, rgba(242, 41, 91, 0.09), transparent 26%),
		radial-gradient(circle at 12% 84%, rgba(86, 77, 137, 0.08), transparent 28%),
		linear-gradient(135deg, #fbfbfd, #f2eff9);
}

.contact-facts {
	gap: 0.45rem;
	border: 0;
}

.contact-facts li {
	padding: 0.75rem 0.9rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.54);
}

.contact-response-card {
	transform: rotate(0.8deg);
}

.contact-response-card__label {
	display: flex;
	width: fit-content;
	padding: 0.52rem 0.68rem;
	align-items: center;
	gap: 0.55rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 0.72rem;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.contact-response-card__label span {
	color: var(--color-purple);
	font-size: 0.68rem;
	font-weight: 800;
}

.contact-response-card__label small {
	padding-left: 0.55rem;
	border-left: 1px solid rgba(86, 77, 137, 0.14);
	color: var(--color-ink-soft);
	font-size: 0.64rem;
	font-weight: 650;
}

.contact-response-card li {
	border: 1px solid rgba(86, 77, 137, 0.07);
	background: rgba(255, 255, 255, 0.58);
}

.contact-response-card__note {
	border: 1px solid rgba(255, 255, 255, 0.68);
	background: linear-gradient(105deg, rgba(86, 77, 137, 0.94), rgba(242, 41, 91, 0.88));
}

.contact-form-section {
	background:
		radial-gradient(circle at 88% 18%, rgba(86, 77, 137, 0.065), transparent 22%),
		var(--color-white);
}

.contact-form-panel {
	border-color: rgba(255, 255, 255, 0.92);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 251, 0.78));
	box-shadow:
		inset 0 1px 0 #fff,
		0 30px 80px rgba(49, 39, 83, 0.1);
	backdrop-filter: blur(22px) saturate(150%);
}

.contact-next {
	background:
		linear-gradient(180deg, #f7f6f9, #f5f4f7);
}

.contact-steps {
	position: relative;
	gap: 1.15rem;
}

.contact-steps::before {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 3.9rem;
	height: 2px;
	background: linear-gradient(90deg, rgba(86, 77, 137, 0.2), rgba(242, 41, 91, 0.35), rgba(86, 77, 137, 0.2));
	content: "";
}

.contact-steps li {
	position: relative;
	min-height: 18rem;
	border-color: rgba(86, 77, 137, 0.11);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 250, 0.8));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 16px 42px rgba(49, 39, 83, 0.055);
	backdrop-filter: blur(18px);
}

.contact-steps span {
	position: relative;
	z-index: 2;
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 4rem;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.13);
	border-radius: 0.78rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 8px 18px rgba(49, 39, 83, 0.08);
	transition: background 260ms ease, color 260ms ease, transform 260ms var(--ease-out);
}

.contact-steps li.is-active span {
	background: linear-gradient(145deg, var(--color-purple), #7a6cad);
	color: #fff;
	transform: translateY(-0.15rem);
}

.contact-office {
	background:
		radial-gradient(circle at 12% 80%, rgba(242, 41, 91, 0.06), transparent 22%),
		var(--color-white);
}

@media (max-width: 1100px) {
	.flagship-card,
	.flagship-card:first-child,
	.flagship-card:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.flagship-card:nth-child(even) .flagship-card__image {
		order: 0;
	}

	.feature-grid__visual {
		height: 8rem;
	}
}

@media (max-width: 800px) {
	.service-page > .section,
	.local-page > .section,
	.references-page > .section,
	.contact-page > .section {
		padding-block: clamp(4.5rem, 13vw, 6.2rem);
	}

	.method-card.method-card--large {
		min-height: 30rem;
	}

	.price-card {
		min-height: 24rem;
	}

	.reference-filters {
		position: static;
		width: 100%;
		border-radius: 1rem;
	}
}

@media (max-width: 600px) {
	.service-hero::after,
	.local-hero::after,
	.references-hero::after,
	.contact-hero::after {
		background-size: 3.6rem 3.6rem;
		mask-image: linear-gradient(to bottom, #000, transparent 75%);
	}

	.service-page .section-heading,
	.local-page .section-heading,
	.references-page .section-heading,
	.contact-page .section-heading {
		margin-bottom: 2.6rem;
	}

	.method-card,
	.method-card.method-card--large {
		min-height: 25rem;
	}

	.method-card__motif {
		top: 1.4rem;
		right: 1.4rem;
	}

	.included-section__intro {
		padding: 1.4rem;
		border-radius: var(--radius-md);
	}

	.check-list li {
		padding: 1.1rem 1rem 1.1rem 3.65rem;
	}

	.check-list li::before {
		left: 1rem;
	}

	.delivery-line {
		gap: 0.55rem;
	}

	.delivery-line li,
	.delivery-line li:nth-child(3),
	.delivery-line li:nth-child(even),
	.delivery-line li:nth-last-child(-n + 2) {
		min-height: 10rem;
		border: 1px solid rgba(86, 77, 137, 0.11);
	}

	.local-benefits article {
		min-height: 24rem;
	}

	.local-benefit__visual {
		min-height: 8rem;
	}

	.flagship-card,
	.flagship-card:first-child {
		min-height: 0;
		border-radius: var(--radius-md);
	}

	.flagship-card__image,
	.flagship-card:first-child .flagship-card__image {
		height: 25rem;
		padding: 0.75rem;
	}

	.flagship-card__copy {
		padding: 1.6rem;
	}

	.flagship-card__scroll-hint {
		display: none;
	}

	.contact-response-card {
		transform: none;
	}

	.contact-facts li {
		grid-template-columns: 5.8rem 1fr;
	}

	.contact-steps::before {
		display: none;
	}

	.contact-steps li {
		min-height: 15rem;
	}

	.contact-steps span {
		margin-bottom: 3rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.flagship-card__viewport img {
		transform: none !important;
		transition: none;
	}
}

/* --------------------------------------------------------------------------
   Weboldalkészítés v2
   A homepage-level liquid-glass system with a dedicated product narrative.
   -------------------------------------------------------------------------- */

.service-page--build .build-hero {
	position: relative;
	display: flex;
	min-height: min(58rem, 100svh);
	padding: calc(var(--header-height) + clamp(4rem, 7vw, 7rem)) 0 clamp(4.5rem, 7vw, 7rem);
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 16%, rgba(242, 41, 91, 0.12), transparent 27%),
		radial-gradient(circle at 67% 72%, rgba(86, 77, 137, 0.13), transparent 34%),
		linear-gradient(135deg, #fcfcfe 0%, #f4f1fa 58%, #fff4f7 100%);
}

.service-page--build .build-hero::after {
	display: none;
}

.build-hero__ambient {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.build-hero__wallpaper {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 42% 58% 61% 39% / 43% 38% 62% 57%;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.78),
		0 35px 90px rgba(49, 39, 83, 0.08);
	filter: blur(0.2px);
}

.build-hero__wallpaper--one {
	right: -11rem;
	top: -12rem;
	width: clamp(30rem, 49vw, 48rem);
	height: clamp(30rem, 49vw, 48rem);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(146, 128, 204, 0.2)),
		radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.85), transparent 36%);
	transform: rotate(-9deg);
}

.build-hero__wallpaper--two {
	right: 18%;
	bottom: -20rem;
	width: clamp(29rem, 43vw, 44rem);
	height: clamp(29rem, 43vw, 44rem);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(242, 41, 91, 0.12)),
		radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.86), transparent 36%);
	transform: rotate(19deg);
}

.build-hero__icon-field {
	position: absolute;
	top: 7%;
	right: -8rem;
	bottom: 5%;
	left: 43%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0.34;
	transform: rotate(-4deg);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 90%, transparent);
}

.build-hero__icon-row {
	overflow: hidden;
	padding-block: 0.8rem;
}

.build-hero__icon-track,
.build-hero__icon-set {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 1rem;
}

.build-hero__icon-track {
	animation: build-hero-icons-run 38s linear infinite;
	will-change: transform;
}

.build-hero__icon-row--reverse .build-hero__icon-track {
	animation-direction: reverse;
	animation-duration: 44s;
}

.build-hero .hero-tech-app {
	width: clamp(3.9rem, 5vw, 4.8rem);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 18px 38px rgba(49, 39, 83, 0.12);
}

@keyframes build-hero-icons-run {
	to { transform: translate3d(calc(-50% - 0.5rem), 0, 0); }
}

.build-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
	gap: clamp(2.5rem, 6vw, 6.5rem);
	align-items: center;
}

.service-page--build .build-hero h1 {
	max-width: 13.7ch;
	font-size: clamp(3.25rem, 4.65vw, 5.35rem);
	letter-spacing: -0.068em;
	line-height: 0.98;
}

.service-page--build .build-hero h1 span {
	display: block;
	width: fit-content;
	margin-top: 0.07em;
	background: linear-gradient(105deg, var(--color-purple) 4%, #7860a3 47%, var(--color-pink) 96%);
	background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: -0.072em;
}

.service-page--build .build-hero .service-hero__lead {
	max-width: 45rem;
	margin: 1.7rem 0 2rem;
	font-size: clamp(1.04rem, 1.35vw, 1.22rem);
	line-height: 1.65;
}

.build-hero__copy .hero__microcopy {
	max-width: 38rem;
	margin-top: 1.25rem;
}

.build-hero__visual {
	position: relative;
	min-height: 43rem;
}

.build-device {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: min(21.5rem, 76%);
	height: 42rem;
	padding: 3.35rem 1rem 1.4rem;
	border: 2px solid rgba(255, 255, 255, 0.92);
	outline: 1px solid rgba(49, 39, 83, 0.14);
	outline-offset: -0.3rem;
	border-radius: 3.55rem;
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(240, 236, 249, 0.7));
	box-shadow:
		inset 0 1px 0 #fff,
		inset 0 -1px 0 rgba(86, 77, 137, 0.12),
		0 0 0 0.34rem rgba(255, 255, 255, 0.24),
		0 42px 100px rgba(49, 39, 83, 0.2);
	transform: translate(-50%, -50%);
	backdrop-filter: blur(28px) saturate(165%);
}

.build-device::before {
	position: absolute;
	inset: 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 3rem;
	background:
		radial-gradient(circle at 88% 4%, rgba(242, 41, 91, 0.1), transparent 28%),
		linear-gradient(155deg, rgba(255, 255, 255, 0.4), rgba(238, 234, 248, 0.36));
	content: "";
	pointer-events: none;
}

.build-device__status {
	position: absolute;
	z-index: 5;
	top: 0.95rem;
	right: 1.65rem;
	left: 1.65rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(30, 27, 40, 0.72);
	font-size: 0.58rem;
	font-weight: 800;
}

.build-device__island {
	position: absolute;
	z-index: 6;
	top: 0.73rem;
	left: 50%;
	width: 6.35rem;
	height: 1.62rem;
	border-radius: 999px;
	background: rgba(25, 23, 32, 0.92);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.15);
	transform: translateX(-50%);
}

.build-device__workspace {
	position: relative;
	z-index: 2;
	display: flex;
	height: 100%;
	padding: 1rem;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 2.05rem;
	background:
		linear-gradient(rgba(86, 77, 137, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.035) 1px, transparent 1px),
		rgba(255, 255, 255, 0.54);
	background-size: 1.55rem 1.55rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 16px 42px rgba(49, 39, 83, 0.07);
}

.build-device__header {
	display: flex;
	min-height: 2.3rem;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
}

.build-device__header small {
	color: var(--color-ink-soft);
	font-size: 0.58rem;
	font-weight: 700;
}

.build-device__header span {
	padding: 0.35rem 0.55rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.78);
	color: var(--color-purple);
	font-size: 0.52rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.build-device__steps {
	position: relative;
	display: grid;
	margin-top: 0.65rem;
	gap: 0.52rem;
}

.build-device__steps::before {
	position: absolute;
	left: 1.08rem;
	top: 1.8rem;
	bottom: 1.8rem;
	width: 1px;
	background: linear-gradient(var(--color-purple), var(--color-pink));
	content: "";
	opacity: 0.3;
}

.build-device__steps > div {
	position: relative;
	display: grid;
	grid-template-columns: 2.15rem 1fr;
	min-height: 3.55rem;
	padding: 0.63rem 0.7rem;
	align-items: center;
	gap: 0.7rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.68);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 9px 24px rgba(49, 39, 83, 0.045);
}

.build-device__steps > div:nth-child(2) {
	border-color: rgba(86, 77, 137, 0.2);
	background:
		radial-gradient(circle at 95% 10%, rgba(242, 41, 91, 0.1), transparent 32%),
		rgba(246, 243, 251, 0.88);
}

.build-device__steps > div > span {
	position: relative;
	z-index: 2;
	display: grid;
	width: 2.15rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 0.78rem;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.95), rgba(120, 96, 163, 0.88));
	box-shadow: 0 7px 16px rgba(86, 77, 137, 0.16);
	color: #fff;
	font-size: 0.56rem;
	font-weight: 800;
}

.build-device__steps p {
	margin: 0;
}

.build-device__steps small,
.build-device__steps strong {
	display: block;
}

.build-device__steps small {
	margin-bottom: 0.1rem;
	color: var(--color-purple);
	font-size: 0.5rem;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.build-device__steps strong {
	font-size: 0.72rem;
	line-height: 1.25;
}

.build-device__preview {
	position: relative;
	margin-top: auto;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 34px rgba(49, 39, 83, 0.07);
}

.build-device__browser-bar {
	display: flex;
	height: 1.75rem;
	padding-inline: 0.75rem;
	align-items: center;
	gap: 0.28rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	background: rgba(247, 245, 251, 0.82);
}

.build-device__browser-bar i {
	width: 0.34rem;
	height: 0.34rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.18);
}

.build-device__browser-bar small {
	margin-left: 0.25rem;
	color: var(--color-ink-soft);
	font-size: 0.45rem;
}

.build-device__screen {
	position: relative;
	display: flex;
	min-height: 10.2rem;
	padding: 1.25rem;
	flex-direction: column;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 25%, rgba(242, 41, 91, 0.16), transparent 25%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.84), rgba(255, 255, 255, 0.94));
}

.build-device__screen > span {
	color: var(--color-purple);
	font-size: 0.48rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.build-device__screen > strong {
	max-width: 9ch;
	margin-top: 0.35rem;
	font-size: 1.22rem;
	letter-spacing: -0.05em;
	line-height: 1.02;
}

.build-device__screen > i {
	width: 3.7rem;
	height: 1.15rem;
	margin-top: 0.8rem;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), var(--color-pink));
	box-shadow: 0 7px 17px rgba(86, 77, 137, 0.18);
}

.build-device__screen > div {
	position: absolute;
	right: 1.1rem;
	bottom: 1rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 7.2rem;
	gap: 0.3rem;
}

.build-device__screen b {
	height: 3.8rem;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 0.62rem;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(168, 151, 205, 0.2));
	box-shadow: 0 8px 18px rgba(49, 39, 83, 0.05);
}

.build-device__screen::after {
	position: absolute;
	left: -15%;
	top: 0;
	width: 45%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
	content: "";
	transform: skewX(-16deg);
	animation: build-hero-scan 4.8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes build-hero-scan {
	0%, 18% { transform: translateX(-120%) skewX(-16deg); }
	72%, 100% { transform: translateX(330%) skewX(-16deg); }
}

.build-device__home {
	position: absolute;
	z-index: 6;
	left: 50%;
	bottom: 0.55rem;
	width: 7rem;
	height: 0.27rem;
	border-radius: 999px;
	background: rgba(26, 23, 35, 0.72);
	transform: translateX(-50%);
}

.build-hero__float-card {
	position: absolute;
	z-index: 4;
	display: grid;
	min-width: 10.5rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 1.2rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 234, 248, 0.62));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 20px 45px rgba(49, 39, 83, 0.12);
	backdrop-filter: blur(20px) saturate(155%);
}

.build-hero__float-card small {
	color: var(--color-purple);
	font-size: 0.55rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.build-hero__float-card strong {
	font-size: 0.78rem;
}

.build-hero__float-card--design {
	left: -2.8rem;
	top: 12rem;
	transform: rotate(-3deg);
}

.build-hero__float-card--system {
	right: -3.7rem;
	bottom: 8.8rem;
	transform: rotate(2.5deg);
}

/* The consultation cards are equal, purposeful interface stories. */
.service-page--build .service-method {
	background:
		radial-gradient(circle at 4% 82%, rgba(86, 77, 137, 0.08), transparent 27%),
		radial-gradient(circle at 92% 14%, rgba(242, 41, 91, 0.055), transparent 25%),
		var(--color-white);
}

.service-page--build .method-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.service-page--build .method-card,
.service-page--build .method-card.method-card--large {
	position: relative;
	display: flex;
	min-height: 35rem;
	padding: 1.2rem;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 2rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(242, 239, 248, 0.66));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 24px 60px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(22px) saturate(155%);
}

.service-page--build .method-card::before,
.service-page--build .price-card::before,
.service-page--build .contract-note::before {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.22));
	content: "";
	pointer-events: none;
}

.method-card__header {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 2.7rem;
	padding-inline: 0.25rem;
	align-items: center;
	justify-content: space-between;
}

.service-page--build .method-card__index {
	display: grid;
	width: 2.55rem;
	aspect-ratio: 1;
	margin: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.84);
	border-radius: 0.88rem;
	background: linear-gradient(145deg, var(--color-purple), #796ba8);
	box-shadow: 0 9px 20px rgba(86, 77, 137, 0.18);
	color: #fff;
	font-size: 0.62rem;
}

.method-card__header > small {
	padding: 0.43rem 0.62rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	color: var(--color-purple);
	font-size: 0.56rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.method-card__visual {
	position: relative;
	z-index: 2;
	display: grid;
	height: 13.4rem;
	margin-top: 1.05rem;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.45rem;
	background:
		linear-gradient(rgba(86, 77, 137, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 77, 137, 0.035) 1px, transparent 1px),
		rgba(255, 255, 255, 0.66);
	background-size: 1.5rem 1.5rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 14px 35px rgba(49, 39, 83, 0.055);
}

.method-card__visual::before {
	position: absolute;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	background: rgba(242, 41, 91, 0.08);
	content: "";
	filter: blur(18px);
}

.method-card__content {
	position: relative;
	z-index: 2;
	display: grid;
	margin-top: auto;
	padding: 1.6rem 0.55rem 0.5rem;
	gap: 0.8rem;
}

.service-page--build .method-card__content h3 {
	max-width: none;
	margin: 0;
	font-size: clamp(1.35rem, 1.8vw, 1.62rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.service-page--build .method-card__content p {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.62;
}

.method-ui-window {
	position: relative;
	z-index: 2;
	width: 84%;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.12);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 16px 38px rgba(49, 39, 83, 0.1);
	transform: rotate(-1.2deg);
}

.method-ui-window__bar {
	display: flex;
	height: 2rem;
	padding-inline: 0.75rem;
	align-items: center;
	gap: 0.3rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	background: rgba(247, 245, 251, 0.82);
}

.method-ui-window__bar i {
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.2);
}

.method-ui-window__bar small {
	margin-left: 0.25rem;
	color: var(--color-ink-soft);
	font-size: 0.48rem;
}

.method-ui-conversation {
	display: grid;
	min-height: 8.2rem;
	padding: 1rem;
	gap: 0.6rem;
}

.method-ui-conversation span {
	display: grid;
	width: 82%;
	padding: 0.68rem 0.8rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.9rem 0.9rem 0.9rem 0.3rem;
	background: rgba(238, 234, 248, 0.72);
}

.method-ui-conversation span:nth-child(2) {
	margin-left: auto;
	border-radius: 0.9rem 0.9rem 0.3rem 0.9rem;
	background: linear-gradient(135deg, rgba(86, 77, 137, 0.9), rgba(116, 87, 151, 0.84));
	color: #fff;
}

.method-ui-conversation small {
	font-size: 0.45rem;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.method-ui-conversation strong {
	font-size: 0.65rem;
}

.method-question-map {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto 1fr minmax(7rem, 1.3fr) 1fr auto;
	width: 90%;
	align-items: center;
	gap: 0.35rem;
}

.method-question-map > span {
	padding: 0.56rem 0.62rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 9px 20px rgba(49, 39, 83, 0.07);
	color: var(--color-purple);
	font-size: 0.5rem;
	font-weight: 750;
}

.method-question-map > i {
	height: 2px;
	background: linear-gradient(90deg, rgba(86, 77, 137, 0.22), rgba(242, 41, 91, 0.54));
}

.method-question-map > p {
	display: grid;
	min-height: 5.6rem;
	margin: 0;
	padding: 0.85rem;
	place-content: center;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 1.15rem;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.93), rgba(118, 87, 151, 0.88));
	box-shadow: 0 16px 32px rgba(86, 77, 137, 0.2);
	color: #fff;
	text-align: center;
}

.method-question-map p small,
.method-question-map p strong {
	display: block;
}

.method-question-map p small {
	margin-bottom: 0.25rem;
	font-size: 0.44rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.method-question-map p strong {
	font-size: 0.68rem;
	line-height: 1.25;
}

.method-card__visual--preview {
	place-items: end start;
}

.method-preview-browser {
	position: absolute;
	left: 8%;
	top: 17%;
	width: 75%;
	height: 9rem;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.13);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 16px 36px rgba(49, 39, 83, 0.1);
	transform: rotate(-1.5deg);
}

.method-preview-browser > span {
	display: flex;
	height: 1.65rem;
	padding-inline: 0.7rem;
	align-items: center;
	gap: 0.28rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
}

.method-preview-browser > span i {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.19);
}

.method-preview-browser > div,
.method-preview-phone > div {
	display: grid;
	padding: 1rem;
	gap: 0.48rem;
}

.method-preview-browser b,
.method-preview-phone b {
	width: 70%;
	height: 0.62rem;
	border-radius: 999px;
	background: var(--color-purple);
}

.method-preview-browser b:nth-child(2),
.method-preview-phone small {
	width: 46%;
	background: var(--color-pink);
}

.method-preview-browser small,
.method-preview-phone small {
	display: block;
	height: 0.34rem;
	border-radius: 999px;
	background: rgba(23, 21, 31, 0.16);
}

.method-preview-browser em,
.method-preview-phone em {
	display: block;
	width: 3.2rem;
	height: 1rem;
	margin-top: 0.4rem;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), var(--color-pink));
}

.method-preview-phone {
	position: absolute;
	right: 7%;
	bottom: 8%;
	width: 4.8rem;
	height: 8.8rem;
	padding-top: 1rem;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.9);
	outline: 1px solid rgba(86, 77, 137, 0.16);
	outline-offset: -0.25rem;
	border-radius: 1.35rem;
	background: rgba(247, 245, 251, 0.9);
	box-shadow: 0 15px 32px rgba(49, 39, 83, 0.16);
	transform: rotate(3deg);
}

.method-preview-phone > span {
	position: absolute;
	left: 50%;
	top: 0.42rem;
	width: 1.8rem;
	height: 0.36rem;
	border-radius: 999px;
	background: var(--color-ink);
	transform: translateX(-50%);
}

.method-preview-phone > div {
	padding: 1rem 0.62rem;
}

.method-preview-phone b,
.method-preview-phone small {
	width: 100%;
}

/* Liquid-glass cards across the rest of the page. */
.service-page--build .pricing-section,
.service-page--care-v2 .pricing-section {
	background:
		radial-gradient(circle at 87% 15%, rgba(242, 41, 91, 0.07), transparent 24%),
		linear-gradient(180deg, #f8f7fb, #f3f1f7);
}

.service-page--build .price-grid,
.service-page--care-v2 .price-grid {
	gap: 1.2rem;
	align-items: stretch;
}

.service-page--build .price-card,
.service-page--build .price-card--featured,
.service-page--care-v2 .price-card,
.service-page--care-v2 .price-card--featured {
	position: relative;
	min-height: 30rem;
	padding: clamp(1.6rem, 2.8vw, 2.5rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 2rem;
	background:
		radial-gradient(circle at 92% 5%, rgba(86, 77, 137, 0.08), transparent 29%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 237, 247, 0.66));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 24px 60px rgba(49, 39, 83, 0.075);
	color: var(--color-ink);
	transform: none;
	backdrop-filter: blur(22px) saturate(155%);
}

.service-page--build .price-card--featured,
.service-page--care-v2 .price-card--featured {
	border-color: rgba(117, 93, 166, 0.32);
	background:
		radial-gradient(circle at 90% 4%, rgba(242, 41, 91, 0.12), transparent 30%),
		linear-gradient(145deg, rgba(247, 243, 253, 0.96), rgba(238, 232, 247, 0.82));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 28px 70px rgba(86, 77, 137, 0.14);
}

.service-page--build .price-card__type,
.service-page--build .price-card--featured .price-card__type,
.service-page--care-v2 .price-card__type,
.service-page--care-v2 .price-card--featured .price-card__type {
	position: relative;
	z-index: 2;
	margin-bottom: 2.6rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	background: rgba(255, 255, 255, 0.62);
	color: var(--color-purple);
}

.service-page--build .price-card--featured .price-card__type,
.service-page--care-v2 .price-card--featured .price-card__type {
	background: linear-gradient(105deg, rgba(86, 77, 137, 0.96), rgba(163, 64, 119, 0.9));
	color: #fff;
}

.service-page--build .price-card > p:not(.price-card__type, .price-card__price),
.service-page--build .price-card--featured > p:not(.price-card__type, .price-card__price),
.service-page--care-v2 .price-card > p:not(.price-card__type, .price-card__price),
.service-page--care-v2 .price-card--featured > p:not(.price-card__type, .price-card__price) {
	position: relative;
	z-index: 2;
	color: var(--color-ink-soft);
}

.service-page--build .price-card h3,
.service-page--build .price-card__price,
.service-page--care-v2 .price-card h3,
.service-page--care-v2 .price-card__price {
	position: relative;
	z-index: 2;
}

.service-page--build .price-card__price,
.service-page--build .price-card--featured .price-card__price,
.service-page--care-v2 .price-card__price,
.service-page--care-v2 .price-card--featured .price-card__price {
	border-color: rgba(86, 77, 137, 0.12);
}

.service-page--build .price-card__price span,
.service-page--build .price-card__price small,
.service-page--build .price-card--featured .price-card__price span,
.service-page--build .price-card--featured .price-card__price small,
.service-page--care-v2 .price-card__price span,
.service-page--care-v2 .price-card__price small,
.service-page--care-v2 .price-card--featured .price-card__price span,
.service-page--care-v2 .price-card--featured .price-card__price small {
	color: var(--color-ink-soft);
}

.service-page--build .price-card__price strong,
.service-page--care-v2 .price-card__price strong {
	width: fit-content;
	background: linear-gradient(105deg, var(--color-purple), #76539e 52%, var(--color-pink));
	background-clip: text;
	color: transparent;
}

.service-page--build .included-section {
	background:
		radial-gradient(circle at 7% 88%, rgba(86, 77, 137, 0.06), transparent 25%),
		var(--color-white);
}

.service-page--build .included-section__grid {
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(2rem, 5vw, 5rem);
}

.service-page--build .included-section__intro {
	padding: clamp(1.7rem, 3vw, 2.8rem);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 2rem;
	background:
		radial-gradient(circle at 92% 8%, rgba(242, 41, 91, 0.1), transparent 29%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.76), rgba(255, 255, 255, 0.88));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 26px 65px rgba(49, 39, 83, 0.09);
	backdrop-filter: blur(22px) saturate(155%);
}

.service-page--build .included-section__intro h2 {
	font-size: clamp(2.15rem, 3.3vw, 3.45rem);
}

.service-page--build .check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.service-page--build .check-list li {
	display: flex;
	min-height: 8.15rem;
	padding: 1.25rem 1.15rem 1.2rem 4rem;
	justify-content: center;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.3rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(241, 238, 247, 0.62));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 14px 36px rgba(49, 39, 83, 0.055);
	backdrop-filter: blur(18px) saturate(150%);
}

.service-page--build .check-list li::before {
	left: 1.15rem;
	width: 2.15rem;
	height: 2.15rem;
	border: 1px solid rgba(255, 255, 255, 0.88);
	background: linear-gradient(145deg, var(--color-purple), #796ba8);
	box-shadow: 0 9px 20px rgba(86, 77, 137, 0.18);
	color: #fff;
}

.service-page--build .check-list strong {
	font-size: 0.98rem;
	line-height: 1.3;
}

.service-page--build .check-list span {
	margin-top: 0.3rem;
	font-size: 0.76rem;
	line-height: 1.45;
}

.service-page--build .ai-panel {
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
	padding: clamp(2.2rem, 5vw, 5rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 2.2rem;
	background:
		radial-gradient(circle at 94% 82%, rgba(242, 41, 91, 0.1), transparent 31%),
		linear-gradient(135deg, rgba(238, 234, 248, 0.82), rgba(255, 255, 255, 0.93) 62%, rgba(255, 240, 244, 0.7));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 34px 86px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(24px) saturate(155%);
}

.service-page--build .ai-panel h2 {
	max-width: 15ch;
	font-size: clamp(2.3rem, 3.5vw, 3.75rem);
}

.service-page--build .ai-panel > div:nth-child(2) {
	display: flex;
	align-items: center;
}

.service-page--build .ai-panel > div:nth-child(2) p {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.7;
}

.service-page--build .delivery-section {
	background:
		radial-gradient(circle at 90% 14%, rgba(242, 41, 91, 0.055), transparent 24%),
		linear-gradient(180deg, #f8f7fa, #f4f2f8);
}

.service-page--build .delivery-line {
	position: relative;
	gap: 0.7rem;
}

.service-page--build .delivery-line li,
.service-page--build .delivery-line li:last-child {
	min-height: 14rem;
	padding: 1.25rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.3rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(240, 237, 247, 0.64));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 15px 38px rgba(49, 39, 83, 0.055);
	backdrop-filter: blur(18px) saturate(150%);
}

.service-page--build .delivery-line li::after {
	position: absolute;
	right: -2.5rem;
	top: -2.5rem;
	width: 6rem;
	height: 6rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 50%;
	content: "";
}

.service-page--build .delivery-line li > span {
	position: relative;
	z-index: 2;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 0.78rem;
	background: linear-gradient(145deg, var(--color-purple), #796ba8);
	box-shadow: 0 9px 20px rgba(86, 77, 137, 0.18);
}

.service-page--build .delivery-line strong {
	position: relative;
	z-index: 2;
	font-size: 0.92rem;
}

.service-page--build .delivery-line small {
	position: relative;
	z-index: 2;
	font-size: 0.67rem;
	line-height: 1.45;
}

.service-page--build .contract-note {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(13rem, 0.52fr) minmax(0, 1fr);
	margin-top: 1.35rem;
	padding: clamp(1.4rem, 2.6vw, 2.2rem);
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2rem);
	overflow: hidden;
	border: 1px solid rgba(117, 93, 166, 0.24);
	border-radius: 1.7rem;
	background:
		radial-gradient(circle at 96% 10%, rgba(242, 41, 91, 0.11), transparent 27%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.92), rgba(255, 255, 255, 0.86));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 20px 50px rgba(86, 77, 137, 0.1);
	backdrop-filter: blur(22px) saturate(155%);
}

.contract-note__mark {
	position: relative;
	z-index: 2;
	display: grid;
	width: 4rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 1.25rem;
	background: linear-gradient(145deg, var(--color-purple), #76539e 55%, var(--color-pink));
	box-shadow: 0 14px 30px rgba(86, 77, 137, 0.22);
}

.contract-note__mark i {
	position: relative;
	width: 1.7rem;
	aspect-ratio: 1;
	border: 0.16rem solid #fff;
	border-radius: 50%;
}

.contract-note__mark::before {
	position: absolute;
	left: 50%;
	top: 0.66rem;
	width: 0.7rem;
	height: 0.22rem;
	border-radius: 999px;
	background: #fff;
	content: "";
	transform: translateX(-50%);
}

.contract-note__mark::after {
	position: absolute;
	right: 0.72rem;
	top: 1rem;
	width: 0.46rem;
	height: 0.18rem;
	border-radius: 999px;
	background: #fff;
	content: "";
	transform: rotate(45deg);
}

.contract-note__mark i::before {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.13rem;
	height: 0.57rem;
	border-radius: 999px;
	background: #fff;
	content: "";
	transform: translate(-50%, -100%) rotate(24deg);
	transform-origin: 50% 100%;
}

.contract-note__mark i::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.25rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #fff;
	content: "";
	transform: translate(-50%, -50%);
}

.service-page--build .contract-note > div,
.service-page--build .contract-note > p {
	position: relative;
	z-index: 2;
}

.service-page--build .contract-note > div {
	display: grid;
	gap: 0.25rem;
}

.service-page--build .contract-note > div small {
	color: var(--color-purple);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.service-page--build .contract-note > div strong {
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.service-page--build .contract-note p {
	font-size: 0.86rem;
	line-height: 1.6;
}

.service-page--build .faq-section {
	background:
		radial-gradient(circle at 8% 85%, rgba(86, 77, 137, 0.055), transparent 25%),
		var(--color-white);
}

.service-page--build .faq-list {
	gap: 0.75rem;
}

.service-page--build .faq-list details {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.35rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(241, 238, 247, 0.62));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 14px 34px rgba(49, 39, 83, 0.05);
	backdrop-filter: blur(18px) saturate(150%);
	transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-page--build .faq-list details[open] {
	border-color: rgba(117, 93, 166, 0.24);
	background:
		radial-gradient(circle at 96% 8%, rgba(242, 41, 91, 0.08), transparent 28%),
		linear-gradient(145deg, rgba(247, 243, 253, 0.94), rgba(255, 255, 255, 0.82));
	box-shadow: 0 18px 42px rgba(86, 77, 137, 0.08);
}

.service-page--build .faq-list summary {
	padding: 1.45rem 4.5rem 1.45rem 1.5rem;
}

.service-page--build .faq-list summary span {
	right: 1.25rem;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(255, 255, 255, 0.86);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 234, 248, 0.86));
	box-shadow: 0 8px 18px rgba(86, 77, 137, 0.1);
}

.service-page--build .faq-list details p {
	padding: 0 4.5rem 1.6rem 1.5rem;
	line-height: 1.65;
}

@media (max-width: 1100px) {
	.service-page--build .build-hero {
		min-height: auto;
	}

	.build-hero__grid {
		grid-template-columns: 1fr;
	}

	.service-page--build .build-hero h1 {
		max-width: 14ch;
	}

	.build-hero__visual {
		width: min(100%, 48rem);
		min-height: 43rem;
		margin-inline: auto;
	}

	.build-hero__icon-field {
		left: 20%;
		opacity: 0.27;
	}

	.service-page--build .method-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-page--build .method-card:last-child {
		grid-column: 1 / -1;
	}

	.service-page--build .method-card:last-child .method-card__visual,
	.service-page--build .method-card:last-child .method-card__content {
		width: min(100%, 36rem);
		margin-inline: auto;
	}

	.service-page--build .included-section__grid {
		grid-template-columns: 1fr;
	}

	.service-page--build .included-section__intro {
		position: static;
	}

	.service-page--build .delivery-line {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.service-page--build .method-grid {
		grid-template-columns: 1fr;
	}

	.service-page--build .method-card:last-child {
		grid-column: auto;
	}

	.service-page--build .method-card,
	.service-page--build .method-card.method-card--large {
		min-height: 33rem;
	}

	.service-page--build .ai-panel,
	.service-page--build .contract-note {
		grid-template-columns: 1fr;
	}

	.contract-note__mark {
		width: 3.5rem;
	}
}

@media (max-width: 600px) {
	.service-page--build .build-hero {
		padding-top: calc(var(--header-height) + 3.2rem);
	}

	.service-page--build .build-hero h1 {
		max-width: 100%;
		font-size: clamp(2.55rem, 11.4vw, 3.25rem);
		letter-spacing: -0.06em;
	}

	.service-page--build .build-hero h1 span {
		font-size: 1.02em;
		letter-spacing: -0.068em;
	}

	.build-hero__icon-field {
		top: 40%;
		right: -15rem;
		bottom: 1%;
		left: -7rem;
		opacity: 0.2;
	}

	.build-hero .hero-tech-app {
		width: 3.75rem;
	}

	.build-hero__visual {
		min-height: 38rem;
	}

	.build-device {
		width: min(19rem, 84%);
		height: 36.5rem;
		padding: 3rem 0.82rem 1.25rem;
		border-radius: 3rem;
	}

	.build-device::before {
		border-radius: 2.55rem;
	}

	.build-device__workspace {
		padding: 0.78rem;
		border-radius: 1.75rem;
	}

	.build-device__steps > div {
		min-height: 3.2rem;
		padding: 0.5rem 0.58rem;
	}

	.build-device__screen {
		min-height: 8.1rem;
		padding: 1rem;
	}

	.build-device__screen > div {
		width: 5.8rem;
	}

	.build-device__screen b {
		height: 2.9rem;
	}

	.build-hero__float-card {
		min-width: 8.8rem;
		padding: 0.75rem 0.82rem;
	}

	.build-hero__float-card--design {
		left: -0.3rem;
		top: 10.5rem;
	}

	.build-hero__float-card--system {
		right: -0.3rem;
		bottom: 7rem;
	}

	.service-page--build .method-card,
	.service-page--build .method-card.method-card--large {
		min-height: 34rem;
		padding: 1rem;
		border-radius: 1.55rem;
	}

	.method-card__visual {
		height: 12rem;
	}

	.method-question-map {
		grid-template-columns: 1fr;
		width: 72%;
		gap: 0.38rem;
	}

	.method-question-map > i {
		width: 2px;
		height: 0.7rem;
		margin-inline: auto;
		background: linear-gradient(rgba(86, 77, 137, 0.22), rgba(242, 41, 91, 0.54));
	}

	.method-question-map > span {
		width: fit-content;
		margin-inline: auto;
	}

	.method-question-map > p {
		min-height: 4.25rem;
	}

	.service-page--build .price-card,
	.service-page--build .price-card--featured {
		min-height: 27rem;
		border-radius: 1.55rem;
	}

	.service-page--build .check-list {
		grid-template-columns: 1fr;
	}

	.service-page--build .check-list li {
		min-height: 7.4rem;
	}

	.service-page--build .ai-panel {
		padding: 1.5rem;
		border-radius: 1.55rem;
	}

	.service-page--build .ai-panel h2 {
		font-size: clamp(2.05rem, 10vw, 2.8rem);
	}

	.service-page--build .delivery-line {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-page--build .delivery-line li,
	.service-page--build .delivery-line li:last-child {
		min-height: 12rem;
	}

	.service-page--build .contract-note {
		padding: 1.3rem;
		border-radius: 1.35rem;
	}

	.service-page--build .faq-list summary {
		padding: 1.3rem 4rem 1.3rem 1.2rem;
	}

	.service-page--build .faq-list details p {
		padding: 0 1.2rem 1.45rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.build-hero__icon-track,
	.build-device__screen::after {
		animation: none;
	}
}

/* Weboldalkészítés v3 — laptop hero, cleaner cards and portrait-led AI panel. */
.build-macbook {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: min(39rem, 112%);
	transform: translate(-50%, -48%);
}

.build-macbook__lid {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	padding: 0.72rem 0.72rem 0.82rem;
	border: 1px solid rgba(255, 255, 255, 0.96);
	border-radius: 1.35rem 1.35rem 0.68rem 0.68rem;
	background: linear-gradient(145deg, #fbfbfd 0%, #d7d5df 48%, #f7f6fa 100%);
	box-shadow:
		inset 0 1px 0 #fff,
		inset 0 -1px 0 rgba(41, 35, 62, 0.18),
		0 34px 75px rgba(49, 39, 83, 0.2);
}

.build-macbook__camera {
	position: absolute;
	z-index: 5;
	top: 0.25rem;
	left: 50%;
	width: 0.24rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(24, 22, 31, 0.76);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
	transform: translateX(-50%);
}

.build-macbook__screen {
	position: relative;
	height: 100%;
	overflow: hidden;
	border: 0.34rem solid #1e1c25;
	border-radius: 0.82rem 0.82rem 0.35rem 0.35rem;
	background: #f7f5fb;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.build-macbook__screen::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(116deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.12));
	content: "";
	pointer-events: none;
}

.build-macbook__screen::before {
	position: absolute;
	z-index: 5;
	top: -20%;
	left: -34%;
	width: 21%;
	height: 140%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
	content: "";
	transform: skewX(-16deg);
	animation: build-screen-glint 8.2s ease-in-out infinite;
	pointer-events: none;
}

.build-wireframe__bar {
	position: relative;
	z-index: 2;
	display: flex;
	height: 2.15rem;
	padding: 0 0.85rem;
	align-items: center;
	gap: 0.34rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.1);
	background: rgba(255, 255, 255, 0.82);
}

.build-wireframe__bar > i {
	width: 0.38rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.23);
}

.build-wireframe__bar > i:nth-child(2) {
	background: rgba(242, 41, 91, 0.28);
}

.build-wireframe__bar small {
	min-width: 8.7rem;
	margin: 0 auto;
	padding: 0.3rem 0.75rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.64);
	color: rgba(43, 38, 58, 0.55);
	font-size: 0.49rem;
	text-align: center;
}

.build-wireframe {
	height: calc(100% - 2.15rem);
	padding: 0.85rem 1rem 1rem;
	background:
		radial-gradient(circle at 87% 16%, rgba(242, 41, 91, 0.1), transparent 24%),
		linear-gradient(145deg, rgba(247, 244, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.build-wireframe__header {
	display: flex;
	height: 1.45rem;
	align-items: center;
	justify-content: space-between;
}

.build-wireframe__header > span {
	width: 3.6rem;
	height: 0.52rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-purple), #856fae);
}

.build-wireframe__header nav {
	display: flex;
	gap: 0.5rem;
}

.build-wireframe__header nav i {
	width: 1.9rem;
	height: 0.22rem;
	border-radius: 999px;
	background: rgba(42, 37, 56, 0.17);
}

.build-wireframe__hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	min-height: 10.1rem;
	margin-top: 0.55rem;
	padding: 1.25rem;
	align-items: center;
	gap: 1.15rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 12px 30px rgba(49, 39, 83, 0.055);
}

.build-wireframe__copy {
	display: grid;
	align-content: center;
	gap: 0.55rem;
}

.build-wireframe__copy > small {
	width: 3.2rem;
	height: 0.34rem;
	border-radius: 999px;
	background: rgba(242, 41, 91, 0.58);
}

.build-wireframe__copy > strong {
	display: grid;
	gap: 0.36rem;
}

.build-wireframe__copy > strong i {
	display: block;
	width: 90%;
	height: 0.75rem;
	border-radius: 0.24rem;
	background: rgba(37, 33, 48, 0.78);
}

.build-wireframe__copy > strong i:last-child {
	width: 70%;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.build-wireframe__copy > p {
	width: 94%;
	height: 1.5rem;
	margin: 0;
	border-radius: 0.3rem;
	background: repeating-linear-gradient(to bottom, rgba(42, 37, 56, 0.15) 0 0.18rem, transparent 0.18rem 0.5rem);
}

.build-wireframe__copy > b {
	width: 4.4rem;
	height: 1.28rem;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), #76539e 50%, var(--color-pink));
	box-shadow: 0 8px 18px rgba(86, 77, 137, 0.2);
}

.build-wireframe__media {
	position: relative;
	height: 7.55rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 0.9rem;
	background:
		radial-gradient(circle at 70% 32%, rgba(242, 41, 91, 0.32), transparent 29%),
		linear-gradient(145deg, rgba(86, 77, 137, 0.9), rgba(119, 83, 155, 0.7) 60%, rgba(242, 41, 91, 0.52));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.build-wireframe__media > span {
	position: absolute;
	right: 16%;
	top: 16%;
	width: 44%;
	aspect-ratio: 0.78;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 0.75rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
	box-shadow: 0 12px 24px rgba(35, 25, 55, 0.16);
	transform: rotate(4deg);
}

.build-wireframe__media > i {
	position: absolute;
	left: 12%;
	bottom: 18%;
	width: 42%;
	height: 0.42rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
}

.build-wireframe__media > i:last-child {
	bottom: 9%;
	width: 29%;
	opacity: 0.62;
}

.build-wireframe__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0.65rem;
	gap: 0.55rem;
}

.build-wireframe__cards article {
	display: grid;
	height: 3.35rem;
	padding: 0.58rem;
	align-content: center;
	gap: 0.33rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.7rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 8px 20px rgba(49, 39, 83, 0.04);
}

.build-wireframe__cards article > i {
	width: 0.82rem;
	aspect-ratio: 1;
	border-radius: 0.24rem;
	background: linear-gradient(145deg, var(--color-purple), #9177b4);
}

.build-wireframe__cards article > b,
.build-wireframe__cards article > small {
	width: 65%;
	height: 0.2rem;
	border-radius: 999px;
	background: rgba(42, 37, 56, 0.24);
}

.build-wireframe__cards article > small {
	width: 88%;
	background: rgba(42, 37, 56, 0.1);
}

.build-macbook__base {
	position: relative;
	z-index: 2;
	left: 50%;
	width: 108%;
	height: 1.05rem;
	border-top: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 0 0 1.5rem 1.5rem;
	background: linear-gradient(180deg, #f8f7fa 0%, #d1cfd8 48%, #aaa8b1 100%);
	box-shadow: 0 11px 18px rgba(42, 34, 65, 0.14);
	clip-path: polygon(3.5% 0, 96.5% 0, 100% 75%, 97% 100%, 3% 100%, 0 75%);
	transform: translateX(-50%);
}

.build-macbook__base span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 17%;
	height: 0.32rem;
	border-radius: 0 0 0.45rem 0.45rem;
	background: rgba(126, 122, 134, 0.34);
	transform: translateX(-50%);
}

.build-macbook__shadow {
	position: absolute;
	z-index: 0;
	right: 8%;
	bottom: -2rem;
	left: 8%;
	height: 2.1rem;
	border-radius: 50%;
	background: rgba(49, 39, 83, 0.2);
	filter: blur(1.1rem);
}

/* A mobile viewport paired with the desktop wireframe makes responsiveness visible. */
.build-phone {
	position: absolute;
	z-index: 4;
	left: -1.25rem;
	bottom: 4.35rem;
	width: 9.45rem;
}

.build-phone__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 18.7;
	padding: 0.36rem;
	border: 1px solid rgba(255, 255, 255, 0.98);
	border-radius: 2.05rem;
	background: linear-gradient(145deg, #fbfbfd 0%, #d4d1dc 48%, #faf9fc 100%);
	box-shadow:
		inset 0 1px 0 #fff,
		inset 0 -1px 0 rgba(41, 35, 62, 0.2),
		0 0 0 0.18rem rgba(255, 255, 255, 0.23),
		0 26px 55px rgba(49, 39, 83, 0.22);
}

.build-phone__screen {
	position: relative;
	height: 100%;
	overflow: hidden;
	border: 0.28rem solid #1e1c25;
	border-radius: 1.62rem;
	background: #f7f5fb;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.build-phone__screen::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(118deg, rgba(255, 255, 255, 0.19), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.1));
	content: "";
	pointer-events: none;
}

.build-phone__island {
	position: absolute;
	z-index: 8;
	top: 0.68rem;
	left: 50%;
	width: 2.9rem;
	height: 0.77rem;
	border-radius: 999px;
	background: #1e1c25;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
	transform: translateX(-50%);
}

.build-phone__home {
	position: absolute;
	z-index: 8;
	left: 50%;
	bottom: 0.78rem;
	width: 3rem;
	height: 0.18rem;
	border-radius: 999px;
	background: rgba(30, 28, 37, 0.7);
	transform: translateX(-50%);
}

.build-phone__shadow {
	position: absolute;
	z-index: -1;
	right: 5%;
	bottom: -1.15rem;
	left: 5%;
	height: 1.3rem;
	border-radius: 50%;
	background: rgba(49, 39, 83, 0.22);
	filter: blur(0.75rem);
}

.build-phone__status {
	position: absolute;
	z-index: 7;
	top: 0.34rem;
	right: 0.62rem;
	left: 0.62rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(30, 28, 37, 0.78);
	font-size: 0.36rem;
	font-weight: 800;
	line-height: 1;
}

.build-phone__status time {
	min-width: 1.45rem;
	font: inherit;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}

.build-phone__wifi {
	width: 0.68rem;
	height: 0.51rem;
	color: currentColor;
}

.build-phone__wifi::before,
.build-phone__wifi::after {
	border-width: 0.08rem;
}

.build-phone__wifi::before {
	width: 0.68rem;
	height: 0.53rem;
}

.build-phone__wifi::after {
	top: 0.18rem;
	width: 0.4rem;
	height: 0.31rem;
}

.build-phone__wifi i {
	bottom: 0.02rem;
	width: 0.12rem;
	height: 0.12rem;
}

.build-mobile-wireframe__bar {
	position: absolute;
	z-index: 6;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	height: 2.45rem;
	padding: 0.3rem 0.45rem 0.83rem;
	align-items: flex-start;
	justify-content: center;
	border-top: 1px solid rgba(86, 77, 137, 0.08);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 -0.35rem 0.8rem rgba(49, 39, 83, 0.035);
	backdrop-filter: blur(9px) saturate(140%);
}

.build-mobile-wireframe__bar small {
	width: 4.6rem;
	padding: 0.19rem 0.35rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.68);
	color: rgba(43, 38, 58, 0.53);
	font-size: 0.3rem;
	text-align: center;
}

.build-mobile-wireframe {
	height: 100%;
	padding: 2rem 0.5rem 2.85rem;
	background:
		radial-gradient(circle at 90% 12%, rgba(242, 41, 91, 0.1), transparent 25%),
		linear-gradient(145deg, rgba(247, 244, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.build-mobile-wireframe__header {
	display: flex;
	height: 0.85rem;
	align-items: center;
	justify-content: space-between;
}

.build-mobile-wireframe__header > span {
	width: 2.1rem;
	height: 0.33rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-purple), #856fae);
}

.build-mobile-wireframe__header > i {
	position: relative;
	width: 0.92rem;
	height: 0.42rem;
	border-top: 0.11rem solid rgba(42, 37, 56, 0.4);
	border-bottom: 0.11rem solid rgba(42, 37, 56, 0.4);
}

.build-mobile-wireframe__hero {
	display: grid;
	margin-top: 0.3rem;
	padding: 0.55rem;
	gap: 0.55rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 0.65rem;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 8px 18px rgba(49, 39, 83, 0.055);
	animation: build-mobile-layout-drift 6.6s ease-in-out infinite;
}

.build-mobile-wireframe__copy {
	display: grid;
	gap: 0.28rem;
}

.build-mobile-wireframe__copy > small {
	width: 2rem;
	height: 0.2rem;
	border-radius: 999px;
	background: rgba(242, 41, 91, 0.58);
}

.build-mobile-wireframe__copy > strong {
	display: grid;
	gap: 0.2rem;
}

.build-mobile-wireframe__copy > strong i {
	display: block;
	width: 88%;
	height: 0.42rem;
	border-radius: 0.16rem;
	background: rgba(37, 33, 48, 0.78);
}

.build-mobile-wireframe__copy > strong i:nth-child(2) {
	width: 72%;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.build-mobile-wireframe__copy > strong i:last-child {
	width: 58%;
}

.build-mobile-wireframe__copy > p {
	width: 95%;
	height: 0.72rem;
	margin: 0;
	border-radius: 0.2rem;
	background: repeating-linear-gradient(to bottom, rgba(42, 37, 56, 0.14) 0 0.1rem, transparent 0.1rem 0.26rem);
}

.build-mobile-wireframe__copy > b {
	width: 2.7rem;
	height: 0.8rem;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), #76539e 50%, var(--color-pink));
	box-shadow: 0 5px 12px rgba(86, 77, 137, 0.18);
}

.build-mobile-wireframe__media {
	position: relative;
	height: 4.15rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 0.6rem;
	background:
		radial-gradient(circle at 70% 32%, rgba(242, 41, 91, 0.32), transparent 29%),
		linear-gradient(145deg, rgba(86, 77, 137, 0.9), rgba(119, 83, 155, 0.7) 60%, rgba(242, 41, 91, 0.52));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
	animation: build-mobile-media-drift 7.1s ease-in-out infinite;
}

.build-mobile-wireframe__media > span {
	position: absolute;
	right: 16%;
	top: 13%;
	width: 42%;
	aspect-ratio: 0.78;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 0.48rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2));
	box-shadow: 0 8px 15px rgba(35, 25, 55, 0.14);
	transform: rotate(4deg);
}

.build-mobile-wireframe__media > i {
	position: absolute;
	left: 12%;
	bottom: 18%;
	width: 42%;
	height: 0.22rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
}

.build-mobile-wireframe__media > i:last-child {
	bottom: 9%;
	width: 29%;
	opacity: 0.62;
}

.build-mobile-wireframe__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 0.38rem;
	gap: 0.28rem;
	animation: build-mobile-cards-drift 7.4s ease-in-out infinite;
}

.build-mobile-wireframe__cards article {
	display: grid;
	height: 2.15rem;
	padding: 0.34rem;
	align-content: center;
	gap: 0.2rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.45rem;
	background: rgba(255, 255, 255, 0.75);
}

.build-mobile-wireframe__cards article > i {
	width: 0.48rem;
	aspect-ratio: 1;
	border-radius: 0.15rem;
	background: linear-gradient(145deg, var(--color-purple), #9177b4);
}

.build-mobile-wireframe__cards article > b,
.build-mobile-wireframe__cards article > small {
	width: 66%;
	height: 0.12rem;
	border-radius: 999px;
	background: rgba(42, 37, 56, 0.22);
}

.build-mobile-wireframe__cards article > small {
	width: 88%;
	background: rgba(42, 37, 56, 0.1);
}

.build-wireframe__hero {
	animation: build-desktop-layout-drift 6.8s ease-in-out infinite;
}

.build-wireframe__media {
	animation: build-desktop-media-drift 7.4s ease-in-out infinite;
}

.build-wireframe__cards {
	animation: build-desktop-cards-drift 7.8s ease-in-out infinite;
}

@keyframes build-screen-glint {
	0%, 34% { transform: translateX(-120%) skewX(-16deg); }
	72%, 100% { transform: translateX(700%) skewX(-16deg); }
}

@keyframes build-desktop-layout-drift {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -0.16rem, 0); }
}

@keyframes build-desktop-media-drift {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0.12rem, -0.13rem, 0); }
}

@keyframes build-desktop-cards-drift {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, 0.11rem, 0); }
}

@keyframes build-mobile-layout-drift {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -0.1rem, 0); }
}

@keyframes build-mobile-media-drift {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(-0.08rem, -0.12rem, 0); }
}

@keyframes build-mobile-cards-drift {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, 0.09rem, 0); }
}

.service-page--build .build-hero__float-card--design {
	left: -1.3rem;
	top: 9.2rem;
	transform: rotate(-2deg);
}

.service-page--build .build-hero__float-card--system {
	right: -1.8rem;
	bottom: 9.6rem;
	transform: rotate(2deg);
}

.service-page--build .method-card__visual {
	background:
		radial-gradient(circle at 88% 14%, rgba(242, 41, 91, 0.11), transparent 30%),
		radial-gradient(circle at 10% 90%, rgba(86, 77, 137, 0.1), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 235, 247, 0.66));
	background-size: auto;
}

.service-page--build > .ai-section {
	padding-top: clamp(5rem, 8vw, 8rem);
}

.service-page--build .ai-panel {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr) minmax(12rem, 0.5fr);
	padding: clamp(2rem, 4vw, 3.8rem);
	align-items: stretch;
	gap: clamp(1.5rem, 2.5vw, 2.6rem);
}

.service-page--build .ai-panel > div:first-child,
.service-page--build .ai-panel > div:nth-child(2),
.service-page--build .ai-panel__portrait {
	position: relative;
	z-index: 2;
}

.service-page--build .ai-panel__portrait {
	min-height: 24rem;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 1.55rem;
	background: rgba(255, 255, 255, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 22px 48px rgba(49, 39, 83, 0.13);
}

.service-page--build .ai-panel__portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.service-page--build .ai-panel__portrait::after {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(122deg, rgba(255, 255, 255, 0.24), transparent 28%, transparent 70%, rgba(242, 41, 91, 0.08));
	content: "";
	pointer-events: none;
}

.service-page--build .ai-panel__signal {
	display: none;
}

@media (max-width: 1100px) {
	.build-hero__visual {
		min-height: 37rem;
	}

	.build-macbook {
		width: min(40rem, 90%);
	}

	.build-phone {
		left: 0.7rem;
		bottom: 4.8rem;
		width: 9.1rem;
	}

	.service-page--build .build-hero__float-card--design {
		left: 2rem;
	}

	.service-page--build .build-hero__float-card--system {
		right: 2rem;
	}
}

@media (max-width: 1000px) {
	.service-page--build .ai-panel {
		grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.48fr);
	}

	.service-page--build .ai-panel > div:first-child {
		grid-column: 1 / -1;
	}

	.service-page--build .ai-panel__portrait {
		grid-column: 2;
		grid-row: 2;
		min-height: 22rem;
	}
}

@media (max-width: 700px) {
	.build-hero__visual {
		min-height: 27rem;
	}

	.build-macbook {
		top: 49%;
		width: 108%;
	}

	.build-phone {
		left: -0.35rem;
		bottom: 2.6rem;
		width: 6.65rem;
	}

	.build-phone__frame {
		padding: 0.25rem;
		border-radius: 1.48rem;
	}

	.build-phone__screen {
		border-width: 0.2rem;
		border-radius: 1.17rem;
	}

	.build-phone__island {
		top: 0.47rem;
		width: 2.05rem;
		height: 0.55rem;
	}

	.build-phone__home {
		bottom: 0.54rem;
		width: 2.15rem;
	}

	.build-mobile-wireframe__bar {
		height: 1.72rem;
		padding: 0.2rem 0.32rem 0.58rem;
	}

	.build-mobile-wireframe {
		height: 100%;
		padding: 1.42rem 0.35rem 1.98rem;
	}

	.build-phone__status {
		top: 0.24rem;
		right: 0.44rem;
		left: 0.44rem;
		font-size: 0.27rem;
	}

	.build-phone__wifi {
		transform: scale(0.78);
		transform-origin: right center;
	}

	.build-mobile-wireframe__header {
		height: 0.6rem;
	}

	.build-mobile-wireframe__hero {
		margin-top: 0.2rem;
		padding: 0.38rem;
		gap: 0.36rem;
	}

	.build-mobile-wireframe__media {
		height: 2.88rem;
	}

	.build-mobile-wireframe__cards article {
		height: 1.48rem;
		padding: 0.23rem;
		gap: 0.12rem;
	}

	.build-wireframe__bar {
		height: 1.55rem;
		padding-inline: 0.55rem;
	}

	.build-wireframe__bar small {
		min-width: 6.2rem;
		font-size: 0.38rem;
	}

	.build-wireframe {
		height: calc(100% - 1.55rem);
		padding: 0.55rem 0.62rem 0.68rem;
	}

	.build-wireframe__header {
		height: 1rem;
	}

	.build-wireframe__hero {
		min-height: 6.7rem;
		margin-top: 0.36rem;
		padding: 0.7rem;
		gap: 0.6rem;
	}

	.build-wireframe__media {
		height: 5.15rem;
	}

	.build-wireframe__cards {
		margin-top: 0.4rem;
		gap: 0.35rem;
	}

	.build-wireframe__cards article {
		height: 2.25rem;
		padding: 0.38rem;
		gap: 0.18rem;
	}

	.service-page--build .build-hero__float-card {
		min-width: 7.8rem;
		padding: 0.65rem 0.72rem;
	}

	.service-page--build .build-hero__float-card--design {
		left: -0.35rem;
		top: 4.1rem;
	}

	.service-page--build .build-hero__float-card--system {
		right: -0.35rem;
		bottom: 3.45rem;
	}

	.service-page--build .ai-panel {
		grid-template-columns: 1fr;
	}

	.service-page--build .ai-panel > div:first-child,
	.service-page--build .ai-panel__portrait {
		grid-column: auto;
		grid-row: auto;
	}

	.service-page--build .ai-panel__portrait {
		min-height: 28rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.build-macbook__screen::before,
	.build-wireframe__hero,
	.build-wireframe__media,
	.build-wireframe__cards,
	.build-mobile-wireframe__hero,
	.build-mobile-wireframe__media,
	.build-mobile-wireframe__cards,
	.build-macbook__screen::after {
		animation: none;
	}
}

/* Weboldalkészítés v4 — editorial AI formula. */

.service-page--build .ai-panel {
	grid-template-columns: minmax(0, 1.02fr) minmax(23rem, 0.86fr);
	padding: clamp(2.2rem, 4.5vw, 4.7rem);
	align-items: center;
	gap: clamp(2.2rem, 5vw, 5rem);
	background:
		radial-gradient(circle at 96% 8%, rgba(242, 41, 91, 0.13), transparent 28%),
		radial-gradient(circle at 4% 100%, rgba(86, 77, 137, 0.12), transparent 34%),
		linear-gradient(135deg, rgba(240, 236, 249, 0.9), rgba(255, 255, 255, 0.94) 58%, rgba(252, 241, 246, 0.76));
}

.service-page--build .ai-panel::before {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(118deg, rgba(255, 255, 255, 0.52), transparent 27%, transparent 72%, rgba(255, 255, 255, 0.24));
	content: "";
	pointer-events: none;
}

.service-page--build .ai-panel::after {
	position: absolute;
	right: -6rem;
	top: -6rem;
	width: 18rem;
	aspect-ratio: 1;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 50%;
	box-shadow:
		0 0 0 2.4rem rgba(255, 255, 255, 0.12),
		0 0 0 5rem rgba(86, 77, 137, 0.025);
	content: "";
	pointer-events: none;
}

.service-page--build .ai-panel__copy,
.service-page--build .ai-panel__formula {
	position: relative;
	z-index: 2;
}

.service-page--build .ai-panel__copy h2 {
	max-width: 14ch;
}

.service-page--build .ai-panel__copy > p:last-child {
	max-width: 47rem;
	margin: clamp(1.4rem, 2.6vw, 2.2rem) 0 0;
	color: var(--color-ink-soft);
	font-size: clamp(0.92rem, 1.1vw, 1.02rem);
	line-height: 1.72;
}

.service-page--build .ai-panel__formula {
	padding: 1.1rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 1.75rem;
	background:
		radial-gradient(circle at 92% 6%, rgba(242, 41, 91, 0.1), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(238, 234, 248, 0.68));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 28px 65px rgba(49, 39, 83, 0.13);
	backdrop-filter: blur(24px) saturate(155%);
}

.ai-formula__label {
	margin: 0;
	padding: 0.35rem 0.45rem 1rem;
	color: var(--color-purple);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.ai-formula__inputs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
}

.ai-formula__inputs > div {
	display: flex;
	min-height: 7.5rem;
	padding: 1rem;
	justify-content: space-between;
	flex-direction: column;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.68);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 12px 26px rgba(49, 39, 83, 0.05);
}

.ai-formula__inputs > div:nth-of-type(2) {
	background: linear-gradient(145deg, rgba(238, 234, 248, 0.88), rgba(255, 255, 255, 0.76));
}

.ai-formula__inputs > div:nth-of-type(3) {
	background: linear-gradient(145deg, rgba(255, 241, 245, 0.84), rgba(255, 255, 255, 0.76));
}

.ai-formula__inputs small {
	color: var(--color-ink-soft);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ai-formula__inputs strong {
	font-size: clamp(1.65rem, 2.6vw, 2.45rem);
	letter-spacing: -0.065em;
	line-height: 0.95;
}

.ai-formula__inputs > span {
	display: none;
}

.ai-formula__connector {
	position: relative;
	height: 2.9rem;
}

.ai-formula__connector::before,
.ai-formula__connector::after,
.ai-formula__connector span {
	position: absolute;
	content: "";
}

.ai-formula__connector::before {
	left: 16.66%;
	right: 16.66%;
	top: 0;
	height: 1.45rem;
	border-right: 1px solid rgba(86, 77, 137, 0.25);
	border-bottom: 1px solid rgba(86, 77, 137, 0.25);
	border-left: 1px solid rgba(86, 77, 137, 0.25);
	border-radius: 0 0 0.75rem 0.75rem;
}

.ai-formula__connector::after {
	left: 50%;
	top: 1.45rem;
	width: 1px;
	height: 1.45rem;
	background: linear-gradient(var(--color-purple), var(--color-pink));
}

.ai-formula__connector span {
	z-index: 2;
	left: 50%;
	bottom: -0.16rem;
	width: 0.42rem;
	aspect-ratio: 1;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: var(--color-pink);
	box-shadow: 0 0 0 0.26rem rgba(242, 41, 91, 0.1);
	transform: translateX(-50%);
}

.ai-formula__result {
	display: grid;
	min-height: 8.2rem;
	padding: 1.35rem;
	align-content: center;
	gap: 0.42rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 1.25rem;
	background: linear-gradient(118deg, rgba(86, 77, 137, 0.96), rgba(116, 78, 151, 0.92) 58%, rgba(242, 41, 91, 0.86));
	box-shadow: 0 18px 38px rgba(86, 77, 137, 0.2);
	color: #fff;
}

.ai-formula__result small {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.58rem;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.ai-formula__result strong {
	max-width: 16ch;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.service-page--build .delivery-line li,
.service-page--build .delivery-line li:last-child {
	grid-template-rows: auto auto auto;
	min-height: 10.25rem;
	padding: 1.05rem;
	align-content: start;
	align-items: start;
	gap: 0.58rem;
}

.service-page--build .delivery-line li > span {
	margin-bottom: 0.18rem;
}

.service-page--build .delivery-line strong {
	margin: 0;
	line-height: 1.25;
}

.service-page--build .delivery-line small {
	margin: 0;
	line-height: 1.35;
}

@media (max-width: 1000px) {
	.service-page--build .ai-panel {
		grid-template-columns: 1fr;
	}

	.service-page--build .ai-panel__formula {
		width: min(100%, 42rem);
	}
}

@media (max-width: 600px) {
	.service-page--build .ai-panel {
		padding: 1.4rem;
		gap: 1.7rem;
	}

	.service-page--build .ai-panel__formula {
		padding: 0.8rem;
		border-radius: 1.35rem;
	}

	.ai-formula__inputs {
		grid-template-columns: 1fr;
	}

	.ai-formula__inputs > div {
		min-height: 5.5rem;
	}

	.ai-formula__inputs > span {
		display: block;
		margin-block: -0.45rem;
		color: var(--color-purple);
		font-size: 1rem;
		font-weight: 800;
		text-align: center;
	}

	.ai-formula__connector::before {
		left: 50%;
		right: auto;
		width: 1px;
		border: 0;
		background: rgba(86, 77, 137, 0.24);
	}

	.service-page--build .delivery-line li,
	.service-page--build .delivery-line li:last-child {
		min-height: 9.5rem;
		padding: 0.9rem;
		gap: 0.48rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.build-macbook,
	.build-macbook__lid,
	.build-macbook__screen,
	.build-macbook__shadow,
	.service-page--build .build-hero__float-card {
		transform: none;
		filter: none;
		opacity: 1;
	}

	.build-macbook {
		transform: translate(-50%, -48%);
	}
}

/* Weboldalkészítés v5 — rebuilt experience section. */

.service-page--build > .ai-section {
	padding-top: clamp(5rem, 8vw, 8rem);
	background:
		radial-gradient(circle at 96% 12%, rgba(242, 41, 91, 0.05), transparent 27%),
		linear-gradient(180deg, #fff, #f8f6fb 82%, #fff);
}

.experience-heading {
	display: grid;
	max-width: 68rem;
	gap: 0.85rem;
}

.experience-heading .eyebrow {
	margin: 0;
}

.experience-heading h2 {
	max-width: 20ch;
	margin: 0;
	font-size: clamp(2.45rem, 4.2vw, 4.45rem);
	letter-spacing: -0.062em;
	line-height: 0.98;
}

.experience-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) minmax(20rem, 0.84fr);
	margin-top: clamp(2.2rem, 4vw, 3.6rem);
	padding: clamp(1.3rem, 3.2vw, 2.8rem);
	align-items: stretch;
	gap: clamp(1.2rem, 2.6vw, 2.2rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 2.2rem;
	background:
		radial-gradient(circle at 91% 8%, rgba(242, 41, 91, 0.1), transparent 27%),
		radial-gradient(circle at 5% 100%, rgba(86, 77, 137, 0.12), transparent 32%),
		linear-gradient(135deg, rgba(238, 234, 248, 0.8), rgba(255, 255, 255, 0.94) 56%, rgba(255, 242, 246, 0.72));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 34px 82px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(24px) saturate(155%);
}

.experience-panel::before {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(118deg, rgba(255, 255, 255, 0.42), transparent 31%, transparent 72%, rgba(255, 255, 255, 0.2));
	content: "";
	pointer-events: none;
}

.experience-panel::after {
	position: absolute;
	right: -5rem;
	top: -6rem;
	width: 17rem;
	aspect-ratio: 1;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 50%;
	box-shadow: 0 0 0 3.5rem rgba(255, 255, 255, 0.12);
	content: "";
	pointer-events: none;
}

.experience-panel__copy,
.experience-panel__equation,
.experience-panel__flow {
	position: relative;
	z-index: 2;
}

.experience-panel__copy {
	display: grid;
	grid-column: 1 / -1;
	grid-row: 2;
	grid-template-columns: minmax(0, 1.22fr) minmax(18rem, 0.78fr);
	padding: clamp(0.6rem, 1.6vw, 1.4rem);
	align-items: stretch;
	gap: clamp(1rem, 2.4vw, 2rem);
}

.experience-panel__copy > p {
	max-width: none;
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(1.04rem, 1.4vw, 1.22rem);
	line-height: 1.65;
}

.experience-panel__copy > strong {
	display: block;
	max-width: none;
	margin-top: 0;
	padding: 1.1rem 1.2rem;
	align-self: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.56);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: var(--color-purple);
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.58;
}

.experience-panel__equation {
	display: grid;
	grid-column: 2;
	grid-row: 1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: minmax(4.8rem, 1fr) auto minmax(5.2rem, 0.95fr);
	padding: 1.05rem;
	align-content: stretch;
	gap: 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 1.65rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(237, 232, 247, 0.66));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 22px 54px rgba(49, 39, 83, 0.1);
}

.experience-panel__equation > span,
.experience-panel__equation > strong {
	display: grid;
	min-height: 4.15rem;
	padding: 0.85rem 1rem;
	align-items: center;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.68);
	font-size: 0.86rem;
	font-weight: 750;
	line-height: 1.25;
}

.experience-panel__equation > span:nth-of-type(2) {
	background: linear-gradient(145deg, rgba(238, 234, 248, 0.86), rgba(255, 255, 255, 0.72));
	color: var(--color-purple);
}

.experience-panel__equation > span:nth-of-type(1) {
	grid-column: 1;
	grid-row: 1;
}

.experience-panel__equation > span:nth-of-type(2) {
	grid-column: 2;
	grid-row: 1;
}

.experience-panel__equation > i {
	display: grid;
	width: 2.25rem;
	aspect-ratio: 1;
	place-items: center;
	justify-self: center;
	align-self: center;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 20px rgba(49, 39, 83, 0.09);
	color: rgba(86, 77, 137, 0.52);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 850;
	text-align: center;
}

.experience-panel__equation > i:first-of-type {
	z-index: 3;
	grid-column: 1 / -1;
	grid-row: 1;
}

.experience-panel__equation > i:last-of-type {
	grid-column: 1 / -1;
	grid-row: 2;
}

.experience-panel__equation > strong {
	grid-column: 1 / -1;
	grid-row: 3;
	min-height: 5.2rem;
	border-color: rgba(255, 255, 255, 0.64);
	background: linear-gradient(112deg, var(--color-purple), #76539e 56%, var(--color-pink));
	box-shadow: 0 15px 34px rgba(86, 77, 137, 0.2);
	color: #fff;
	font-size: clamp(1.1rem, 1.6vw, 1.4rem);
	letter-spacing: -0.035em;
}

.experience-panel__flow {
	display: grid;
	grid-column: 1 / -1;
	grid-row: 3;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	gap: 0.7rem;
	list-style: none;
}

.experience-panel__flow li {
	position: relative;
	display: grid;
	min-height: 7rem;
	padding: 1rem;
	align-content: start;
	gap: 0.25rem;
	border: 1px solid rgba(255, 255, 255, 0.84);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 12px 28px rgba(49, 39, 83, 0.045);
}

.experience-panel__flow li::after {
	position: absolute;
	z-index: 3;
	right: -0.64rem;
	top: 50%;
	width: 0.58rem;
	height: 1px;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
	content: "";
}

.experience-panel__flow li:last-child::after {
	display: none;
}

.experience-panel__flow span {
	position: static;
	width: fit-content;
	margin-bottom: 0.35rem;
	color: var(--color-purple);
	font-size: 0.6rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.experience-panel__flow strong {
	font-size: 0.96rem;
	letter-spacing: -0.025em;
}

.experience-panel__flow small {
	color: var(--color-ink-soft);
	font-size: 0.66rem;
	line-height: 1.35;
}

.service-page--build .delivery-line li,
.service-page--build .delivery-line li:last-child {
	min-height: 8.4rem;
	padding: 0.95rem;
	gap: 0.42rem;
}

.service-page--build .delivery-line li > span {
	margin-bottom: 0.08rem;
}

@media (max-width: 900px) {
	.experience-panel {
		grid-template-columns: 1fr;
	}

	.experience-panel .experience-heading,
	.experience-panel__copy,
	.experience-panel__equation {
		grid-column: 1;
		grid-row: auto;
	}

	.experience-panel__flow {
		grid-row: auto;
	}

	.experience-panel__equation {
		grid-template-columns: 1fr auto 1fr auto minmax(13rem, 1.2fr);
		grid-template-rows: auto;
		align-items: stretch;
	}

	.experience-panel__equation > span:nth-of-type(1),
	.experience-panel__equation > span:nth-of-type(2),
	.experience-panel__equation > i:first-of-type,
	.experience-panel__equation > i:last-of-type,
	.experience-panel__equation > strong {
		grid-column: auto;
		grid-row: auto;
	}

	.experience-panel__equation > i {
		width: auto;
		aspect-ratio: auto;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.experience-panel__equation > span,
	.experience-panel__equation > strong {
		min-height: 5.5rem;
	}

	.experience-panel__equation > i {
		display: grid;
		place-items: center;
	}
}

@media (max-width: 700px) {
	.experience-heading h2 {
		font-size: clamp(2.3rem, 10vw, 3.1rem);
	}

	.experience-panel {
		padding: 1rem;
		border-radius: 1.6rem;
	}

	.experience-panel__copy {
		grid-template-columns: 1fr;
		padding: 0.5rem;
	}

	.experience-panel__copy > strong {
		margin-top: 0.35rem;
	}

	.experience-panel__equation {
		grid-template-columns: 1fr;
	}

	.experience-panel__equation > i {
		min-height: 1.2rem;
	}

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

	.experience-panel__flow li:nth-child(2)::after {
		display: none;
	}

	.service-page--build .delivery-line li,
	.service-page--build .delivery-line li:last-child {
		min-height: 8.15rem;
		padding: 0.85rem;
		gap: 0.38rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.build-macbook,
	.build-macbook__lid,
	.build-macbook__screen {
		transition: none;
		filter: none;
		opacity: 1;
	}

	.build-macbook {
		transform: translate(-50%, -48%);
	}

	.build-macbook__lid {
		transform: perspective(1200px) rotateX(0deg);
	}
}

/* Weboldalkészítés v6 — integrated experience heading. */

.experience-panel .experience-heading {
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
	max-width: none;
	padding: clamp(0.55rem, 1.4vw, 1.15rem);
}

/* --------------------------------------------------------------------------
   Weboldal-üzemeltetés v2
   One operating partner from infrastructure to day-to-day content changes.
   -------------------------------------------------------------------------- */

.service-page--care-v2 .care-v2-hero {
	position: relative;
	display: flex;
	min-height: min(58rem, 100svh);
	padding: calc(var(--header-height) + clamp(4rem, 7vw, 7rem)) 0 clamp(4.5rem, 7vw, 7rem);
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 84% 14%, rgba(242, 41, 91, 0.13), transparent 27%),
		radial-gradient(circle at 68% 76%, rgba(86, 77, 137, 0.14), transparent 35%),
		linear-gradient(135deg, #fcfcfe 0%, #f3f0f9 58%, #fff3f7 100%);
}

.service-page--care-v2 .care-v2-hero::after {
	display: none;
	background: none;
	content: none;
}

.service-page--care-v2 {
	overflow: clip;
}

.care-v2-hero .build-hero__icon-field {
	left: 42%;
	opacity: 0.28;
}

.care-v2-hero .hero-tech-app {
	width: clamp(3.9rem, 5vw, 4.8rem);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 18px 38px rgba(49, 39, 83, 0.12);
}

.care-v2-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(27rem, 0.82fr);
	gap: clamp(2rem, 4vw, 4.8rem);
	align-items: center;
}

.service-page--care-v2 .care-v2-hero h1 {
	max-width: 15.5ch;
	padding-bottom: 0.12em;
	font-size: clamp(3.15rem, 4.3vw, 4.95rem);
	letter-spacing: -0.068em;
	line-height: 1.08;
}

.service-page--care-v2 .care-v2-hero h1 span {
	display: block;
	width: fit-content;
	margin-top: 0.09em;
	background: linear-gradient(105deg, var(--color-purple) 4%, #7860a3 47%, var(--color-pink) 96%);
	background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: -0.072em;
}

.care-v2-hero .service-hero__lead {
	max-width: 46rem;
	margin: 1.7rem 0 2rem;
	font-size: clamp(1.04rem, 1.35vw, 1.22rem);
	line-height: 1.65;
}

.care-v2-hero__visual {
	position: relative;
	min-height: 40rem;
}

.care-workspace {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: min(39rem, 98%);
	height: auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	outline: 1px solid rgba(86, 77, 137, 0.09);
	outline-offset: -0.38rem;
	border-radius: 2.15rem;
	background:
		radial-gradient(circle at 92% 8%, rgba(242, 41, 91, 0.1), transparent 25%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 234, 248, 0.7));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 0 0 0.42rem rgba(255, 255, 255, 0.22),
		0 42px 100px rgba(49, 39, 83, 0.2);
	transform: translate(-50%, -50%) rotate(-1.3deg);
	backdrop-filter: blur(28px) saturate(165%);
}

.care-workspace::after {
	position: absolute;
	left: -30%;
	top: -15%;
	width: 30%;
	height: 140%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
	content: "";
	transform: skewX(-16deg);
	animation: care-workspace-glint 7s ease-in-out infinite;
	pointer-events: none;
}

@keyframes care-workspace-glint {
	0%, 35% { transform: translateX(-120%) skewX(-16deg); }
	75%, 100% { transform: translateX(510%) skewX(-16deg); }
}

.care-workspace__bar {
	display: grid;
	grid-template-columns: 1fr minmax(8rem, auto) 1fr;
	height: 3.25rem;
	padding: 0 1.25rem;
	align-items: center;
	border-bottom: 1px solid rgba(86, 77, 137, 0.09);
	background: rgba(255, 255, 255, 0.62);
}

.care-workspace__bar > span {
	display: flex;
	gap: 0.38rem;
}

.care-workspace__bar > span i {
	width: 0.46rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.2);
}

.care-workspace__bar > span i:nth-child(2) {
	background: rgba(242, 41, 91, 0.26);
}

.care-workspace__bar small {
	padding: 0.42rem 0.85rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.65);
	color: var(--color-ink-soft);
	font-size: 0.58rem;
	font-weight: 650;
	text-align: center;
}

.care-workspace__bar b {
	justify-self: end;
	color: var(--color-purple);
	font-size: 0.56rem;
	letter-spacing: 0.04em;
}

.care-workspace__body {
	position: relative;
	height: calc(100% - 3.25rem);
	padding: 1.45rem;
	background:
		radial-gradient(circle at 84% 17%, rgba(242, 41, 91, 0.12), transparent 27%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.68), rgba(255, 255, 255, 0.78));
}

.care-workspace__heading {
	display: flex;
	padding: 0.25rem 0.15rem 1.1rem;
	align-items: center;
	gap: 0.75rem;
}

.care-workspace__mark {
	display: grid;
	width: 2.6rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 22px rgba(86, 77, 137, 0.1);
}

.care-workspace__mark img {
	width: 1.55rem;
	height: 1.55rem;
	object-fit: contain;
}

.care-workspace__heading p {
	margin: 0;
}

.care-workspace__heading small,
.care-workspace__heading strong {
	display: block;
}

.care-workspace__heading small {
	margin-bottom: 0.1rem;
	color: var(--color-ink-soft);
	font-size: 0.58rem;
}

.care-workspace__heading strong {
	font-size: 1.05rem;
	letter-spacing: -0.035em;
}

.care-workspace__services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 0.72rem;
}

.care-workspace__service {
	display: flex;
	min-width: 0;
	padding: 0.85rem;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 1.25rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.79), rgba(247, 245, 251, 0.64));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 15px 34px rgba(49, 39, 83, 0.07);
}

.care-workspace__service--maintenance {
	background:
		radial-gradient(circle at 82% 12%, rgba(242, 41, 91, 0.12), transparent 30%),
		linear-gradient(145deg, rgba(239, 234, 249, 0.9), rgba(255, 255, 255, 0.76));
}

.care-workspace__service > p {
	margin: 0.55rem 0 0;
}

.care-workspace__service small,
.care-workspace__service strong,
.care-workspace__service span {
	display: block;
}

.care-workspace__service small {
	margin-bottom: 0.36rem;
	color: var(--color-purple);
	font-size: 0.52rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.care-workspace__service strong {
	min-height: 2.35em;
	font-size: 0.72rem;
	letter-spacing: -0.025em;
	line-height: 1.17;
}

.care-workspace__service p > span {
	margin-top: 0.3rem;
	color: var(--color-ink-soft);
	font-size: 0.5rem;
	line-height: 1.3;
}

.care-cpanel-console {
	position: relative;
	display: grid;
	width: 7.6rem;
	aspect-ratio: 1;
	margin: 0.15rem auto 0.5rem;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 2rem;
	background:
		radial-gradient(circle at 24% 18%, rgba(255, 108, 44, 0.13), transparent 31%),
		rgba(255, 255, 255, 0.52);
	box-shadow:
		inset 0 0 0 0.58rem rgba(238, 234, 248, 0.43),
		0 12px 25px rgba(49, 39, 83, 0.06);
}

.care-cpanel-console::before {
	position: absolute;
	inset: 0.62rem;
	border: 1px solid rgba(255, 108, 44, 0.2);
	border-radius: 1.55rem;
	background:
		linear-gradient(90deg, transparent 49%, rgba(86, 77, 137, 0.06) 50%, transparent 51%),
		linear-gradient(transparent 49%, rgba(86, 77, 137, 0.06) 50%, transparent 51%);
	background-size: 1.25rem 1.25rem;
	content: "";
}

.care-cpanel-console > span {
	position: relative;
	z-index: 2;
	display: grid;
	width: 3.75rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.96);
	border-radius: 1.12rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow:
		0 13px 27px rgba(86, 77, 137, 0.14),
		0 0 0 0.38rem rgba(255, 255, 255, 0.25);
}

.care-cpanel-console img {
	width: 2.35rem;
	height: 2.35rem;
	object-fit: contain;
}

.care-cpanel-console > i {
	position: absolute;
	z-index: 3;
	width: 0.58rem;
	aspect-ratio: 1;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #ff6c2c;
	box-shadow: 0 4px 10px rgba(86, 77, 137, 0.18);
}

.care-cpanel-console > i:nth-of-type(1) {
	right: 0.7rem;
	top: 1.12rem;
}

.care-cpanel-console > i:nth-of-type(2) {
	left: 0.62rem;
	top: 3.45rem;
	background: var(--color-purple);
}

.care-cpanel-console > i:nth-of-type(3) {
	right: 1.28rem;
	bottom: 0.62rem;
	background: var(--color-pink);
}

.care-wp-orbit {
	position: relative;
	display: grid;
	width: 7.6rem;
	aspect-ratio: 1;
	margin: 0.15rem auto 0.5rem;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 0 0 0.6rem rgba(238, 234, 248, 0.48);
}

.care-wp-orbit::before,
.care-wp-orbit::after {
	position: absolute;
	inset: 0.72rem;
	border: 2px solid transparent;
	border-top-color: rgba(86, 77, 137, 0.62);
	border-right-color: rgba(242, 41, 91, 0.38);
	border-radius: 50%;
	content: "";
	animation: care-orbit 9s linear infinite;
}

.care-wp-orbit::after {
	inset: 0.34rem;
	border-top-color: rgba(242, 41, 91, 0.24);
	border-right-color: transparent;
	animation-direction: reverse;
	animation-duration: 13s;
}

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

.care-wp-orbit > span {
	display: grid;
	width: 3.55rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 1.08rem;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 12px 26px rgba(86, 77, 137, 0.14);
}

.care-wp-orbit img {
	width: 2.25rem;
	height: 2.25rem;
	object-fit: contain;
}

.care-wp-orbit > i,
.care-wp-orbit > b {
	position: absolute;
	z-index: 2;
	width: 0.58rem;
	aspect-ratio: 1;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--color-purple);
	box-shadow: 0 4px 10px rgba(86, 77, 137, 0.2);
}

.care-wp-orbit > i {
	right: 0.68rem;
	top: 1rem;
}

.care-wp-orbit > b {
	left: 0.52rem;
	bottom: 1.3rem;
	background: var(--color-pink);
}

.care-editor {
	position: relative;
	height: 7.6rem;
	margin: 0.15rem 0 0.5rem;
	padding: 2.3rem 0.8rem 0.75rem;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 10px 22px rgba(49, 39, 83, 0.055);
}

.care-editor > i {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1.45rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	background:
		radial-gradient(circle at 0.65rem 50%, rgba(86, 77, 137, 0.28) 0 0.11rem, transparent 0.12rem),
		radial-gradient(circle at 1.05rem 50%, rgba(242, 41, 91, 0.24) 0 0.11rem, transparent 0.12rem),
		radial-gradient(circle at 1.45rem 50%, rgba(86, 77, 137, 0.14) 0 0.11rem, transparent 0.12rem),
		rgba(247, 245, 251, 0.86);
}

.care-editor > span {
	display: block;
	height: 0.42rem;
	margin-bottom: 0.5rem;
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.2);
}

.care-editor > span:nth-of-type(1) { width: 76%; background: linear-gradient(90deg, var(--color-purple), rgba(86, 77, 137, 0.22)); }
.care-editor > span:nth-of-type(2) { width: 92%; }
.care-editor > span:nth-of-type(3) { width: 58%; }

.care-editor > b {
	display: block;
	width: 3.4rem;
	height: 1.25rem;
	margin-top: 0.85rem;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), var(--color-pink));
}

.care-editor::after {
	position: absolute;
	right: 1.2rem;
	bottom: 1.05rem;
	width: 1.15rem;
	height: 1.55rem;
	background: linear-gradient(155deg, var(--color-purple), var(--color-pink));
	clip-path: polygon(0 0, 100% 68%, 56% 72%, 38% 100%);
	content: "";
	filter: drop-shadow(0 4px 6px rgba(86, 77, 137, 0.2));
	animation: care-editor-cursor 3.8s ease-in-out infinite;
}

@keyframes care-editor-cursor {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-1.1rem, -1.7rem); }
}

.care-v2-hero__float {
	position: absolute;
	z-index: 4;
	display: grid;
	min-width: 11.8rem;
	padding: 0.95rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.2rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(238, 234, 248, 0.65));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 20px 45px rgba(49, 39, 83, 0.12);
	backdrop-filter: blur(20px) saturate(155%);
}

.care-v2-hero__float small {
	color: var(--color-purple);
	font-size: 0.55rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.care-v2-hero__float strong {
	font-size: 0.78rem;
}

.care-v2-hero__float--backup {
	left: -2.8rem;
	top: 3.8rem;
	transform: rotate(-3deg);
}

.care-v2-hero__float--support {
	right: -2.6rem;
	bottom: 4.6rem;
	transform: rotate(2.5deg);
}

.service-page--care-v2 .proof-bar__grid > div:nth-child(3) strong {
	max-width: 10rem;
	font-size: clamp(1.02rem, 1.5vw, 1.38rem);
	line-height: 1.05;
}

.service-page--care-v2 .proof-bar__grid > div:nth-child(4) strong {
	max-width: none;
	white-space: nowrap;
	font-size: clamp(1.25rem, 1.75vw, 1.65rem);
	letter-spacing: -0.045em;
}

.care-pillars {
	background:
		radial-gradient(circle at 5% 85%, rgba(86, 77, 137, 0.075), transparent 29%),
		var(--color-white);
}

.care-pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.care-pillar-card {
	position: relative;
	display: flex;
	min-height: 35.5rem;
	padding: clamp(1.2rem, 2vw, 1.75rem);
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: clamp(1.55rem, 2.4vw, 2rem);
	background:
		radial-gradient(circle at 92% 4%, rgba(242, 41, 91, 0.08), transparent 28%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 241, 249, 0.72));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 24px 60px rgba(49, 39, 83, 0.075);
	backdrop-filter: blur(22px) saturate(150%);
}

.care-pillar-card > *,
.care-pillar-card__copy,
.care-rhythm-panel > *,
.care-rhythm-list,
.care-rhythm-list li > div,
.care-takeover__panel > *,
.care-takeover__steps,
.care-takeover__steps li > div {
	min-width: 0;
}

.care-pillar-card--featured {
	background:
		radial-gradient(circle at 88% 7%, rgba(242, 41, 91, 0.13), transparent 29%),
		linear-gradient(145deg, rgba(236, 231, 247, 0.92), rgba(255, 255, 255, 0.82));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 30px 72px rgba(67, 50, 113, 0.12);
}

.care-pillar-card > header {
	display: flex;
	min-height: 2.5rem;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.care-pillar-card > header span {
	display: grid;
	width: 2.45rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 0.8rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 234, 248, 0.78));
	box-shadow: 0 8px 17px rgba(86, 77, 137, 0.08);
	color: var(--color-purple);
	font-size: 0.66rem;
	font-weight: 850;
}

.care-pillar-card > header small {
	color: var(--color-purple);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.care-pillar-card__visual {
	position: relative;
	display: grid;
	height: 15rem;
	margin: 1.45rem 0 1.5rem;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 1.35rem;
	background:
		radial-gradient(circle at 82% 18%, rgba(242, 41, 91, 0.12), transparent 27%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.78), rgba(255, 255, 255, 0.78));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 15px 34px rgba(49, 39, 83, 0.055);
}

.care-pillar-card__copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-end;
}

.care-pillar-card__copy h3 {
	max-width: 18ch;
	margin: 0 0 0.9rem;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.care-pillar-card__copy p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.93rem;
	line-height: 1.62;
}

.care-pillar-card__visual--hosting {
	align-content: center;
	gap: 0.65rem;
}

.care-pillar-domain {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(15rem, 76%);
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 22px rgba(49, 39, 83, 0.07);
}

.care-pillar-domain small {
	color: var(--color-purple);
	font-size: 0.5rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.care-pillar-domain strong {
	font-size: 0.78rem;
}

.care-pillar-server {
	display: grid;
	width: min(12.5rem, 66%);
	gap: 0.34rem;
}

.care-pillar-server > i {
	display: flex;
	height: 2.05rem;
	padding: 0 0.65rem;
	align-items: center;
	justify-content: flex-end;
	gap: 0.3rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 0.58rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(218, 211, 235, 0.7));
	box-shadow: 0 5px 12px rgba(49, 39, 83, 0.055);
}

.care-pillar-server > i::before {
	width: 45%;
	height: 0.3rem;
	margin-right: auto;
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.22);
	content: "";
}

.care-pillar-server b {
	width: 0.38rem;
	aspect-ratio: 1;
	border: 1px solid rgba(86, 77, 137, 0.24);
	border-radius: 50%;
	background: #fff;
}

.care-pillar-card__visual--maintenance {
	grid-template-columns: minmax(7rem, 0.8fr) minmax(8rem, 1fr);
	padding: 1rem;
	gap: 0.7rem;
}

.care-pillar-wp {
	position: relative;
	display: grid;
	width: 7.4rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: inset 0 0 0 0.6rem rgba(238, 234, 248, 0.52);
}

.care-pillar-wp::before {
	position: absolute;
	inset: 0.45rem;
	border: 3px solid transparent;
	border-top-color: var(--color-purple);
	border-right-color: rgba(242, 41, 91, 0.48);
	border-radius: 50%;
	content: "";
}

.care-pillar-wp > span {
	display: grid;
	width: 3.7rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 1.12rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 26px rgba(86, 77, 137, 0.13);
}

.care-pillar-wp img {
	width: 2.35rem;
	height: 2.35rem;
	object-fit: contain;
}

.care-pillar-wp > i {
	position: absolute;
	right: 0.4rem;
	top: 1rem;
	width: 0.72rem;
	aspect-ratio: 1;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--color-pink);
	box-shadow: 0 5px 12px rgba(86, 77, 137, 0.2);
}

.care-pillar-card__visual--maintenance ul {
	display: grid;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 0.52rem;
	list-style: none;
}

.care-pillar-card__visual--maintenance li {
	padding: 0.7rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.78rem;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 7px 16px rgba(49, 39, 83, 0.04);
}

.care-pillar-card__visual--maintenance li span {
	display: block;
	margin-bottom: 0.38rem;
	font-size: 0.54rem;
	font-weight: 750;
}

.care-pillar-card__visual--maintenance li b {
	display: block;
	height: 0.32rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-purple) 0 82%, rgba(86, 77, 137, 0.1) 82%);
}

.care-pillar-card__visual--maintenance li:nth-child(2) b {
	background: linear-gradient(90deg, #816eb1 0 92%, rgba(86, 77, 137, 0.1) 92%);
}

.care-pillar-card__visual--maintenance li:nth-child(3) b {
	background: linear-gradient(90deg, var(--color-pink) 0 76%, rgba(86, 77, 137, 0.1) 76%);
}

.care-pillar-editor {
	width: min(17rem, 80%);
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 18px 38px rgba(49, 39, 83, 0.09);
	transform: rotate(-2deg);
}

.care-pillar-editor > span {
	display: flex;
	height: 1.65rem;
	padding: 0 0.7rem;
	align-items: center;
	gap: 0.3rem;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	background: rgba(247, 245, 251, 0.86);
}

.care-pillar-editor > span i {
	width: 0.36rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.2);
}

.care-pillar-editor > span i:nth-child(2) {
	background: rgba(242, 41, 91, 0.26);
}

.care-pillar-editor > div {
	position: relative;
	display: grid;
	grid-template-columns: 0.68fr 1fr;
	height: 9.3rem;
	padding: 1rem;
	gap: 0.8rem;
}

.care-pillar-editor > div > b {
	border-radius: 0.65rem;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.7), rgba(242, 41, 91, 0.55));
}

.care-pillar-editor p {
	margin: 0;
}

.care-pillar-editor p i {
	display: block;
	height: 0.45rem;
	margin: 0.22rem 0 0.58rem;
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.2);
}

.care-pillar-editor p i:first-child {
	width: 72%;
	background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.care-pillar-editor p i:nth-child(3) {
	width: 62%;
}

.care-pillar-editor em {
	position: absolute;
	right: 1.1rem;
	bottom: 1.1rem;
	width: 3.6rem;
	height: 1.25rem;
	border-radius: 999px;
	background: linear-gradient(105deg, var(--color-purple), var(--color-pink));
}

.care-pillar-editor::after {
	position: absolute;
	right: 3.25rem;
	bottom: 2rem;
	width: 1.1rem;
	height: 1.5rem;
	background: #fff;
	clip-path: polygon(0 0, 100% 68%, 56% 72%, 38% 100%);
	content: "";
	filter: drop-shadow(0 2px 4px rgba(49, 39, 83, 0.24));
}

.care-rhythm-section {
	background:
		radial-gradient(circle at 88% 16%, rgba(242, 41, 91, 0.07), transparent 24%),
		linear-gradient(180deg, #f7f6f9, #f4f2f7);
}

.care-rhythm-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
	padding: clamp(1.2rem, 3vw, 2.5rem);
	overflow: hidden;
	gap: clamp(1.5rem, 4vw, 4rem);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: clamp(1.8rem, 3vw, 2.6rem);
	background:
		radial-gradient(circle at 7% 94%, rgba(86, 77, 137, 0.1), transparent 28%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.79), rgba(238, 234, 248, 0.68));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 35px 85px rgba(49, 39, 83, 0.1);
	backdrop-filter: blur(24px) saturate(155%);
}

.care-rhythm-panel__intro {
	display: flex;
	padding: clamp(0.5rem, 2vw, 1.3rem);
	flex-direction: column;
	justify-content: center;
}

.care-rhythm-panel__intro h2 {
	max-width: 14ch;
	margin-bottom: 1.25rem;
}

.care-rhythm-panel__intro > p:not(.eyebrow) {
	max-width: 34rem;
	color: var(--color-ink-soft);
	line-height: 1.68;
}

.care-rhythm-panel__contact {
	display: grid;
	margin-top: 2rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.1rem;
	background: rgba(255, 255, 255, 0.62);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 12px 28px rgba(49, 39, 83, 0.055);
}

.care-rhythm-panel__contact span {
	color: var(--color-purple);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.care-rhythm-panel__contact strong {
	margin-top: 0.25rem;
	font-size: 1.05rem;
	letter-spacing: -0.025em;
}

.care-rhythm-panel__contact small {
	color: var(--color-ink-soft);
}

.care-rhythm-list {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 0.72rem;
	list-style: none;
}

.care-rhythm-list li {
	display: grid;
	grid-template-columns: 3.2rem minmax(0, 1fr);
	min-height: 8.6rem;
	padding: 1.15rem;
	align-items: center;
	gap: 1rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.68);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 12px 28px rgba(49, 39, 83, 0.045);
}

.care-rhythm-list li > span {
	display: grid;
	width: 3.1rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(224, 218, 239, 0.82));
	box-shadow: 0 10px 22px rgba(86, 77, 137, 0.09);
	color: var(--color-purple);
	font-size: 0.68rem;
	font-weight: 850;
}

.care-rhythm-list small,
.care-rhythm-list strong {
	display: block;
}

.care-rhythm-list small {
	margin-bottom: 0.18rem;
	color: var(--color-purple);
	font-size: 0.55rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.care-rhythm-list strong {
	font-size: 1.02rem;
	letter-spacing: -0.025em;
}

.care-rhythm-list p {
	margin: 0.35rem 0 0;
	color: var(--color-ink-soft);
	font-size: 0.82rem;
	line-height: 1.5;
}

.care-systems-section {
	position: relative;
	background:
		radial-gradient(circle at 90% 12%, rgba(242, 41, 91, 0.065), transparent 25%),
		radial-gradient(circle at 6% 88%, rgba(86, 77, 137, 0.07), transparent 28%),
		var(--color-white);
}

.care-systems-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.care-system-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 34rem;
	padding: clamp(1.2rem, 2.2vw, 1.8rem);
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: clamp(1.55rem, 2.4vw, 2rem);
	background:
		radial-gradient(circle at 92% 5%, rgba(242, 41, 91, 0.075), transparent 27%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.89), rgba(244, 241, 249, 0.73));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 24px 60px rgba(49, 39, 83, 0.075);
	backdrop-filter: blur(22px) saturate(150%);
}

.care-system-card--featured {
	background:
		radial-gradient(circle at 87% 7%, rgba(242, 41, 91, 0.13), transparent 29%),
		linear-gradient(145deg, rgba(236, 231, 247, 0.92), rgba(255, 255, 255, 0.82));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 30px 72px rgba(67, 50, 113, 0.12);
}

.care-system-card__interface {
	position: relative;
	display: grid;
	height: 14rem;
	margin-bottom: 1.75rem;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 1.35rem;
	background:
		radial-gradient(circle at 82% 18%, rgba(242, 41, 91, 0.11), transparent 28%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.78), rgba(255, 255, 255, 0.8));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 15px 34px rgba(49, 39, 83, 0.055);
}

.care-system-card__label {
	width: fit-content;
	margin: 0 0 1rem;
	padding: 0.46rem 0.65rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.72);
	color: var(--color-purple);
	font-size: 0.62rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.care-system-card h3 {
	max-width: 18ch;
	margin: 0 0 0.9rem;
	font-size: clamp(1.35rem, 2vw, 1.72rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.care-system-card > p:last-child {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.92rem;
	line-height: 1.62;
}

.care-system-card__interface--server {
	align-content: center;
	gap: 0.42rem;
}

.care-system-card__interface--server > span {
	position: absolute;
	left: 1rem;
	top: 1rem;
	padding: 0.4rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 0.7rem;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 7px 16px rgba(49, 39, 83, 0.06);
	color: var(--color-purple);
	font-size: 0.58rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.care-system-card__interface--server > i {
	display: flex;
	width: min(14rem, 72%);
	height: 2.25rem;
	padding: 0 0.72rem;
	align-items: center;
	justify-content: flex-end;
	gap: 0.3rem;
	border: 1px solid rgba(86, 77, 137, 0.11);
	border-radius: 0.64rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(218, 211, 235, 0.7));
	box-shadow: 0 6px 14px rgba(49, 39, 83, 0.06);
}

.care-system-card__interface--server > i::before {
	width: 48%;
	height: 0.3rem;
	margin-right: auto;
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.22);
	content: "";
}

.care-system-card__interface--server b {
	width: 0.4rem;
	aspect-ratio: 1;
	border: 1px solid rgba(86, 77, 137, 0.24);
	border-radius: 50%;
	background: #fff;
}

.care-system-card__interface--mainwp {
	grid-template-columns: minmax(6rem, 0.8fr) minmax(7rem, 1fr);
	padding: 1.25rem;
	gap: 0.75rem;
}

.care-system-card__interface--mainwp > span {
	display: grid;
	width: 6.4rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 36%, transparent 37%),
		conic-gradient(var(--color-purple) 0 62%, rgba(86, 77, 137, 0.12) 62% 84%, var(--color-pink) 84%);
	box-shadow:
		inset 0 0 0 0.62rem rgba(255, 255, 255, 0.7),
		0 12px 26px rgba(86, 77, 137, 0.12);
	color: var(--color-purple);
	font-family: Georgia, serif;
	font-size: 2rem;
	font-weight: 800;
}

.care-system-card__interface--mainwp > div {
	display: grid;
	width: 100%;
	gap: 0.65rem;
}

.care-system-card__interface--mainwp i {
	display: block;
	height: 2.25rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.7rem;
	background:
		linear-gradient(90deg, rgba(86, 77, 137, 0.45) 0 72%, transparent 72%) 0.65rem 50% / calc(100% - 1.3rem) 0.32rem no-repeat,
		rgba(255, 255, 255, 0.72);
	box-shadow: 0 6px 14px rgba(49, 39, 83, 0.04);
}

.care-system-card__interface--mainwp i:nth-child(2) {
	background:
		linear-gradient(90deg, rgba(242, 41, 91, 0.5) 0 86%, transparent 86%) 0.65rem 50% / calc(100% - 1.3rem) 0.32rem no-repeat,
		rgba(255, 255, 255, 0.72);
}

.care-system-card__interface--mainwp > b {
	position: absolute;
	right: 1rem;
	bottom: 0.85rem;
	padding: 0.35rem 0.52rem;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 7px 16px rgba(49, 39, 83, 0.06);
	color: var(--color-purple);
	font-size: 0.55rem;
}

.care-system-card__interface--tickets {
	padding: 1.2rem;
	align-content: center;
}

.care-system-card__interface--tickets > span {
	position: absolute;
	left: 1rem;
	top: 1rem;
	padding: 0.4rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 0.7rem;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 7px 16px rgba(49, 39, 83, 0.06);
	color: var(--color-purple);
	font-size: 0.58rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.care-system-card__interface--tickets ol {
	display: grid;
	width: min(16rem, 82%);
	margin: 1.6rem 0 0;
	padding: 0;
	gap: 0.52rem;
	list-style: none;
}

.care-system-card__interface--tickets li {
	display: grid;
	grid-template-columns: 2rem 1fr;
	height: 2.55rem;
	padding: 0.42rem;
	align-items: center;
	gap: 0.55rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 7px 16px rgba(49, 39, 83, 0.04);
}

.care-system-card__interface--tickets li i {
	display: grid;
	width: 1.75rem;
	aspect-ratio: 1;
	place-items: center;
	border-radius: 0.55rem;
	background: rgba(238, 234, 248, 0.9);
	color: var(--color-purple);
	font-size: 0.5rem;
	font-style: normal;
	font-weight: 850;
}

.care-system-card__interface--tickets li b {
	display: block;
	height: 0.35rem;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(86, 77, 137, 0.44), rgba(86, 77, 137, 0.12));
}

.care-system-card__interface--tickets li:nth-child(2) b {
	background: linear-gradient(90deg, rgba(242, 41, 91, 0.5), rgba(242, 41, 91, 0.12));
}

.care-license-panel {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	margin-top: 1.25rem;
	padding: 1.15rem 1.3rem;
	align-items: center;
	gap: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 1.25rem;
	background:
		radial-gradient(circle at 92% 10%, rgba(242, 41, 91, 0.08), transparent 30%),
		linear-gradient(145deg, rgba(238, 234, 248, 0.82), rgba(255, 255, 255, 0.86));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 16px 38px rgba(49, 39, 83, 0.06);
	backdrop-filter: blur(18px);
}

.care-license-panel__mark {
	display: grid;
	width: 3rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 0.92rem;
	background: linear-gradient(145deg, var(--color-purple), #7860a3 58%, var(--color-pink));
	box-shadow: 0 10px 24px rgba(86, 77, 137, 0.18);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 850;
}

.care-license-panel strong {
	display: block;
	margin-bottom: 0.18rem;
	font-size: 0.95rem;
}

.care-license-panel p {
	max-width: 56rem;
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.8rem;
	line-height: 1.5;
}

.care-license-panel > a {
	white-space: nowrap;
	color: var(--color-purple);
	font-size: 0.78rem;
	font-weight: 800;
}

.care-takeover {
	background: var(--color-white);
}

.care-takeover__panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	padding: clamp(1.2rem, 3.4vw, 3.2rem);
	gap: clamp(2rem, 5vw, 5rem);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: clamp(1.8rem, 3vw, 2.6rem);
	background:
		radial-gradient(circle at 94% 90%, rgba(242, 41, 91, 0.11), transparent 31%),
		linear-gradient(135deg, rgba(238, 234, 248, 0.84), rgba(255, 255, 255, 0.92) 62%, rgba(255, 240, 244, 0.75));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 34px 88px rgba(49, 39, 83, 0.1);
	backdrop-filter: blur(24px) saturate(155%);
}

.care-takeover__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.care-takeover__copy h2 {
	max-width: 15ch;
}

.care-takeover__copy > p:not(.eyebrow) {
	max-width: 37rem;
	margin: 1.25rem 0 1.7rem;
	color: var(--color-ink-soft);
	line-height: 1.65;
}

.care-takeover__copy .button {
	width: fit-content;
}

.care-takeover__steps {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 0.72rem;
	list-style: none;
}

.care-takeover__steps li {
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr);
	min-height: 8.75rem;
	padding: 1.15rem;
	align-items: center;
	gap: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.64);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 12px 28px rgba(49, 39, 83, 0.045);
}

.care-takeover__steps li > span {
	display: grid;
	width: 3.3rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 1rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(224, 218, 239, 0.84));
	box-shadow: 0 9px 20px rgba(86, 77, 137, 0.09);
	color: var(--color-purple);
	font-size: 0.68rem;
	font-weight: 850;
}

.care-takeover__steps strong {
	display: block;
	font-size: 1rem;
}

.care-takeover__steps p {
	margin: 0.32rem 0 0;
	color: var(--color-ink-soft);
	font-size: 0.84rem;
	line-height: 1.5;
}

.service-page--care-v2 .care-faq {
	background:
		radial-gradient(circle at 8% 84%, rgba(86, 77, 137, 0.07), transparent 25%),
		linear-gradient(180deg, #f8f7fa, #f5f4f7);
}

.service-page--care-v2 .faq-list details {
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 28px rgba(49, 39, 83, 0.04);
	transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-page--care-v2 .faq-list details[open] {
	border-color: rgba(117, 93, 166, 0.24);
	background:
		radial-gradient(circle at 96% 8%, rgba(242, 41, 91, 0.08), transparent 28%),
		linear-gradient(145deg, rgba(247, 243, 253, 0.94), rgba(255, 255, 255, 0.82));
	box-shadow: 0 18px 42px rgba(86, 77, 137, 0.08);
}

.service-page--care-v2 .faq-list summary {
	padding: 1.45rem 4.5rem 1.45rem 1.5rem;
}

.service-page--care-v2 .faq-list summary span {
	right: 1.25rem;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(255, 255, 255, 0.86);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 234, 248, 0.86));
	box-shadow: 0 8px 18px rgba(86, 77, 137, 0.1);
}

.service-page--care-v2 .faq-list details p {
	padding: 0 4.5rem 1.6rem 1.5rem;
	line-height: 1.65;
}

.care-final-cta {
	padding-top: clamp(3.5rem, 7vw, 7rem) !important;
	background: linear-gradient(180deg, #f5f4f7, #fff);
}

.care-final-cta__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: clamp(1.7rem, 4.5vw, 4rem);
	align-items: end;
	gap: clamp(2rem, 5vw, 5rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: clamp(1.8rem, 3vw, 2.7rem);
	background:
		radial-gradient(circle at 92% 8%, rgba(242, 41, 91, 0.11), transparent 29%),
		radial-gradient(circle at 7% 92%, rgba(86, 77, 137, 0.11), transparent 31%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(238, 234, 248, 0.72));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 34px 80px rgba(49, 39, 83, 0.12);
	color: var(--color-ink);
	backdrop-filter: blur(26px) saturate(160%);
}

.care-final-cta__panel .eyebrow,
.care-final-cta__panel p {
	color: var(--color-ink-soft);
}

.care-final-cta__panel h2 {
	max-width: 17ch;
	color: var(--color-ink);
}

.care-final-cta__panel p:not(.eyebrow) {
	max-width: 45rem;
	margin: 1.15rem 0 0;
	line-height: 1.65;
}

.care-final-cta__actions {
	display: grid;
	min-width: 15rem;
	justify-items: start;
	gap: 1rem;
}

.care-final-cta__actions .text-link {
	color: var(--color-purple);
}

@media (max-width: 1100px) {
	.service-page--care-v2 .care-v2-hero {
		min-height: auto;
	}

	.care-v2-hero__grid {
		grid-template-columns: 1fr;
	}

	.service-page--care-v2 .care-v2-hero h1 {
		max-width: 14ch;
	}

	.care-v2-hero__visual {
		width: min(100%, 48rem);
		min-height: 38rem;
		margin-inline: auto;
	}

	.care-v2-hero .build-hero__icon-field {
		left: 20%;
		opacity: 0.24;
	}

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

	.care-pillar-card:last-child {
		grid-column: 1 / -1;
		min-height: 34rem;
	}

	.care-pillar-card:last-child .care-pillar-card__visual,
	.care-pillar-card:last-child .care-pillar-card__copy {
		width: min(100%, 39rem);
		margin-inline: auto;
	}

	.care-rhythm-panel,
	.care-takeover__panel {
		grid-template-columns: 1fr;
	}

	.care-rhythm-panel__intro h2,
	.care-takeover__copy h2 {
		max-width: 19ch;
	}

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

	.care-system-card:last-child {
		grid-column: 1 / -1;
		min-height: 30rem;
	}

	.care-system-card:last-child .care-system-card__interface {
		width: min(100%, 42rem);
		margin-inline: auto;
	}
}

@media (max-width: 800px) {
	.care-pillar-grid {
		grid-template-columns: 1fr;
	}

	.care-pillar-card,
	.care-pillar-card:last-child {
		grid-column: auto;
		min-height: 34rem;
	}

	.care-license-panel {
		grid-template-columns: auto 1fr;
	}

	.care-license-panel > a {
		grid-column: 2;
	}

	.care-final-cta__panel {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.care-systems-grid {
		grid-template-columns: 1fr;
	}

	.care-system-card:last-child {
		grid-column: auto;
		min-height: 34rem;
	}
}

@media (max-width: 600px) {
	.service-page--care-v2 .care-v2-hero {
		padding-top: calc(var(--header-height) + 3.2rem);
	}

	.service-page--care-v2 .care-v2-hero h1 {
		max-width: 100%;
		font-size: clamp(2.48rem, 11vw, 3.15rem);
		letter-spacing: -0.06em;
	}

	.service-page--care-v2 .care-v2-hero h1 span {
		font-size: 1.02em;
		letter-spacing: -0.068em;
	}

	.care-v2-hero .build-hero__icon-field {
		top: 42%;
		right: -15rem;
		bottom: 1%;
		left: -7rem;
		opacity: 0.18;
	}

	.care-v2-hero .hero-tech-app {
		width: 3.75rem;
	}

	.care-v2-hero__visual {
		min-height: 42rem;
	}

	.care-workspace {
		width: min(21rem, 92%);
		height: auto;
		border-radius: 1.8rem;
		transform: translate(-50%, -50%);
	}

	.care-workspace__bar {
		grid-template-columns: auto 1fr;
		padding: 0 0.9rem;
		gap: 0.7rem;
	}

	.care-workspace__bar small {
		justify-self: stretch;
	}

	.care-workspace__bar b {
		display: none;
	}

	.care-workspace__body {
		padding: 1rem;
	}

	.care-workspace__heading {
		padding-bottom: 0.75rem;
	}

	.care-workspace__services {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.care-workspace__service {
		display: grid;
		grid-template-columns: 6.6rem minmax(0, 1fr);
		padding: 0.62rem;
		align-items: center;
		gap: 0.7rem;
	}

	.care-workspace__service > p {
		margin: 0;
	}

	.care-workspace__service strong {
		min-height: 0;
	}

	.care-cpanel-console {
		width: 5.7rem;
		margin: 0 auto;
		border-radius: 1.5rem;
	}

	.care-cpanel-console::before {
		inset: 0.46rem;
		border-radius: 1.16rem;
		background-size: 0.95rem 0.95rem;
	}

	.care-cpanel-console > span {
		width: 2.8rem;
		border-radius: 0.85rem;
	}

	.care-cpanel-console img {
		width: 1.8rem;
		height: 1.8rem;
	}

	.care-wp-orbit {
		width: 5.7rem;
		margin: 0 auto;
	}

	.care-wp-orbit > span {
		width: 2.8rem;
	}

	.care-wp-orbit img {
		width: 1.8rem;
		height: 1.8rem;
	}

	.care-editor {
		height: 5.8rem;
		margin: 0;
		padding-top: 2rem;
	}

	.care-editor > span {
		height: 0.3rem;
		margin-bottom: 0.35rem;
	}

	.care-editor > b {
		display: none;
	}

	.care-v2-hero__float {
		min-width: 9.5rem;
		padding: 0.75rem 0.8rem;
	}

	.care-v2-hero__float--backup {
		left: -0.1rem;
		top: 3.4rem;
	}

	.care-v2-hero__float--support {
		right: -0.1rem;
		bottom: 3.1rem;
	}

	.care-pillar-card,
	.care-pillar-card:last-child {
		min-height: 0;
		padding: 1rem;
		border-radius: 1.55rem;
	}

	.care-pillar-card__visual,
	.care-pillar-card:last-child .care-pillar-card__visual {
		width: 100%;
		height: 13rem;
		margin: 1rem 0 1.2rem;
	}

	.care-pillar-card:last-child .care-pillar-card__copy {
		width: 100%;
	}

	.care-pillar-card__visual--maintenance {
		grid-template-columns: 1fr 1fr;
	}

	.care-pillar-wp {
		width: 6rem;
	}

	.care-pillar-card__copy p {
		font-size: 0.88rem;
	}

	.care-rhythm-panel,
	.care-takeover__panel {
		padding: 1rem;
		border-radius: 1.65rem;
	}

	.care-rhythm-panel__intro {
		padding: 0.35rem;
	}

	.care-rhythm-list li,
	.care-takeover__steps li {
		grid-template-columns: 2.65rem minmax(0, 1fr);
		min-height: 0;
		padding: 0.9rem;
		gap: 0.8rem;
	}

	.care-rhythm-list li > span,
	.care-takeover__steps li > span {
		width: 2.55rem;
		border-radius: 0.8rem;
	}

	.care-system-card,
	.care-system-card:last-child {
		min-height: 0;
		padding: 1rem;
		border-radius: 1.55rem;
	}

	.care-system-card__interface,
	.care-system-card:last-child .care-system-card__interface {
		width: 100%;
		height: 12.5rem;
		margin: 0 0 1.25rem;
	}

	.care-system-card__interface--mainwp {
		grid-template-columns: minmax(5.5rem, 0.8fr) minmax(6.5rem, 1fr);
	}

	.care-system-card__interface--mainwp > span {
		width: 5.5rem;
	}

	.care-system-card > p:last-child {
		font-size: 0.88rem;
	}

	.service-page--care-v2 .proof-bar__grid > div:nth-child(3) strong {
		max-width: none;
		font-size: 1.2rem;
	}

	.service-page--care-v2 .proof-bar__grid > div {
		min-height: 6.8rem;
		padding: 1.15rem 1rem;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		gap: 0.38rem;
	}

	.service-page--care-v2 .proof-bar strong {
		font-size: 2rem;
	}

	.service-page--care-v2 .proof-bar span {
		max-width: none;
	}

	.care-license-panel {
		grid-template-columns: 1fr;
		padding: 1rem;
	}

	.care-license-panel > a {
		grid-column: auto;
		white-space: normal;
	}

	.service-page--care-v2 .faq-list summary {
		padding: 1.2rem 3.9rem 1.2rem 1.1rem;
	}

	.service-page--care-v2 .faq-list details p {
		padding: 0 1.1rem 1.35rem;
	}

	.care-final-cta__panel {
		padding: 1.4rem;
		border-radius: 1.65rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.care-workspace::after,
	.care-wp-orbit::before,
	.care-wp-orbit::after,
	.care-editor::after {
		animation: none;
	}
}

.experience-panel .experience-heading h2 {
	max-width: 20ch;
}

@media (max-width: 700px) {
	.experience-panel .experience-heading {
		padding: 0.5rem;
	}
}

/* --------------------------------------------------------------------------
   References v2 — a decision-stage portfolio, not a generic thumbnail wall.
   -------------------------------------------------------------------------- */

.references-page--v2 {
	overflow: clip;
}

.references-page--v2 > .section {
	padding-block: clamp(5.5rem, 8vw, 8rem);
}

.references-hero--v2 {
	position: relative;
	display: grid;
	min-height: min(58rem, 96svh);
	padding: calc(var(--header-height) + 3.5rem) 0 4rem;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 87% 20%, rgba(242, 41, 91, 0.11), transparent 26%),
		radial-gradient(circle at 62% 76%, rgba(86, 77, 137, 0.1), transparent 31%),
		linear-gradient(135deg, #fdfdfe 0%, #f5f2fa 58%, #fff7f9 100%);
}

.references-hero--v2::after {
	display: none;
}

.references-hero__ambient,
.references-hero__orb {
	position: absolute;
	pointer-events: none;
}

.references-hero__ambient {
	z-index: -1;
	inset: 0;
	overflow: hidden;
}

.references-hero__orb {
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 38% 62% 56% 44% / 43% 38% 62% 57%;
	filter: blur(0.2px);
}

.references-hero__orb--one {
	right: -11rem;
	top: -8rem;
	width: 39rem;
	height: 39rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(242, 41, 91, 0.07));
	transform: rotate(24deg);
}

.references-hero__orb--two {
	right: 31%;
	bottom: -24rem;
	width: 46rem;
	height: 46rem;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.045), rgba(255, 255, 255, 0.28));
	transform: rotate(-18deg);
}

.references-hero__logo-field {
	position: absolute;
	top: 8%;
	right: -10rem;
	bottom: 7%;
	left: 33%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0.24;
	transform: rotate(-4deg);
	mask-image: linear-gradient(90deg, transparent, #000 11%, #000 91%, transparent);
}

.references-hero__logo-row {
	overflow: hidden;
	padding-block: 0.9rem;
}

.references-hero__logo-track,
.references-hero__logo-set {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 1rem;
}

.references-hero__logo-track {
	animation: references-hero-logos-run 48s linear infinite;
	will-change: transform;
}

.references-hero__logo-row--reverse .references-hero__logo-track {
	animation-direction: reverse;
	animation-duration: 56s;
}

.references-hero__client-logo {
	display: grid;
	flex: 0 0 auto;
	width: clamp(4rem, 5.6vw, 5.15rem);
	aspect-ratio: 1;
	padding: 0.55rem;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 24%;
	background: rgba(255, 255, 255, 0.82);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 18px 38px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(18px) saturate(145%);
}

.references-hero__client-logo img {
	display: block;
	width: 74%;
	height: 74%;
	max-width: 74%;
	max-height: 74%;
	object-fit: contain;
	object-position: center;
}

@keyframes references-hero-logos-run {
	to { transform: translate3d(calc(-50% - 0.5rem), 0, 0); }
}

.references-hero--v2 .references-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.12fr);
	gap: clamp(3rem, 6vw, 6.5rem);
	align-items: center;
}

.references-hero--v2 .references-hero__copy {
	max-width: 42rem;
}

.references-hero--v2 h1 {
	max-width: none;
	margin-bottom: 1.7rem;
	padding-bottom: 0.12em;
	font-size: clamp(3rem, 4.55vw, 5.25rem);
	line-height: 1.08;
}

.references-hero--v2 h1 span {
	display: block;
	margin-top: 0.16em;
	background-image: linear-gradient(96deg, var(--color-purple) 2%, #7c519f 48%, var(--color-pink) 98%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: -0.068em;
}

.references-hero--v2 h1 .references-hero__title-main {
	margin-top: 0;
	background: none;
	color: var(--color-ink);
	font-weight: 650;
	letter-spacing: inherit;
}

.references-hero--v2 .service-hero__lead {
	max-width: 39rem;
	font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.references-hero--v2 .button-row {
	margin-top: 2rem;
}

.references-hero--v2 .references-hero__visual {
	position: relative;
	min-height: 38rem;
	perspective: none;
}

.portfolio-console {
	position: absolute;
	z-index: 2;
	inset: 2.7rem 1.5rem 2.7rem 0;
	display: grid;
	padding: 0.72rem;
	grid-template-rows: 3.15rem minmax(0, 1fr) 3rem;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 2rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 234, 248, 0.5));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 38px 95px rgba(49, 39, 83, 0.17),
		0 3px 10px rgba(49, 39, 83, 0.06);
	backdrop-filter: blur(28px) saturate(160%);
	backface-visibility: hidden;
	transform: translateZ(0) rotateY(-3deg) rotateX(1deg);
	transform-origin: center;
}

.portfolio-console::before {
	position: absolute;
	z-index: -1;
	inset: 10% -6% -8% 11%;
	border-radius: 2.4rem;
	background: linear-gradient(135deg, rgba(86, 77, 137, 0.12), rgba(242, 41, 91, 0.1));
	content: "";
	filter: blur(32px);
}

.portfolio-console__bar {
	display: grid;
	padding-inline: 0.75rem;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.8rem;
}

.portfolio-console__bar::after {
	width: 2.25rem;
	content: "";
}

.portfolio-console__bar > span {
	display: flex;
	gap: 0.34rem;
}

.portfolio-console__bar i {
	width: 0.47rem;
	height: 0.47rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.18);
}

.portfolio-console__bar i:nth-child(2) {
	background: rgba(242, 41, 91, 0.25);
}

.portfolio-console__bar small {
	justify-self: center;
	padding: 0.48rem 1.15rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	color: var(--color-ink-soft);
	font-size: 0.62rem;
}

.portfolio-console__bar b {
	color: var(--color-purple);
	font-size: 0.59rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.portfolio-console__grid {
	display: grid;
	min-height: 0;
	padding: 0.55rem;
	grid-template-columns: minmax(0, 1.47fr) minmax(11rem, 0.63fr);
	gap: 0.65rem;
	border: 1px solid rgba(86, 77, 137, 0.09);
	border-radius: 1.45rem;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.portfolio-console__feature,
.portfolio-console__rail a {
	position: relative;
	display: flex;
	min-height: 0;
	align-items: flex-start;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.1rem;
	background: #fff;
	box-shadow: 0 14px 30px rgba(49, 39, 83, 0.11);
	backface-visibility: hidden;
	contain: paint;
	text-decoration: none;
	transform: translateZ(0);
}

.portfolio-console__feature img,
.portfolio-console__rail img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	max-height: none;
	object-fit: contain;
	object-position: top center;
	flex: 0 0 auto;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.portfolio-console__feature:hover img,
.portfolio-console__rail a:hover img {
	filter: none;
	transform: translateZ(0);
}

.portfolio-console__feature > span,
.portfolio-console__rail a > span {
	position: absolute;
	right: 0.7rem;
	bottom: 0.7rem;
	left: 0.7rem;
	display: flex;
	padding: 0.68rem 0.78rem;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 0.78rem;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 10px 24px rgba(49, 39, 83, 0.12);
	color: var(--color-ink);
	backdrop-filter: blur(15px) saturate(145%);
	backface-visibility: hidden;
	transform: translateZ(0);
}

.portfolio-console__feature small,
.portfolio-console__rail small {
	color: var(--color-purple);
	font-size: 0.56rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.portfolio-console__feature strong {
	font-size: 0.82rem;
}

.portfolio-console__rail {
	display: grid;
	min-height: 0;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.portfolio-console__rail a > span {
	right: 0.45rem;
	bottom: 0.45rem;
	left: 0.45rem;
	padding: 0.48rem 0.55rem;
	border-radius: 0.62rem;
}

.portfolio-console__rail strong {
	font-size: 0.62rem;
}

.portfolio-console__footer {
	display: flex;
	padding-inline: 0.75rem;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	color: var(--color-ink-soft);
	font-size: 0.62rem;
	font-weight: 700;
}

.portfolio-console__footer span {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.portfolio-console__footer i {
	width: 0.48rem;
	height: 0.48rem;
	border: 2px solid rgba(86, 77, 137, 0.24);
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
	background: var(--color-purple);
}

.references-hero__float {
	position: absolute;
	z-index: 5;
	display: grid;
	min-width: 8.5rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow:
		inset 0 1px 0 #fff,
		0 18px 44px rgba(49, 39, 83, 0.13);
	backdrop-filter: blur(20px) saturate(150%);
}

.references-hero__float strong {
	color: var(--color-purple);
	font-size: 1.55rem;
	letter-spacing: -0.055em;
	line-height: 1;
}

.references-hero__float span {
	margin-top: 0.25rem;
	color: var(--color-ink-soft);
	font-size: 0.59rem;
	font-weight: 720;
}

.references-hero__float--projects {
	right: -0.8rem;
	top: 0.9rem;
}

.references-hero__float--years {
	left: -2rem;
	bottom: 2.5rem;
}

.references-proof {
	position: relative;
	z-index: 3;
}

.flagship-section--v2 {
	position: relative;
	background:
		radial-gradient(circle at 90% 8%, rgba(242, 41, 91, 0.055), transparent 20%),
		var(--color-white);
}

#kiemelt-referenciak,
#tovabbi-referenciak {
	scroll-margin-top: calc(var(--header-height) + 1.4rem);
}

.flagship-section--v2 .flagship-grid {
	gap: clamp(1.7rem, 3vw, 2.6rem);
}

.flagship-section--v2 .flagship-card,
.flagship-section--v2 .flagship-card:first-child {
	position: relative;
	display: grid;
	min-height: 42rem;
	grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 2.25rem;
	background: rgba(255, 255, 255, 0.72);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 30px 78px rgba(49, 39, 83, 0.09);
	backdrop-filter: blur(20px);
}

.flagship-section--v2 .flagship-card:nth-child(even) {
	grid-template-columns: minmax(25rem, 0.92fr) minmax(0, 1.08fr);
}

.flagship-section--v2 .flagship-card--ujhaz {
	background: linear-gradient(135deg, rgba(229, 247, 252, 0.84), rgba(255, 255, 255, 0.88));
}

.flagship-section--v2 .flagship-card--bexfit {
	background: linear-gradient(135deg, rgba(224, 241, 244, 0.88), rgba(255, 255, 255, 0.88));
}

.flagship-section--v2 .flagship-card--alexoptika {
	background: linear-gradient(135deg, rgba(239, 246, 216, 0.84), rgba(255, 255, 255, 0.9));
}

.flagship-section--v2 .flagship-card__image,
.flagship-section--v2 .flagship-card:first-child .flagship-card__image {
	height: 42rem;
	min-height: 0;
	padding: clamp(1.2rem, 2.4vw, 2rem);
}

.flagship-section--v2 .flagship-card__copy {
	position: relative;
	display: flex;
	padding: clamp(2.2rem, 4.7vw, 4.6rem);
	flex-direction: column;
	justify-content: center;
}

.flagship-card__topline {
	display: flex;
	margin-bottom: 1rem;
	align-items: center;
	gap: 0.9rem;
}

.flagship-card__topline > span {
	display: grid;
	flex: 0 0 auto;
	width: 2.45rem;
	height: 2.45rem;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.12);
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.66);
	color: var(--color-purple);
	font-size: 0.67rem;
	font-weight: 850;
	box-shadow: inset 0 1px 0 #fff;
}

.flagship-card__topline .eyebrow {
	margin: 0;
	font-size: 0.64rem;
}

.flagship-section--v2 .flagship-card__copy h3 {
	margin-bottom: 1rem;
	font-size: clamp(2.35rem, 3.5vw, 3.8rem);
}

.flagship-section--v2 .flagship-card__headline {
	max-width: 31rem;
	margin-bottom: 1rem;
	color: var(--color-ink);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	font-weight: 700;
	line-height: 1.45;
}

.flagship-section--v2 .flagship-card__copy > p:not(.eyebrow):not(.flagship-card__headline) {
	max-width: 34rem;
	margin-bottom: 1.35rem;
	color: var(--color-ink-soft);
	font-size: 0.92rem;
}

.flagship-card__facts {
	display: flex;
	margin: 0 0 1.7rem;
	padding: 0;
	flex-wrap: wrap;
	gap: 0.48rem;
	list-style: none;
}

.flagship-card__facts li {
	display: inline-flex;
	padding: 0.55rem 0.68rem;
	align-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.58);
	color: var(--color-ink);
	font-size: 0.65rem;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.flagship-section--v2 .flagship-card__copy .text-link {
	margin-top: 0;
}

.reference-proof-section {
	position: relative;
	background:
		radial-gradient(circle at 8% 86%, rgba(86, 77, 137, 0.075), transparent 27%),
		linear-gradient(180deg, #f8f7fa, #f5f4f7);
}

.reference-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.reference-proof-card {
	position: relative;
	display: flex;
	min-height: 24rem;
	padding: clamp(1.6rem, 3.1vw, 2.8rem);
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 2rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 234, 248, 0.5));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 22px 58px rgba(49, 39, 83, 0.075);
	backdrop-filter: blur(22px) saturate(155%);
}

.reference-proof-card::before {
	position: absolute;
	right: -4rem;
	top: -5rem;
	width: 13rem;
	height: 13rem;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 44% 56% 61% 39% / 44% 44% 56% 56%;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.065), rgba(242, 41, 91, 0.04));
	content: "";
	transform: rotate(25deg);
}

.reference-proof-card__icon {
	display: grid;
	width: 5.4rem;
	height: 5.4rem;
	margin-bottom: auto;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.58);
	box-shadow:
		inset 0 1px 0 #fff,
		0 15px 34px rgba(49, 39, 83, 0.09);
}

.reference-proof-card__icon svg {
	width: 2.85rem;
	height: 2.85rem;
	fill: none;
	stroke: var(--color-purple);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.reference-proof-card > span {
	margin: 2.2rem 0 0.55rem;
	color: var(--color-purple);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.reference-proof-card h3 {
	max-width: 19ch;
	margin-bottom: 0.8rem;
	font-size: clamp(1.3rem, 1.8vw, 1.65rem);
}

.reference-proof-card p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.83rem;
}

.reference-library--v2 {
	position: relative;
	background:
		radial-gradient(circle at 92% 8%, rgba(242, 41, 91, 0.055), transparent 22%),
		var(--color-white);
}

.reference-library__toolbar {
	position: relative;
	z-index: 8;
	top: auto;
	display: flex;
	margin-bottom: 2.2rem;
	padding: 0.55rem 0.65rem 0.55rem 0.55rem;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 1.35rem;
	background: rgba(248, 247, 250, 0.76);
	box-shadow:
		inset 0 1px 0 #fff,
		0 18px 46px rgba(49, 39, 83, 0.09);
	backdrop-filter: blur(22px) saturate(160%);
}

.reference-library--v2 .reference-filters {
	position: static;
	display: flex;
	width: auto;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 0.42rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.reference-library--v2 .reference-filters button {
	display: inline-flex;
	min-height: 2.75rem;
	padding: 0.58rem 0.72rem 0.58rem 0.9rem;
	align-items: center;
	gap: 0.55rem;
	border: 1px solid transparent;
	border-radius: 0.88rem;
	background: transparent;
	color: var(--color-ink);
	font-size: 0.72rem;
	font-weight: 760;
	transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.reference-library--v2 .reference-filters button small {
	display: grid;
	min-width: 1.55rem;
	height: 1.55rem;
	padding-inline: 0.35rem;
	place-items: center;
	border-radius: 999px;
	background: rgba(86, 77, 137, 0.08);
	color: var(--color-purple);
	font-size: 0.55rem;
	font-weight: 800;
}

.reference-library--v2 .reference-filters button:hover {
	border-color: rgba(86, 77, 137, 0.1);
	background: rgba(255, 255, 255, 0.62);
	color: var(--color-purple);
}

.reference-library--v2 .reference-filters button.is-active {
	border-color: rgba(86, 77, 137, 0.13);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 7px 18px rgba(49, 39, 83, 0.075);
	color: var(--color-purple);
}

.reference-library--v2 .reference-filters button.is-active small {
	background: var(--color-purple);
	color: #fff;
}

.reference-library__counter {
	flex: 0 0 auto;
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.68rem;
	white-space: nowrap;
}

.reference-library__counter strong {
	color: var(--color-purple);
	font-size: 0.86rem;
}

.reference-library--v2 .reference-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.reference-grid.is-enhanced .reference-card.is-paged-out {
	display: none;
}

.reference-library--v2 .reference-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.55rem;
	background: rgba(255, 255, 255, 0.86);
	box-shadow:
		inset 0 1px 0 #fff,
		0 14px 36px rgba(49, 39, 83, 0.055);
	backdrop-filter: blur(16px);
	transition: transform 320ms var(--ease-out), box-shadow 320ms ease, border-color 320ms ease;
}

.reference-library--v2 .reference-card[hidden] {
	display: none;
}

.reference-library--v2 .reference-card:hover {
	border-color: rgba(86, 77, 137, 0.18);
	box-shadow: 0 25px 58px rgba(49, 39, 83, 0.11);
	transform: translateY(-0.34rem);
}

.reference-library--v2 .reference-card__image {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	aspect-ratio: auto;
	background: #fff;
	color: inherit;
	cursor: zoom-in;
	font: inherit;
	text-align: left;
	appearance: none;
}

.reference-library--v2 .reference-card__image::after {
	display: none;
}

.reference-library--v2 .reference-card__image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: initial;
	object-position: center;
	background: #fff;
	transition: transform 700ms var(--ease-out);
}

.reference-library--v2 .reference-card:hover .reference-card__image img {
	transform: none;
}

.reference-card__view {
	position: absolute;
	right: 0.9rem;
	bottom: 0.9rem;
	display: inline-flex;
	min-height: 2.5rem;
	padding: 0.55rem 0.72rem 0.55rem 0.62rem;
	align-items: center;
	gap: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 0.82rem;
	background: rgba(255, 255, 255, 0.76);
	box-shadow:
		inset 0 1px 0 #fff,
		0 10px 26px rgba(31, 24, 53, 0.16);
	color: var(--color-purple-deep);
	font-size: 0.6rem;
	font-weight: 800;
	opacity: 0;
	transform: translateY(0.45rem) scale(0.96);
	transition: opacity 220ms ease, transform 300ms var(--ease-out), background 220ms ease;
	backdrop-filter: blur(18px) saturate(165%);
}

.reference-card__view svg {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.reference-card__image:hover .reference-card__view,
.reference-card__image:focus-visible .reference-card__view {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.reference-card__image:focus-visible {
	outline: 3px solid rgba(242, 41, 91, 0.32);
	outline-offset: -3px;
}

.reference-library--v2 .reference-card__body {
	display: flex;
	min-height: 7.5rem;
	padding: 1.15rem 1.25rem 1.3rem;
	flex: 1;
	flex-direction: column;
}

.reference-library--v2 .reference-card p.reference-card__meta {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 0.62rem;
	padding: 0.4rem 0.56rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 0.62rem;
	background: rgba(238, 234, 248, 0.62);
	color: var(--color-purple);
	font-size: 0.56rem;
	font-weight: 800;
}

.reference-library--v2 .reference-card h3 {
	margin-bottom: 0.42rem;
	font-size: 1.06rem;
	line-height: 1.2;
}

.reference-library--v2 .reference-card p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.66rem;
}

.reference-card__link {
	display: inline-flex;
	margin-top: auto;
	padding-top: 0.85rem;
	align-items: center;
	gap: 0.45rem;
	color: var(--color-purple);
	font-size: 0.66rem;
	font-weight: 760;
	text-decoration: none;
}

body.has-reference-lightbox {
	overflow: hidden;
}

.reference-lightbox[hidden] {
	display: none;
}

.reference-lightbox {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	padding: clamp(0.75rem, 2vw, 1.5rem);
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
}

.reference-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.reference-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 16% 12%, rgba(242, 41, 91, 0.12), transparent 34%),
		radial-gradient(circle at 86% 82%, rgba(86, 77, 137, 0.18), transparent 38%),
		rgba(235, 232, 243, 0.82);
	backdrop-filter: blur(28px) saturate(145%);
}

.reference-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(94vw, 90rem);
	height: min(92dvh, 58rem);
	min-height: 0;
	padding: 0.72rem;
	grid-template-rows: auto minmax(0, 1fr) auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.69);
	box-shadow:
		inset 0 1px 0 #fff,
		0 38px 110px rgba(38, 29, 63, 0.22);
	opacity: 0;
	transform: translateY(1rem) scale(0.975);
	transition: opacity 260ms ease, transform 420ms var(--ease-out);
	backdrop-filter: blur(30px) saturate(155%);
}

.reference-lightbox.is-open .reference-lightbox__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.reference-lightbox__header {
	display: flex;
	min-height: 3.9rem;
	padding: 0.42rem 0.5rem 0.68rem 0.9rem;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.reference-lightbox__header > div {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.reference-lightbox__header p,
.reference-lightbox__header span {
	margin: 0;
}

.reference-lightbox__header p {
	color: var(--color-purple);
	font-size: 0.64rem;
	font-weight: 820;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.reference-lightbox__header span {
	display: inline-flex;
	min-height: 1.75rem;
	padding-inline: 0.62rem;
	align-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 999px;
	background: rgba(238, 234, 248, 0.66);
	color: var(--color-ink-soft);
	font-size: 0.6rem;
	font-weight: 760;
}

.reference-lightbox__close,
.reference-lightbox__nav {
	display: grid;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.73);
	box-shadow:
		inset 0 1px 0 #fff,
		0 10px 26px rgba(49, 39, 83, 0.11);
	color: var(--color-purple-deep);
	cursor: pointer;
	transition: transform 220ms var(--ease-out), background 220ms ease, box-shadow 220ms ease;
	backdrop-filter: blur(18px) saturate(165%);
}

.reference-lightbox__close {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 0.9rem;
}

.reference-lightbox__close svg,
.reference-lightbox__nav svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.reference-lightbox__close:hover,
.reference-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 15px 32px rgba(49, 39, 83, 0.16);
	transform: translateY(-2px);
}

.reference-lightbox__close:focus-visible,
.reference-lightbox__nav:focus-visible {
	outline: 3px solid rgba(242, 41, 91, 0.3);
	outline-offset: 3px;
}

.reference-lightbox__stage {
	display: grid;
	min-height: 0;
	grid-template-columns: 3.8rem minmax(0, 1fr) 3.8rem;
	gap: 0.72rem;
	align-items: center;
}

.reference-lightbox__nav {
	width: 3.35rem;
	height: 3.35rem;
	justify-self: center;
	border-radius: 1.08rem;
}

.reference-lightbox__nav:disabled {
	opacity: 0.35;
	pointer-events: none;
}

.reference-lightbox__figure {
	display: grid;
	min-width: 0;
	height: 100%;
	min-height: 0;
	margin: 0;
	grid-template-rows: minmax(0, 1fr) auto;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.45rem;
	background: rgba(255, 255, 255, 0.82);
	box-shadow:
		inset 0 1px 0 #fff,
		0 16px 44px rgba(49, 39, 83, 0.09);
}

.reference-lightbox__media {
	position: relative;
	display: flex;
	min-height: 0;
	padding: clamp(0.5rem, 1.5vw, 1.1rem);
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}

.reference-lightbox__media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	opacity: 1;
	filter: none;
	transform: scale(1);
	transition: opacity 220ms ease, transform 360ms var(--ease-out), filter 220ms ease;
}

.reference-lightbox__media img.is-switching {
	opacity: 0.2;
	filter: blur(5px);
	transform: scale(0.985);
}

.reference-lightbox__loader {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	width: 2.4rem;
	height: 2.4rem;
	margin: -1.2rem 0 0 -1.2rem;
	border: 2px solid rgba(86, 77, 137, 0.12);
	border-top-color: var(--color-magenta);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
}

.reference-lightbox.is-image-loading .reference-lightbox__loader {
	opacity: 1;
	animation: reference-lightbox-spin 720ms linear infinite;
}

@keyframes reference-lightbox-spin {
	to { transform: rotate(360deg); }
}

.reference-lightbox__caption {
	display: flex;
	min-height: 6.5rem;
	padding: 1rem 1.1rem 1.05rem 1.25rem;
	align-items: center;
	justify-content: flex-start;
	gap: 1.25rem;
	border-top: 1px solid rgba(86, 77, 137, 0.09);
	background: rgba(248, 247, 251, 0.8);
	backdrop-filter: blur(18px) saturate(150%);
}

.reference-lightbox__project {
	min-width: 0;
}

.reference-lightbox__project p,
.reference-lightbox__project h2,
.reference-lightbox__project span {
	margin: 0;
}

.reference-lightbox__project p {
	margin-bottom: 0.28rem;
	color: var(--color-magenta);
	font-size: 0.58rem;
	font-weight: 820;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.reference-lightbox__project h2 {
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	line-height: 1.08;
}

.reference-lightbox__project span {
	display: block;
	margin-top: 0.28rem;
	color: var(--color-ink-soft);
	font-size: 0.66rem;
}

.reference-lightbox__hint {
	margin: 0;
	padding: 0.6rem 0 0.1rem;
	color: var(--color-ink-soft);
	font-size: 0.56rem;
	text-align: center;
}

.reference-library__more {
	display: flex;
	margin-top: 2.2rem;
	justify-content: center;
}

.reference-library__more[hidden] {
	display: none;
}

.button.button--soft {
	border: 1px solid rgba(86, 77, 137, 0.13);
	background: rgba(255, 255, 255, 0.8);
	box-shadow:
		inset 0 1px 0 #fff,
		0 12px 28px rgba(49, 39, 83, 0.08);
	color: var(--color-purple);
	backdrop-filter: blur(15px);
}

.button.button--soft::before,
.button.button--soft::after {
	display: none;
}

.button.button--soft:hover {
	border-color: rgba(86, 77, 137, 0.22);
	background: rgba(238, 234, 248, 0.78);
	box-shadow: 0 18px 38px rgba(49, 39, 83, 0.12);
	color: var(--color-purple-deep);
}

.reference-decision {
	padding-top: 0;
	background: var(--color-white);
}

.reference-decision__panel {
	position: relative;
	display: grid;
	padding: clamp(2rem, 5vw, 5rem);
	grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 2.4rem;
	background:
		radial-gradient(circle at 93% 10%, rgba(242, 41, 91, 0.1), transparent 26%),
		linear-gradient(135deg, rgba(238, 234, 248, 0.82), rgba(255, 255, 255, 0.74));
	box-shadow:
		inset 0 1px 0 #fff,
		0 30px 80px rgba(49, 39, 83, 0.11);
	backdrop-filter: blur(26px) saturate(155%);
}

.reference-decision__panel::before {
	position: absolute;
	right: -11rem;
	top: -13rem;
	width: 35rem;
	height: 35rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 42% 58% 63% 37% / 52% 41% 59% 48%;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.06), rgba(242, 41, 91, 0.07));
	content: "";
	transform: rotate(21deg);
}

.reference-decision__copy {
	position: relative;
	z-index: 2;
}

.reference-decision__copy h2 {
	max-width: 18ch;
	margin-bottom: 1.2rem;
}

.reference-decision__copy > p:not(.eyebrow) {
	max-width: 43rem;
	color: var(--color-ink-soft);
}

.reference-decision__copy .button-row {
	margin-top: 2rem;
}

.reference-decision__facts {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 0.72rem;
}

.reference-decision__facts > div {
	display: grid;
	padding: 1rem 1.1rem;
	grid-template-columns: 2.8rem 1fr;
	align-items: center;
	gap: 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.62);
	box-shadow:
		inset 0 1px 0 #fff,
		0 12px 28px rgba(49, 39, 83, 0.065);
	backdrop-filter: blur(16px);
}

.reference-decision__facts > div > span {
	display: grid;
	width: 2.55rem;
	height: 2.55rem;
	place-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 0.78rem;
	background: rgba(238, 234, 248, 0.72);
	color: var(--color-purple);
	font-size: 0.62rem;
	font-weight: 850;
}

.reference-decision__facts p {
	display: grid;
	margin: 0;
	gap: 0.16rem;
}

.reference-decision__facts strong {
	font-size: 0.84rem;
}

.reference-decision__facts small {
	color: var(--color-ink-soft);
	font-size: 0.64rem;
}

@media (max-width: 1180px) {
	.references-hero--v2 {
		min-height: auto;
	}

	.references-hero--v2 .references-hero__grid {
		grid-template-columns: minmax(0, 0.82fr) minmax(31rem, 1.18fr);
		gap: 2rem;
	}

	.references-hero--v2 .references-hero__visual {
		min-height: 34rem;
	}

	.portfolio-console {
		inset: 2.5rem 1.2rem 2.5rem 0;
	}

	.references-hero__float--projects {
		right: -0.2rem;
	}

	.references-hero__float--years {
		left: -0.7rem;
	}

	.flagship-section--v2 .flagship-card,
	.flagship-section--v2 .flagship-card:first-child,
	.flagship-section--v2 .flagship-card:nth-child(even) {
		grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.9fr);
	}

	.flagship-section--v2 .flagship-card:nth-child(even) {
		grid-template-columns: minmax(23rem, 0.9fr) minmax(0, 1fr);
	}
}

@media (max-width: 980px) {
	.references-hero--v2 {
		padding-top: calc(var(--header-height) + 4rem);
	}

	.references-hero__logo-field {
		right: -12rem;
		bottom: 42%;
		left: -8rem;
		opacity: 0.16;
	}

	.references-hero--v2 .references-hero__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.references-hero--v2 .references-hero__copy {
		max-width: 47rem;
	}

	.references-hero--v2 h1 {
		max-width: 13ch;
	}

	.references-hero--v2 .references-hero__visual {
		width: min(100%, 48rem);
		min-height: 37rem;
		margin-inline: auto;
	}

	.flagship-section--v2 .flagship-card,
	.flagship-section--v2 .flagship-card:first-child,
	.flagship-section--v2 .flagship-card:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.flagship-section--v2 .flagship-card:nth-child(even) .flagship-card__image {
		order: 0;
	}

	.flagship-section--v2 .flagship-card__image,
	.flagship-section--v2 .flagship-card:first-child .flagship-card__image {
		height: 38rem;
		min-height: 0;
	}

	.reference-proof-grid {
		grid-template-columns: 1fr;
	}

	.reference-proof-card {
		min-height: 20rem;
	}

	.reference-library--v2 .reference-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reference-library__toolbar {
		position: static;
		align-items: flex-start;
		flex-direction: column;
	}

	.reference-decision__panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.references-page--v2 > .section {
		padding-block: clamp(4.5rem, 14vw, 6rem);
	}

	.references-hero--v2 {
		padding: calc(var(--header-height) + 3rem) 0 3.5rem;
	}

	.references-hero__logo-field {
		top: 10%;
		right: -15rem;
		bottom: 52%;
		left: -15rem;
		opacity: 0.14;
	}

	.references-hero__client-logo {
		width: 4rem;
		border-radius: 24%;
	}

	.references-hero--v2 h1 {
		font-size: clamp(2.75rem, 12vw, 4rem);
	}

	.references-hero--v2 h1 span {
		white-space: normal;
	}

	.references-hero--v2 .references-hero__visual {
		min-height: 27rem;
	}

	.portfolio-console {
		inset: 1.8rem 0.15rem 1.8rem 0.15rem;
		padding: 0.5rem;
		grid-template-rows: 2.65rem minmax(0, 1fr) 2.6rem;
		border-radius: 1.45rem;
		transform: none;
	}

	.portfolio-console__bar {
		padding-inline: 0.42rem;
	}

	.portfolio-console__bar small {
		padding: 0.4rem 0.7rem;
	}

	.portfolio-console__bar b {
		display: none;
	}

	.portfolio-console__grid {
		padding: 0.4rem;
		grid-template-columns: minmax(0, 1.38fr) minmax(6.8rem, 0.62fr);
		gap: 0.42rem;
		border-radius: 1rem;
	}

	.portfolio-console__feature,
	.portfolio-console__rail a {
		border-radius: 0.75rem;
	}

	.portfolio-console__rail {
		gap: 0.42rem;
	}

	.portfolio-console__feature > span {
		right: 0.42rem;
		bottom: 0.42rem;
		left: 0.42rem;
		padding: 0.46rem 0.52rem;
		border-radius: 0.58rem;
	}

	.portfolio-console__feature > span small {
		display: none;
	}

	.portfolio-console__feature strong {
		font-size: 0.63rem;
	}

	.portfolio-console__rail a > span {
		right: 0.28rem;
		bottom: 0.28rem;
		left: 0.28rem;
		padding: 0.3rem 0.34rem;
	}

	.portfolio-console__rail small {
		display: none;
	}

	.portfolio-console__rail strong {
		font-size: 0.48rem;
	}

	.portfolio-console__footer {
		padding-inline: 0.42rem;
		font-size: 0.53rem;
	}

	.portfolio-console__footer span:last-child {
		display: none;
	}

	.references-hero__float {
		min-width: 7rem;
		padding: 0.72rem 0.78rem;
		border-radius: 0.92rem;
	}

	.references-hero__float strong {
		font-size: 1.25rem;
	}

	.references-hero__float--projects {
		right: -0.15rem;
		top: 0;
	}

	.references-hero__float--years {
		left: -0.15rem;
		bottom: 0;
	}

	.flagship-section--v2 .flagship-card,
	.flagship-section--v2 .flagship-card:first-child {
		border-radius: 1.7rem;
	}

	.flagship-section--v2 .flagship-card__image,
	.flagship-section--v2 .flagship-card:first-child .flagship-card__image {
		height: 27rem;
		padding: 0.85rem;
	}

	.flagship-section--v2 .flagship-card__copy {
		padding: 1.55rem 1.35rem 1.8rem;
	}

	.flagship-card__topline {
		align-items: flex-start;
	}

	.flagship-card__topline .eyebrow::before {
		display: none;
	}

	.flagship-card__facts li {
		font-size: 0.6rem;
	}

	.reference-proof-card {
		min-height: 21rem;
		border-radius: 1.65rem;
	}

	.reference-library__toolbar {
		padding: 0.7rem;
		border-radius: 1.15rem;
	}

	.reference-library--v2 .reference-filters {
		width: 100%;
	}

	.reference-library--v2 .reference-filters button {
		flex: 1 1 auto;
		justify-content: center;
	}

	.reference-library--v2 .reference-grid {
		grid-template-columns: 1fr;
	}

	.reference-library--v2 .reference-card__image {
		aspect-ratio: auto;
	}

	.reference-card__view {
		right: 0.65rem;
		bottom: 0.65rem;
		opacity: 1;
		transform: none;
	}

	.reference-lightbox {
		padding: 0.45rem;
	}

	.reference-lightbox__dialog {
		width: 100%;
		height: calc(100dvh - 0.9rem);
		padding: 0.45rem;
		border-radius: 1.45rem;
	}

	.reference-lightbox__header {
		min-height: 3.45rem;
		padding: 0.28rem 0.25rem 0.48rem 0.55rem;
	}

	.reference-lightbox__close {
		width: 2.65rem;
		height: 2.65rem;
	}

	.reference-lightbox__stage {
		position: relative;
		display: block;
		min-height: 0;
	}

	.reference-lightbox__figure {
		height: 100%;
		border-radius: 1.1rem;
	}

	.reference-lightbox__nav {
		position: absolute;
		z-index: 3;
		top: 40%;
		width: 2.85rem;
		height: 2.85rem;
		border-radius: 0.92rem;
		transform: translateY(-50%);
	}

	.reference-lightbox__nav:hover {
		transform: translateY(-50%);
	}

	.reference-lightbox__nav--previous {
		left: 0.55rem;
	}

	.reference-lightbox__nav--next {
		right: 0.55rem;
	}

	.reference-lightbox__media {
		padding: 0.45rem;
	}

	.reference-lightbox__caption {
		min-height: 6.5rem;
		padding: 0.9rem;
		align-items: stretch;
		flex-direction: column;
		justify-content: center;
		gap: 0.75rem;
	}

	.reference-lightbox__hint {
		display: none;
	}

	.reference-decision {
		padding-top: 0 !important;
	}

	.reference-decision__panel {
		padding: 1.45rem;
		border-radius: 1.7rem;
	}

	.reference-decision__facts > div {
		padding: 0.85rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.references-hero__logo-track {
		animation: none;
	}

	.portfolio-console__feature img,
	.portfolio-console__rail img,
	.reference-library--v2 .reference-card,
	.reference-library--v2 .reference-card__image img {
		transition: none;
	}

	.reference-lightbox,
	.reference-lightbox__dialog,
	.reference-lightbox__media img,
	.reference-card__view {
		transition: none;
	}

	.reference-lightbox.is-image-loading .reference-lightbox__loader {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
   Blog archive v2 — practical expertise in the approved Webfy visual system.
   -------------------------------------------------------------------------- */

.blog-page--v2 {
	background: var(--color-white);
}

.blog-hero--v2 {
	position: relative;
	isolation: isolate;
	min-height: 49rem;
	padding: calc(var(--header-height) + 4.5rem) 0 6.84rem;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 12%, rgba(242, 41, 91, 0.1), transparent 27%),
		radial-gradient(circle at 66% 82%, rgba(86, 77, 137, 0.12), transparent 34%),
		linear-gradient(135deg, #fdfdfe 0%, #f6f3fb 56%, #fff8fa 100%);
}

.blog-hero__ambient,
.blog-hero__orb,
.blog-hero__lines {
	position: absolute;
	pointer-events: none;
}

.blog-hero__ambient {
	z-index: -1;
	inset: 0;
	overflow: hidden;
}

.blog-hero__orb {
	border: 1px solid rgba(255, 255, 255, 0.78);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(238, 234, 248, 0.16));
	filter: blur(0.2px);
}

.blog-hero__orb--one {
	right: -10rem;
	top: -13rem;
	width: 40rem;
	height: 40rem;
	border-radius: 44% 56% 65% 35% / 51% 41% 59% 49%;
	transform: rotate(23deg);
}

.blog-hero__orb--two {
	left: 34%;
	bottom: -21rem;
	width: 38rem;
	height: 38rem;
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(86, 77, 137, 0.04), rgba(242, 41, 91, 0.055));
}

.blog-hero__lines {
	right: 7%;
	top: 8%;
	width: 36rem;
	height: 36rem;
	border: 1px solid rgba(86, 77, 137, 0.07);
	border-radius: 50%;
	box-shadow:
		0 0 0 5rem rgba(255, 255, 255, 0.12),
		0 0 0 10rem rgba(86, 77, 137, 0.025);
	transform: rotate(-18deg) scaleY(0.62);
}

.blog-hero--v2 .blog-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(34rem, 1.14fr);
	gap: clamp(3rem, 6vw, 6rem);
	align-items: center;
}

.blog-hero--v2 .blog-hero__copy {
	max-width: 42rem;
}

.blog-hero--v2 h1 {
	max-width: 11ch;
	margin: 0.7rem 0 1.5rem;
	padding-bottom: 0.1em;
	font-size: clamp(3rem, 5vw, 5.1rem) !important;
	line-height: 0.98;
}

.blog-hero--v2 h1 span {
	display: block;
	margin-top: 0.14em;
	background-image: linear-gradient(96deg, var(--color-purple) 2%, #7c519f 48%, var(--color-pink) 98%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: -0.067em;
}

.blog-hero--v2 h1 .blog-hero__title-main {
	margin-top: 0;
	background: none;
	color: var(--color-ink);
	font-weight: 650;
	letter-spacing: -0.058em;
}

.blog-hero__lead {
	max-width: 39rem;
	margin: 0;
	color: var(--color-ink-soft);
	font-size: clamp(1rem, 1.35vw, 1.16rem);
	line-height: 1.72;
}

.blog-hero--v2 .blog-hero__topics {
	display: flex;
	margin-top: 1.7rem;
	flex-wrap: wrap;
	gap: 0.48rem;
}

.blog-hero--v2 .blog-hero__topics span {
	padding: 0.58rem 0.76rem;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 0.78rem;
	background: rgba(255, 255, 255, 0.64);
	box-shadow:
		inset 0 1px 0 #fff,
		0 8px 20px rgba(49, 39, 83, 0.055);
	color: var(--color-purple);
	font-size: 0.61rem;
	font-weight: 780;
	backdrop-filter: blur(15px) saturate(150%);
}

.blog-hero__jump {
	display: inline-flex;
	margin-top: 1.75rem;
}

.blog-hero__feature-wrap {
	position: relative;
	width: 100%;
	min-width: 0;
	padding: 1.25rem 0.7rem 1rem 0;
}

.blog-featured--v2 {
	position: relative;
	display: grid;
	width: 100%;
	padding: 0.65rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.69);
	box-shadow:
		inset 0 1px 0 #fff,
		0 35px 90px rgba(49, 39, 83, 0.16);
	transform: none;
	transition: transform 360ms var(--ease-out), box-shadow 360ms ease;
	backdrop-filter: blur(27px) saturate(155%);
}

.blog-featured--v2:hover {
	box-shadow:
		inset 0 1px 0 #fff,
		0 42px 105px rgba(49, 39, 83, 0.2);
	transform: translateY(-0.3rem);
}

.blog-featured__browser {
	display: grid;
	min-height: 3rem;
	padding-inline: 0.62rem;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.75rem;
}

.blog-featured__browser > span {
	display: flex;
	gap: 0.3rem;
}

.blog-featured__browser i {
	width: 0.43rem;
	height: 0.43rem;
	border-radius: 50%;
	background: rgba(86, 77, 137, 0.16);
}

.blog-featured__browser i:nth-child(2) {
	background: rgba(242, 41, 91, 0.24);
}

.blog-featured__browser small {
	padding: 0.42rem 0.85rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.56);
	color: var(--color-ink-soft);
	font-size: 0.56rem;
}

.blog-featured__browser b {
	justify-self: end;
	color: var(--color-purple);
	font-size: 0.54rem;
	font-weight: 820;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.blog-featured--v2 .blog-featured__image {
	display: block;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 1.4rem 1.4rem 0.8rem 0.8rem;
	aspect-ratio: auto;
	background: #fff;
}

.blog-featured--v2 .blog-featured__image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: filter 400ms ease;
}

.blog-featured--v2:hover .blog-featured__image img {
	filter: saturate(1.035);
	transform: none;
}

.blog-featured--v2 .blog-featured__body {
	padding: 1.25rem 1.25rem 1.15rem;
}

.blog-featured__meta,
.post-card__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.blog-featured__meta span,
.post-card__meta-row span {
	display: inline-flex;
	min-height: 1.8rem;
	padding-inline: 0.62rem;
	align-items: center;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 0.58rem;
	background: rgba(238, 234, 248, 0.64);
	color: var(--color-purple);
	font-size: 0.54rem;
	font-weight: 820;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.blog-featured__meta time,
.post-card__meta-row time {
	color: var(--color-ink-soft);
	font-size: 0.59rem;
	font-weight: 650;
}

.blog-featured--v2 h2 {
	max-width: 23ch;
	margin: 0.75rem 0 0.85rem;
	font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
	line-height: 1.12;
}

.blog-featured--v2 h2 a {
	color: var(--color-ink);
	text-decoration: none;
}

.blog-featured__footer {
	display: flex;
	padding-top: 0.85rem;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid rgba(86, 77, 137, 0.08);
}

.blog-featured__footer > span {
	color: var(--color-ink-soft);
	font-size: 0.59rem;
	font-weight: 650;
}

.blog-featured__footer .text-link {
	font-size: 0.66rem;
}

.blog-hero__float {
	position: absolute;
	right: -0.8rem;
	top: -0.1rem;
	display: grid;
	min-width: 9.5rem;
	padding: 0.88rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 1.1rem;
	background: rgba(255, 255, 255, 0.79);
	box-shadow:
		inset 0 1px 0 #fff,
		0 17px 40px rgba(49, 39, 83, 0.13);
	backdrop-filter: blur(20px) saturate(155%);
}

.blog-hero__float strong {
	color: var(--color-purple);
	font-size: 0.78rem;
}

.blog-hero__float span {
	margin-top: 0.16rem;
	color: var(--color-ink-soft);
	font-size: 0.55rem;
	font-weight: 680;
}

.blog-knowledge-panel {
	display: grid;
	padding: 1rem;
	gap: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 35px 90px rgba(49, 39, 83, 0.15);
	backdrop-filter: blur(25px) saturate(155%);
}

.blog-knowledge-panel__top,
.blog-knowledge-panel > div:not(.blog-knowledge-panel__top) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.blog-knowledge-panel__top {
	padding: 0.35rem 0.35rem 0.8rem;
	color: var(--color-purple);
	font-size: 0.6rem;
	font-weight: 820;
	letter-spacing: 0.1em;
}

.blog-knowledge-panel__top i {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--color-magenta);
	box-shadow: 0 0 0 0.4rem rgba(242, 41, 91, 0.08);
}

.blog-knowledge-panel > div:not(.blog-knowledge-panel__top) {
	min-height: 6.2rem;
	padding: 1.1rem 1.25rem;
	border: 1px solid rgba(86, 77, 137, 0.08);
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.72);
}

.blog-knowledge-panel > div > span {
	color: var(--color-magenta);
	font-size: 0.62rem;
	font-weight: 820;
}

.blog-knowledge-panel strong {
	font-size: 1.15rem;
}

.blog-proof {
	position: relative;
	z-index: 4;
	margin-top: -3.49rem;
}

.blog-proof__grid {
	display: grid;
	padding: 0.72rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 1.5rem;
	background: rgba(250, 249, 252, 0.79);
	box-shadow:
		inset 0 1px 0 #fff,
		0 20px 55px rgba(49, 39, 83, 0.095);
	backdrop-filter: blur(22px) saturate(155%);
}

.blog-proof__grid > div {
	display: grid;
	min-height: 5.4rem;
	padding: 0.85rem 1rem;
	align-content: center;
	border-right: 1px solid rgba(86, 77, 137, 0.08);
}

.blog-proof__grid > div:last-child {
	border-right: 0;
}

.blog-proof strong {
	color: var(--color-purple);
	font-size: clamp(1.05rem, 1.8vw, 1.4rem);
	letter-spacing: -0.035em;
}

.blog-proof span {
	margin-top: 0.2rem;
	color: var(--color-ink-soft);
	font-size: 0.58rem;
	font-weight: 680;
}

.blog-library {
	position: relative;
	margin-top: -3.49rem;
	padding-top: calc(clamp(6rem, 9vw, 9rem) + 3.49rem);
	background:
		radial-gradient(circle at 5% 7%, rgba(86, 77, 137, 0.05), transparent 19%),
		radial-gradient(circle at 94% 25%, rgba(242, 41, 91, 0.045), transparent 19%),
		var(--color-white);
}

.blog-library .section-heading {
	margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.blog-library .section-heading h2 {
	max-width: 14ch;
}

.blog-library .section-heading > p {
	max-width: 36rem;
}

.blog-page--v2 .post-grid--v2 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.blog-page--v2 .post-card--v2 {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.55rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow:
		inset 0 1px 0 #fff,
		0 14px 38px rgba(49, 39, 83, 0.06);
	transition: transform 320ms var(--ease-out), box-shadow 320ms ease, border-color 320ms ease;
	backdrop-filter: blur(16px);
}

.blog-page--v2 .post-card--v2:hover {
	border-color: rgba(86, 77, 137, 0.18);
	box-shadow: 0 26px 60px rgba(49, 39, 83, 0.12);
	transform: translateY(-0.36rem);
}

.blog-page--v2 .post-card__image {
	display: block;
	overflow: hidden;
	border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	aspect-ratio: auto;
	background: #fff;
}

.blog-page--v2 .post-card__image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: filter 400ms ease;
}

.blog-page--v2 .post-card--v2:hover .post-card__image img {
	filter: saturate(1.035);
	transform: none;
}

.blog-image-placeholder {
	display: grid;
	width: 100%;
	aspect-ratio: 16 / 9;
	place-items: center;
	background:
		radial-gradient(circle at 75% 20%, rgba(242, 41, 91, 0.12), transparent 30%),
		linear-gradient(135deg, #f5f1fa, #fff);
	color: var(--color-purple);
	font-family: Georgia, serif;
	font-size: 1.2rem;
	font-style: italic;
}

.blog-page--v2 .post-card__body {
	display: flex;
	padding: 1.2rem 1.2rem 1.25rem;
	flex: 1;
	flex-direction: column;
}

.post-card__meta-row {
	margin-bottom: 0.85rem;
}

.blog-page--v2 .post-card h2 {
	margin: 0 0 0.72rem;
	font-size: clamp(1.18rem, 1.45vw, 1.48rem) !important;
	line-height: 1.18;
}

.blog-page--v2 .post-card h2 a {
	color: var(--color-ink);
	text-decoration: none;
}

.blog-page--v2 .post-card__body > p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.72rem;
	line-height: 1.65;
}

.post-card__footer {
	display: flex;
	margin-top: auto;
	padding-top: 1.1rem;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.post-card__footer > span {
	color: var(--color-ink-soft);
	font-size: 0.57rem;
	font-weight: 650;
}

.post-card__footer a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-purple);
	font-size: 0.62rem;
	font-weight: 800;
	text-decoration: none;
}

.post-card__footer a > span {
	transition: transform 220ms var(--ease-out);
}

.post-card__footer a:hover > span {
	transform: translate(0.12rem, -0.12rem);
}

.blog-page--v2 .pagination-wrap {
	display: flex;
	margin-top: 3rem;
	justify-content: center;
}

.blog-page--v2 .pagination-wrap .nav-links {
	display: flex;
	padding: 0.45rem;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 1rem;
	background: rgba(248, 247, 251, 0.78);
	box-shadow:
		inset 0 1px 0 #fff,
		0 14px 34px rgba(49, 39, 83, 0.08);
	backdrop-filter: blur(18px) saturate(155%);
}

.blog-page--v2 .pagination-wrap .page-numbers {
	display: grid;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: 0.65rem;
	place-items: center;
	border-radius: 0.72rem;
	color: var(--color-purple);
	font-size: 0.62rem;
	font-weight: 780;
	text-decoration: none;
}

.blog-page--v2 .pagination-wrap .page-numbers.current {
	background: var(--color-purple);
	box-shadow: 0 8px 20px rgba(86, 77, 137, 0.22);
	color: #fff;
}

.blog-page--v2 .pagination-wrap a.page-numbers:hover {
	background: rgba(238, 234, 248, 0.82);
}

.blog-library__empty {
	padding: 2rem;
	border: 1px solid rgba(86, 77, 137, 0.1);
	border-radius: 1.4rem;
	background: rgba(248, 247, 251, 0.7);
	text-align: center;
}

@media (max-width: 1100px) {
	.blog-hero--v2 .blog-hero__grid {
		grid-template-columns: 1fr;
		gap: 2.8rem;
	}

	.blog-hero--v2 .blog-hero__copy {
		max-width: 47rem;
	}

	.blog-hero__feature-wrap {
		width: min(100%, 52rem);
		margin-inline: auto;
	}

	.blog-page--v2 .post-grid--v2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.blog-hero--v2 {
		min-height: 0;
		padding: calc(var(--header-height) + 3.2rem) 0 4rem;
	}

	.blog-hero--v2 h1 {
		font-size: clamp(2.7rem, 12vw, 4.2rem) !important;
	}

	.blog-hero__feature-wrap {
		padding: 0.75rem 0 0;
	}

	.blog-featured--v2 {
		padding: 0.42rem;
		border-radius: 1.45rem;
	}

	.blog-featured__browser b {
		display: none;
	}

	.blog-featured__browser {
		grid-template-columns: 1fr auto 1fr;
	}

	.blog-featured--v2 .blog-featured__image {
		border-radius: 1.05rem 1.05rem 0.65rem 0.65rem;
	}

	.blog-featured--v2 .blog-featured__body {
		padding: 1rem;
	}

	.blog-featured__meta,
	.post-card__meta-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.55rem;
	}

	.blog-hero__float {
		right: -0.2rem;
		top: -0.25rem;
		min-width: 8rem;
		padding: 0.72rem 0.8rem;
	}

	.blog-proof {
		margin-top: -1rem;
	}

	.blog-proof__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 1.25rem;
	}

	.blog-proof__grid > div {
		min-height: 4.8rem;
		border-right: 0;
		border-bottom: 1px solid rgba(86, 77, 137, 0.08);
	}

	.blog-proof__grid > div:nth-child(odd) {
		border-right: 1px solid rgba(86, 77, 137, 0.08);
	}

	.blog-proof__grid > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.blog-library {
		margin-top: 0;
		padding-top: 5.5rem;
	}

	.blog-page--v2 .post-grid--v2 {
		grid-template-columns: 1fr;
	}

	.blog-page--v2 .post-card--v2 {
		border-radius: 1.35rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.blog-featured--v2,
	.blog-page--v2 .post-card--v2,
	.blog-page--v2 .post-card__image img {
		transition: none;
	}
}

/* Responsive hardening for narrow screens and imported legal documents. */
@media (max-width: 680px) {
	.site-main > article.section:first-child {
		padding-top: calc(var(--header-height) + 2rem);
	}

	.prose table {
		display: block;
		width: 100% !important;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 340px) {
	body .site-main .hero h1 {
		font-size: 2.34rem !important;
	}

	body .site-main .hero h1 span {
		font-size: 1em;
	}
}
