/* ==========================================================================
   24InfoTech — design system and layout
   Dark surfaces, a single indigo/mint accent pair, and one signature motif:
   the 24-cell field that sits behind the hero and separates major sections.
   ========================================================================== */

:root {
	--ink: #06070a;
	--surface: #0b0d12;
	--surface-2: #11141c;
	--surface-3: #171b25;
	--line: rgba(255, 255, 255, .08);
	--line-strong: rgba(255, 255, 255, .18);
	--text: #eef1f6;
	--muted: #8a93a3;
	--accent: #6e8bff;
	--accent-2: #3be0c6;
	--accent-soft: rgba(110, 139, 255, .14);

	--font-display: 'Satoshi', 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-mono: ui-monospace, 'SFMono-Regular', 'Roboto Mono', monospace;

	--shell: 1500px;
	--gutter: clamp(20px, 4vw, 48px);
	--section: clamp(76px, 9vw, 148px);
	--radius: 14px;
	--radius-lg: 22px;

	--step--1: clamp(.8125rem, .78rem + .18vw, .875rem);
	--step-0: clamp(1rem, .96rem + .2vw, 1.0625rem);
	--step-1: clamp(1.125rem, 1.05rem + .4vw, 1.3125rem);
	--step-2: clamp(1.5rem, 1.3rem + .9vw, 2rem);
	--step-3: clamp(2rem, 1.6rem + 1.9vw, 3.1rem);
	--step-4: clamp(2.6rem, 1.8rem + 3.6vw, 5.1rem);

	--ease: cubic-bezier(.22, .61, .36, 1);
}

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

/* The header is fixed, so anchor jumps (the "On this page" links, #contact and
   the skip link) must stop short of it or the target sits underneath. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.is-menu-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:not([class]) { text-decoration: none; transition: color .25s var(--ease); }
a:not([class]):hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -.025em;
	margin: 0 0 .5em;
	text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }

:focus-visible {
	outline: 2px solid var(--accent-2);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection { background: var(--accent); color: #fff; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}

.skip-link:focus {
	position: fixed; top: 14px; left: 14px; z-index: 200;
	width: auto; height: auto; clip: auto; clip-path: none;
	padding: 12px 18px; background: var(--accent); color: #fff; border-radius: 8px;
}

/* --------------------------------------------------------------- layout */

.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * .6); }
.section--surface { background: var(--surface); }
.section--edge { border-top: 1px solid var(--line); }

.section__head {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	align-items: end;
	margin-bottom: clamp(36px, 5vw, 64px);
}

.section__lead { color: var(--muted); font-size: var(--step-1); margin: 0; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	font-family: var(--font-mono);
	font-size: var(--step--1);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted);
}

.eyebrow__tick {
	width: 22px; height: 1px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* ------------------------------------------------------- signature motif */

.cellfield {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 1fr;
	pointer-events: none;
	opacity: .5;
}

.cellfield__cell {
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background .5s var(--ease);
}

.cellfield__cell.is-lit { background: var(--accent-soft); }

/* --------------------------------------------------------------- buttons */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: .01em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}

.btn__arrow { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--text); color: var(--ink); }
.btn--primary:hover { background: var(--accent); color: #fff; }

.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

.btn--quiet { padding-inline: 0; color: var(--muted); }
.btn--quiet:hover { color: var(--text); }

/* ---------------------------------------------------------------- header */

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 90;
	transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
	border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
	background: rgba(6, 7, 10, .82);
	backdrop-filter: saturate(150%) blur(14px);
	border-bottom-color: var(--line);
}

.site-header { transition-property: background, border-color; }

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 76px;
}

/* The brand and the actions (including the menu toggle) stay above the
   full-screen mobile nav overlay, so the logo and close button remain usable. */
.brand,
.site-header__actions { position: relative; z-index: 2; }

.brand__text { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; }

.brand__mark {
	display: grid;
	place-items: center;
	width: 34px; height: 34px;
	border-radius: 10px;
	background: linear-gradient(140deg, var(--accent), var(--accent-2));
	color: #05060a;
	font-size: 15px;
}

.custom-logo { max-height: 42px; width: auto; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.site-header__progress {
	display: block;
	height: 2px;
	width: var(--scroll-progress, 0%);
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	transition: width .1s linear;
}

/* ------------------------------------------------------------ navigation */

.nav__list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }

.nav__item { position: relative; }
.nav__item--mega { position: static; }

.nav__link {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	font-size: var(--step--1);
	color: var(--muted);
	border-radius: 8px;
	transition: color .3s var(--ease);
}

.nav__item:hover > .nav__link,
.nav__item.is-open > .nav__link,
.current-menu-item > .nav__link { color: var(--text); }

.nav__toggle { display: none; }

.mega {
	position: absolute;
	top: 100%;
	left: 50%;
	width: min(1120px, 94vw);
	padding-top: 14px;
	transform: translate(-50%, 10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

/* An invisible bridge across the gap keeps the panel open while the pointer
   travels from the menu item down to it. */
.mega::before {
	content: "";
	position: absolute;
	inset: -18px 0 auto;
	height: 34px;
}

.nav__item--mega:hover .mega,
.nav__item--mega.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.mega__inner {
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 30px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.mega__columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 26px 30px;
	margin: 0; padding: 0; list-style: none;
}

.mega__heading {
	display: block;
	margin-bottom: 12px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted);
}

.mega__links { margin: 0; padding: 0; list-style: none; display: grid; gap: 2px; }

.mega__anchor {
	display: block;
	padding: 8px 10px;
	margin-inline: -10px;
	border-radius: 8px;
	font-size: var(--step--1);
	color: var(--text);
	transition: background .25s var(--ease), color .25s var(--ease);
}

.mega__anchor:hover { background: var(--accent-soft); color: #fff; }

.menu-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
}

.menu-toggle__bars { display: grid; gap: 5px; justify-items: center; }
.menu-toggle__bars i { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */

.hero {
	position: relative;
	padding-top: clamp(112px, 13vh, 150px);
	padding-bottom: clamp(48px, 6vw, 84px);
	overflow: hidden;
}

.hero__field {
	position: absolute;
	inset: 0 0 30% 0;
	mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
}

.hero__glow {
	position: absolute;
	top: -18vh; left: 50%;
	width: min(1100px, 120vw); aspect-ratio: 1;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(110, 139, 255, .22), transparent 62%);
	pointer-events: none;
}

.hero__inner { position: relative; display: grid; gap: clamp(30px, 4vw, 60px); grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; }

.hero__title { margin-bottom: 24px; }
.hero__title em { font-style: normal; background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero__lead { max-width: 52ch; color: var(--muted); font-size: var(--step-1); margin-bottom: 34px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: clamp(30px, 4vw, 48px);
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.hero__stat strong { display: block; font-family: var(--font-display); font-size: var(--step-2); }
.hero__stat span { color: var(--muted); font-size: var(--step--1); }

/* ----------------------------------------------- hero trust badge */
.trust { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; }
.trust__avatars { display: inline-flex; }
.trust__avatar {
	width: 42px; height: 42px;
	margin-left: -12px;
	border-radius: 50%;
	display: grid; place-items: center;
	border: 2px solid var(--ink);
	color: rgba(255, 255, 255, .92);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}
.trust__avatar:first-child { margin-left: 0; }
.trust__avatar svg { width: 26px; height: 26px; fill: currentColor; }
.trust__avatar--1 { background: linear-gradient(140deg, var(--accent), var(--accent-2)); }
.trust__avatar--2 { background: linear-gradient(140deg, #8f7bff, var(--accent)); }
.trust__avatar--3 { background: linear-gradient(140deg, var(--accent-2), var(--accent)); }
.trust__avatar--4 { background: linear-gradient(140deg, #5ad6ff, #8f7bff); }

.trust__body { display: grid; gap: 4px; }
.trust__label { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: var(--step-0); line-height: 1; }
.trust__rating { display: inline-flex; align-items: center; gap: 8px; }

.stars { position: relative; display: inline-flex; line-height: 0; }
.stars__base, .stars__fill { display: inline-flex; }
.stars__base svg, .stars__fill svg { width: 15px; height: 15px; }
.stars__base { color: rgba(255, 255, 255, .16); }
.stars__base svg { fill: currentColor; }
.stars__fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--accent-2); }
.stars__fill svg { fill: currentColor; }

.trust__score { color: var(--text); font-weight: 600; font-size: var(--step--1); }
.trust__count { color: var(--muted); font-size: var(--step--1); }

.hero__panel {
	position: relative;
	background: none;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	transform-style: preserve-3d;
	isolation: isolate;
}

.hero__panel { display: flex; flex-direction: column; justify-content: center; gap: 18px; }

.hero__viz {
	position: relative;
	z-index: 2;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-height: 460px;
	display: grid;
	place-items: center;
	margin-inline: auto;
}

/* The globe canvas fills its frame; everything else is drawn in JS. */
.hero__viz canvas { width: 100%; height: 100%; display: block; }

.hero__tags {
	position: relative; z-index: 2;
	display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
	margin-top: 0;
}
.hero__tag {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(23, 27, 37, .6);
	border: 1px solid var(--line);
	backdrop-filter: blur(6px);
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
	color: var(--muted);
	transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.hero__tag:hover { color: var(--text); border-color: var(--accent-2); transform: translateY(-2px); }
.hero__tagIcon { width: 13px; height: 13px; color: var(--accent-2); }



/* ---------------------------------------------------------------- marquee */

.marquee { border-block: 1px solid var(--line); padding-block: 22px; overflow: hidden; }
.marquee__track { display: flex; gap: 56px; width: max-content; }
.marquee__item { font-family: var(--font-display); font-size: var(--step-1); color: var(--muted); white-space: nowrap; }

/* ------------------------------------------------------------------ cards */

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}

.card::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: radial-gradient(420px circle at var(--x, 50%) var(--y, 0%), rgba(110, 139, 255, .16), transparent 60%);
	opacity: 0;
	transition: opacity .45s var(--ease);
	pointer-events: none;
}

.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card:hover::after { opacity: 1; }

.card__icon {
	width: 44px; height: 44px;
	display: grid; place-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 12px;
	color: var(--accent-2);
}
.card__icon .icon { width: 20px; height: 20px; }

.card__title { font-size: var(--step-1); margin: 0; }
.card__text { color: var(--muted); font-size: var(--step--1); margin: 0; }
.card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: var(--step--1); color: var(--accent-2); }
.card__link .icon { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.card:hover .card__link .icon { transform: translateX(4px); }

.card--media { padding: 0; }
.card--media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card--media .card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

.card__meta { display: flex; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------- process */

.process { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }

.process__step { background: var(--surface); padding: 26px 28px; display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 18px; align-items: start; transition: background .4s var(--ease); }
.process__step:hover { background: var(--surface-2); }

.process__number { font-family: var(--font-mono); font-size: var(--step--1); color: var(--accent); letter-spacing: .1em; }
.process__title { margin: 0 0 6px; font-size: var(--step-1); }
.process__text { margin: 0; color: var(--muted); font-size: var(--step--1); }

/* ------------------------------------------------------------- industries */

.industries { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 60px); align-items: start; }

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

.industries__item { border-bottom: 1px solid var(--line); }

.industries__button {
	width: 100%;
	display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
	padding: 20px 4px;
	background: none; border: 0; cursor: pointer;
	font-family: var(--font-display); font-size: var(--step-2); font-weight: 500;
	color: var(--muted); text-align: left;
	transition: color .35s var(--ease), padding-left .35s var(--ease);
}

.industries__item.is-active .industries__button,
.industries__button:hover { color: var(--text); padding-left: 12px; }

.industries__index { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }

.industries__panel { display: none; }
.industries__panel.is-active { display: block; }

.industries__card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }

/* ------------------------------------------------------------ testimonials */

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

.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.quote__text { font-size: var(--step-1); line-height: 1.5; margin: 0; }
.quote__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote__name { display: block; font-weight: 600; font-size: var(--step--1); }
.quote__role { display: block; color: var(--muted); font-size: 13px; }

/* ------------------------------------------------------------------ forms */

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form__field { display: grid; gap: 8px; }
.form__label { font-size: var(--step--1); color: var(--muted); }

.form__control {
	width: 100%;
	padding: 14px 16px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--text);
	font: inherit;
	font-size: var(--step--1);
	transition: border-color .3s var(--ease), background .3s var(--ease);
}

.form__control:focus { border-color: var(--accent); background: var(--surface-3); outline: none; }
.form__control::placeholder { color: #5d6575; }
textarea.form__control { min-height: 140px; resize: vertical; }

.form__error { color: #ff8f8f; font-size: 13px; min-height: 1em; }
.form__honeypot { position: absolute; left: -9999px; }

.form__status { border-radius: 12px; padding: 14px 16px; font-size: var(--step--1); display: none; }
.form__status.is-visible { display: block; }
.form__status--ok { background: rgba(59, 224, 198, .12); color: var(--accent-2); }
.form__status--error { background: rgba(255, 120, 120, .12); color: #ff9b9b; }

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

/* ------------------------------------------------------------------- cta */

.cta {
	position: relative;
	background: linear-gradient(150deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(36px, 6vw, 72px);
	overflow: hidden;
}

.cta__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 32px; align-items: center; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* --------------------------------------------------------------- article */

.page-head { padding-top: clamp(130px, 16vh, 190px); padding-bottom: clamp(30px, 5vw, 56px); position: relative; }
.page-head__title { max-width: 20ch; }
.page-head__lead { max-width: 60ch; color: var(--muted); font-size: var(--step-1); }

.breadcrumbs { margin-bottom: 22px; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: 13px; color: var(--muted); }
.breadcrumbs__item + .breadcrumbs__item::before { content: '/'; margin-right: 8px; color: var(--line-strong); }
.breadcrumbs__item a:hover { color: var(--text); }

.article { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(30px, 5vw, 64px); align-items: start; }

.article__body { max-width: 72ch; }
.article__body h2 { margin-top: 1.8em; font-size: var(--step-2); }
.article__body h3 { margin-top: 1.5em; font-size: var(--step-1); }
.article__body ul, .article__body ol { margin: 1.1em 0; padding-left: 1.3em; color: var(--muted); }
.article__body li { margin-bottom: .5em; }
.article__body li::marker { color: var(--accent-2); }
.article__body img { border-radius: var(--radius); margin-block: 1.6em; }
.article__body blockquote { margin: 1.8em 0; padding-left: 22px; border-left: 2px solid var(--accent); color: var(--text); font-size: var(--step-1); }
.article__body code { font-family: var(--font-mono); font-size: .9em; background: var(--surface-2); padding: 2px 6px; border-radius: 5px; }
.article__body pre { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; overflow-x: auto; }

.article__meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: var(--step--1); margin-bottom: 26px; }

.answer-block { background: var(--surface-2); border-left: 2px solid var(--accent-2); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin-bottom: 32px; }
.answer-block__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 6px; }
.answer-block__text { margin: 0; color: var(--text); }

.toc { position: sticky; top: 110px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.toc__title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: var(--step--1); }
.toc__list a { color: var(--muted); }
.toc__list a:hover, .toc__list a.is-current { color: var(--text); }
.toc__list .toc--h3 { padding-left: 14px; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; background: none; border: 0; color: var(--text); font-family: var(--font-display); font-size: var(--step-1); text-align: left; cursor: pointer; }
.faq__sign { width: 18px; height: 18px; position: relative; flex: none; }
.faq__sign::before, .faq__sign::after { content: ''; position: absolute; inset: 50% 0 auto; height: 1.5px; background: var(--muted); transition: transform .35s var(--ease); }
.faq__sign::after { transform: rotate(90deg); }
.faq__item.is-open .faq__sign::after { transform: rotate(0); }
.faq__answer { display: none; padding-bottom: 24px; color: var(--muted); max-width: 70ch; }
.faq__item.is-open .faq__answer { display: block; }

.share { display: flex; gap: 12px; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: var(--step--1); color: var(--muted); }
.share a:hover { color: var(--text); }

.pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding-inline: 12px; border: 1px solid var(--line); border-radius: 10px; font-size: var(--step--1); color: var(--muted); }
.pagination .page-numbers.current, .pagination .page-numbers:hover { border-color: var(--accent); color: var(--text); }

.widget { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.widget__title { font-size: var(--step-1); }

/* ---------------------------------------------------------------- search */

.search-form { display: flex; gap: 10px; }
.search-form .search-field { flex: 1; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; color: var(--text); font: inherit; }
.search-form .search-submit { padding: 14px 22px; border-radius: 999px; border: 0; background: var(--text); color: var(--ink); font-weight: 600; cursor: pointer; }

.result { padding: 26px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.result__type { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.result__title { font-size: var(--step-2); margin: 0; }
.result__text { color: var(--muted); margin: 0; }

/* ------------------------------------------------------------------- 404 */

.error-404 { min-height: 78vh; display: grid; place-items: center; text-align: center; position: relative; }
.error-404__code { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 12rem); line-height: .9; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error-404__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* ---------------------------------------------------------------- footer */

.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding-block: clamp(56px, 7vw, 90px) 32px; }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(36px, 5vw, 70px); }
.site-footer__blurb { color: var(--muted); max-width: 40ch; margin-block: 20px; }
.site-footer__contact { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 6px; font-size: var(--step--1); }
.site-footer__addresses { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; color: var(--muted); font-size: 13px; max-width: 42ch; }
.site-footer__addressLabel { display: block; color: var(--text); font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; }

.site-footer__columns { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.site-footer__heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }

/* The heading is a button so it can act as an accordion on small screens. On
   wider screens it must not look like one: no chrome, just the label. */
.site-footer__toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	text-align: left;
	cursor: default;
	transition: color .25s var(--ease);
}
.site-footer__sign { display: none; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: var(--step--1); }
.site-footer__list a { color: var(--text); opacity: .8; }
.site-footer__list a:hover { opacity: 1; color: var(--accent-2); }

.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-top: clamp(40px, 6vw, 70px); padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.site-footer__legal { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; }
.site-footer__credit { margin: 0; }
.site-footer__creditLink {
	color: var(--text);
	transition: color .25s var(--ease);
}
.site-footer__creditLink:hover { color: var(--accent-2); }

/* ---------------------------------------------------------------- cursor */

.cursor { position: fixed; top: 0; left: 0; z-index: 120; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 6px; height: 6px; background: #fff; }
.cursor__ring { width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .5); transition: width .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease); }
.cursor.is-hovering .cursor__ring { width: 56px; height: 56px; border-color: #fff; }

/* ==========================================================================
   Additions — social row, contact details, redesigned form, richer mega menu
   ========================================================================== */

/* --------------------------------------------------------- social row */
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social {
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: var(--surface-2);
	color: var(--muted);
	transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover {
	color: var(--brand, var(--accent-2));
	border-color: var(--brand, var(--accent-2));
	background: var(--surface-3);
	transform: translateY(-3px);
}

/* ----------------------------------------------------- contact details */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; }
.contact-line__icon {
	flex: none; width: 40px; height: 40px;
	border-radius: 11px;
	display: grid; place-items: center;
	background: var(--surface-2);
	border: 1px solid var(--line);
	color: var(--accent-2);
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.contact-line:hover .contact-line__icon,
.contact-line:focus-within .contact-line__icon {
	background: linear-gradient(140deg, var(--accent), var(--accent-2));
	border-color: transparent;
	color: #05060a;
}
.contact-line__svg { width: 18px; height: 18px; }
.contact-line__body { display: grid; gap: 3px; }
.contact-line__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact-line__value { color: var(--text); font-size: var(--step--1); line-height: 1.5; }
.contact-line__value a:hover { color: var(--accent-2); }
.site-footer__column--wide { grid-column: span 2; }

/* --------------------------------------------------- redesigned form */
.form {
	display: grid;
	gap: 18px;
	background: linear-gradient(165deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 40px);
	box-shadow: 0 34px 80px rgba(0, 0, 0, .38);
}
.form__label { font-size: var(--step--1); color: var(--muted); font-weight: 500; }
.form__control {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 15px 16px;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.form__control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-soft);
	background: var(--surface);
	outline: none;
}
select.form__control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a93a3' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}
.form__control[aria-invalid="true"] { border-color: #ff8f8f; box-shadow: 0 0 0 3px rgba(255, 120, 120, .12); }
.form .btn--primary { width: 100%; justify-content: center; padding: 16px 22px; margin-top: 4px; }
.form .btn--primary:hover { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #fff; }
.form__status { font-weight: 500; border: 1px solid transparent; }
.form__status--ok { border-color: rgba(59, 224, 198, .3); }
.form__status--error { border-color: rgba(255, 120, 120, .3); }
.form.is-sent { position: relative; }

/* ----------------------------------------------- contact page layout */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 64px); align-items: start; }
.info-card {
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 3vw, 32px);
}
.info-card + .info-card { margin-top: 20px; }
.info-card__title { font-size: var(--step-1); margin-bottom: 20px; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 14px; border-radius: 999px;
	background: var(--surface-3); border: 1px solid var(--line);
	font-size: 13px; color: var(--muted);
}
.contact-badge svg { width: 15px; height: 15px; color: var(--accent-2); }

/* --------------------------------------------------- richer mega menu */
.mega__inner { padding: 34px; }
.mega__columns { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px 34px; }
.mega__anchor { display: flex; align-items: flex-start; gap: 12px; padding: 10px; }
.mega__ico { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-3); border: 1px solid var(--line); color: var(--accent-2); }
.mega__ico svg { width: 17px; height: 17px; }
.mega__anchorTitle { color: var(--text); font-size: var(--step--1); }
.mega__foot { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.mega__footText { color: var(--muted); font-size: 13px; }
.form__head { margin-bottom: 4px; }
.form__title { font-size: var(--step-2); margin: 0 0 6px; }
.form__subtitle { color: var(--muted); font-size: var(--step--1); margin: 0; }

/* ==========================================================================
   Ambient background, pro mega menu, FAQ layout and equal-height contact
   ========================================================================== */

/* ------------------------------------------------------ ambient layer */
.ambient {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.site-main, .site-footer { position: relative; z-index: 1; }
.site-header { z-index: 90; }

.ambient__grid {
	position: absolute;
	inset: -2px;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: radial-gradient(120% 90% at 50% 0%, #000 10%, transparent 72%);
	animation: tfi-grid 28s linear infinite;
}

.ambient__aurora {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .5;
	will-change: transform;
}
.ambient__aurora--1 { width: 46vw; height: 46vw; top: -12vh; left: -6vw; background: radial-gradient(circle, rgba(110, 139, 255, .32), transparent 68%); animation: tfi-drift-a 26s ease-in-out infinite; }
.ambient__aurora--2 { width: 40vw; height: 40vw; top: 28vh; right: -10vw; background: radial-gradient(circle, rgba(59, 224, 198, .22), transparent 68%); animation: tfi-drift-b 32s ease-in-out infinite; }
.ambient__aurora--3 { width: 34vw; height: 34vw; bottom: -14vh; left: 34vw; background: radial-gradient(circle, rgba(150, 110, 255, .20), transparent 68%); animation: tfi-drift-c 38s ease-in-out infinite; }

.ambient__particles { position: absolute; inset: 0; }
.ambient__particles i {
	position: absolute;
	left: var(--x);
	bottom: -12px;
	width: 3px; height: 3px;
	border-radius: 50%;
	background: var(--accent-2);
	opacity: .35;
	animation: tfi-rise var(--s, 24s) linear var(--d, 0s) infinite;
}

@keyframes tfi-grid { to { background-position: 74px 74px, 74px 74px; } }
@keyframes tfi-drift-a { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(6vw, 8vh, 0) scale(1.12); } }
@keyframes tfi-drift-b { 0%, 100% { transform: translate3d(0, 0, 0) scale(1.05); } 50% { transform: translate3d(-7vw, -6vh, 0) scale(.92); } }
@keyframes tfi-drift-c { 0%, 100% { transform: translate3d(0, 0, 0) scale(.95); } 50% { transform: translate3d(4vw, -9vh, 0) scale(1.15); } }
@keyframes tfi-rise {
	0% { transform: translateY(0); opacity: 0; }
	12% { opacity: .5; }
	88% { opacity: .5; }
	100% { transform: translateY(-108vh); opacity: 0; }
}

/* ------------------------------------------------- pro mega navigation */
.nav__link { gap: 6px; }
.nav__caret { display: inline-flex; transition: transform .3s var(--ease); }
.nav__caret svg { width: 14px; height: 14px; }
.nav__item--mega:hover > .nav__link .nav__caret,
.nav__item--mega.is-open > .nav__link .nav__caret { transform: rotate(180deg); }


.mega__inner {
	position: relative;
	overflow: hidden;
	padding: 32px;
	background: linear-gradient(165deg, #171b25, #0b0d12);
	border: 1px solid var(--line-strong);
	box-shadow: 0 40px 110px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* A slow sheen and a soft glow keep the panel feeling alive without noise. */
.mega__inner::before {
	content: "";
	position: absolute;
	inset: -40% -10% auto;
	height: 320px;
	background: radial-gradient(60% 100% at 30% 0%, rgba(110, 139, 255, .22), transparent 70%);
	pointer-events: none;
	animation: tfi-mega-glow 9s ease-in-out infinite;
}
.mega__inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, .028) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, .028) 1px, transparent 1px);
	background-size: 46px 46px;
	pointer-events: none;
}

@keyframes tfi-mega-glow { 0%, 100% { opacity: .55; transform: translateX(-6%); } 50% { opacity: 1; transform: translateX(6%); } }

.mega__columns { position: relative; z-index: 1; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px 26px; }

.mega__column + .mega__column { position: relative; }
.mega__column + .mega__column::before {
	content: "";
	position: absolute;
	inset: 6px auto 6px -13px;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--line), transparent);
}

.mega__heading {
	display: inline-flex; align-items: center; gap: 8px;
	margin-bottom: 14px; padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	width: 100%;
	color: var(--accent-2);
}

.mega__anchor {
	position: relative;
	display: grid;
	grid-template-columns: 34px 1fr 16px;
	align-items: center;
	gap: 12px;
	padding: 9px 12px;
	margin-inline: -12px;
	border: 1px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	transition: background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.mega__anchor::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--accent), var(--accent-2));
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .3s var(--ease);
}
.mega__anchor:hover {
	background: rgba(255, 255, 255, .04);
	border-color: var(--line);
	transform: translateX(3px);
}
.mega__anchor:hover::before { transform: scaleY(1); }

.mega__ico {
	width: 34px; height: 34px;
	border-radius: 10px;
	display: grid; place-items: center;
	background: var(--surface-3);
	border: 1px solid var(--line);
	color: var(--accent-2);
	transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.mega__ico svg { width: 17px; height: 17px; }
.mega__anchor:hover .mega__ico {
	background: linear-gradient(140deg, var(--accent), var(--accent-2));
	border-color: transparent;
	color: #05060a;
}

.mega__anchorTitle { color: var(--text); font-size: var(--step--1); }
.mega__go { color: var(--muted); opacity: 0; transform: translateX(-6px); transition: opacity .28s var(--ease), transform .28s var(--ease); }
.mega__go svg { width: 15px; height: 15px; }
.mega__anchor:hover .mega__go { opacity: 1; transform: translateX(0); color: var(--accent-2); }

.mega__foot { position: relative; z-index: 1; }

/* --------------------------------------------------------- faq layout */
.faq-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.faq-layout__intro { position: sticky; top: 118px; }
.faq-layout__actions { margin-top: 28px; }

.faq { border-top: 0; display: grid; gap: 12px; }
.faq__item {
	border-bottom: 0;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--surface-2);
	padding: 0 22px;
	transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq__item:hover { border-color: var(--line-strong); }
.faq__item.is-open { border-color: var(--accent); background: var(--surface-3); }
.faq__question { padding: 20px 0; font-size: var(--step-0); }
.faq__item.is-open .faq__sign::before,
.faq__item.is-open .faq__sign::after { background: var(--accent-2); }
.faq__answer { padding-bottom: 22px; }

/* ------------------------------------------- equal-height contact grid */
.contact-grid { align-items: stretch; }
.contact-grid > * { min-width: 0; }
.contact-grid > div:first-child { display: flex; flex-direction: column; }
.contact-grid .info-card:last-of-type { flex: 1; }
.contact-grid .form { align-self: stretch; }

/* ---------------------------------------------------------- card icon */
.card__icon { transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.card:hover .card__icon { background: linear-gradient(140deg, var(--accent), var(--accent-2)); color: #05060a; transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
	.ambient { display: none; }
}

/* ------------------------------------------------- compact enquiry form */
.form { gap: 14px; padding: clamp(22px, 3vw, 30px); }
.form__row { gap: 14px; }
.form__field { gap: 6px; }
.form__control { padding: 11px 14px; border-radius: 10px; }
textarea.form__control { min-height: 96px; }
.form__label { font-size: 12px; }
.form__title { font-size: var(--step-1); margin-bottom: 4px; }
.form__subtitle { font-size: 12px; }
.form__error { font-size: 12px; min-height: 0; }
.form .btn--primary { padding: 13px 22px; margin-top: 2px; }
.form__consent { font-size: 12px; }

/* --------------------------------------------- split content + panel */
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(30px, 5vw, 70px); align-items: center; }
.split__copy .article__body { max-width: none; }
.split__copy .section__lead { margin-bottom: 16px; }

.ticklist { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.ticklist li { position: relative; padding-left: 30px; color: var(--muted); font-size: var(--step--1); }
.ticklist li::before {
	content: "";
	position: absolute;
	left: 0; top: .45em;
	width: 16px; height: 9px;
	border-left: 2px solid var(--accent-2);
	border-bottom: 2px solid var(--accent-2);
	transform: rotate(-45deg);
}


/* --------------------------------------------- service page sidebar */
.article__main { min-width: 0; }
.article__aside { display: grid; gap: 20px; align-content: start; }

.sidecard {
	position: relative;
	overflow: hidden;
	background: linear-gradient(165deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	position: sticky;
	top: 110px;
}
.sidecard__glow {
	position: absolute;
	inset: -60% -20% auto;
	height: 240px;
	background: radial-gradient(60% 100% at 40% 0%, rgba(110, 139, 255, .28), transparent 70%);
	pointer-events: none;
	animation: tfi-mega-glow 10s ease-in-out infinite;
}
.sidecard > * { position: relative; }
.sidecard__title { font-size: var(--step-1); margin: 0 0 8px; }
.sidecard__text { color: var(--muted); font-size: var(--step--1); margin: 0; }
.sidecard__contact { margin: 20px 0; }
.sidecard .btn--primary { width: 100%; justify-content: center; }

/* Only one sticky element in the column, so the card leads and the TOC follows. */
.article__aside .toc { position: sticky; top: 110px; }

/* ------------------------------------------------------ numbered card */
.card--numbered { padding-top: 30px; }
.card__num {
	display: block;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: .16em;
	color: var(--accent-2);
	margin-bottom: 12px;
}

/* -------------------------------------------- interactive visual frame */
.vizframe {
	position: relative;
	overflow: hidden;
	background: linear-gradient(165deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 22px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, .4);
}

.vizframe__glow {
	position: absolute;
	inset: -50% -20% auto;
	height: 300px;
	background: radial-gradient(60% 100% at 45% 0%, rgba(110, 139, 255, .26), transparent 70%);
	pointer-events: none;
	animation: tfi-mega-glow 11s ease-in-out infinite;
}

.vizframe__canvas { position: relative; width: 100%; aspect-ratio: 1 / .82; }
.vizframe__canvas canvas { width: 100%; height: 100%; display: block; }

.vizframe__legend {
	position: relative;
	display: grid; gap: 8px;
	margin-top: 8px; padding-top: 16px;
	border-top: 1px solid var(--line);
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
	color: var(--muted);
}
.vizframe__legend span { display: flex; align-items: center; gap: 9px; }
.vizframe__legend i { width: 8px; height: 8px; border-radius: 2px; background: var(--c); flex: none; }

/* ------------------------------------------------------- service hero */
.servicehero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 48px); align-items: center; }
.servicehero .page-head__title { max-width: 16ch; }

/* The visual carries this hero, so give it real presence. */
.servicehero__viz .hero__viz {
	max-height: none;
	aspect-ratio: 1 / 1;
	margin-top: 0;
}

/* ---------------------------------------------------- in-short block */
.insight {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(22px, 3vw, 30px);
	margin-bottom: 36px;
}

.insight__glow {
	position: absolute;
	inset: -60% -20% auto;
	height: 240px;
	background: radial-gradient(60% 100% at 30% 0%, rgba(59, 224, 198, .2), transparent 70%);
	pointer-events: none;
	animation: tfi-mega-glow 10s ease-in-out infinite;
}

.insight > * { position: relative; }

.insight__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.insight__icon {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	border-radius: 11px;
	background: linear-gradient(140deg, var(--accent), var(--accent-2));
	color: #05060a;
	flex: none;
}
.insight__icon svg { width: 19px; height: 19px; }
.insight__label { margin: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); }

.insight__text { margin: 0; color: var(--text); font-size: var(--step-1); line-height: 1.6; }

.insight__facts {
	list-style: none;
	margin: 22px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.insight__facts li { display: grid; gap: 5px; }
.insight__factLabel { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.insight__factValue { color: var(--text); font-size: var(--step--1); }

/* --------------------------------------------------------- reviews */
.review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: clamp(22px, 3vw, 28px);
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.review:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.review__stars { display: flex; gap: 3px; }
.review__star { color: var(--line-strong); }
.review__star svg { width: 16px; height: 16px; display: block; }
.review__star.is-on { color: #f5b544; }

.review__text { margin: 0; color: var(--text); font-size: var(--step--1); line-height: 1.65; flex: 1; }

.review__person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review__avatar {
	width: 40px; height: 40px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: linear-gradient(140deg, var(--accent), var(--accent-2));
	color: #05060a;
	font-family: var(--font-display); font-weight: 700;
	flex: none;
}
.review__name { display: block; font-size: var(--step--1); }
.review__meta { display: block; color: var(--muted); font-size: 12px; }
