*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	/* Banner / hero palette (aligned with gradient triangles & cards) */
	--ictsm-night: #061018;
	--ictsm-night-mid: #081420;
	--ictsm-teal: #5eead4;
	--ictsm-teal-soft: rgba(94, 234, 212, 0.45);
	--ictsm-cyan: #0d7a9a;
	--ictsm-cyan-deep: #095a73;
	--ictsm-amber: #e8941c;
	--bg-deep: var(--ictsm-night);
	--bg-soft: #e8f4f4;
	--surface: #ffffff;
	--text: #0a1520;
	--text-muted: #4a6170;
	--accent: var(--ictsm-cyan);
	--accent-deep: var(--ictsm-cyan-deep);
	--accent-hot: var(--ictsm-amber);
	--border: rgba(9, 90, 115, 0.12);
	--radius: 14px;
	--radius-xl: 24px;
	--shadow-lg: 0 24px 64px rgba(6, 16, 24, 0.22);
	--font-body: "DM Sans", system-ui, sans-serif;
	--font-display: "Plus Jakarta Sans", var(--font-body);
	--header-h: 66px;
	color-scheme: light;
}

/* auto = native scrolling speed; smooth animates every wheel tick and feels sluggish */
html {
	scroll-behavior: auto;
	height: auto !important;
	max-height: none !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
}

/* Win over plugins / inline CSS that set smooth scrolling on the root */
html:has(body.ictsm-onepage) {
	scroll-behavior: auto !important;
}

/* Divi / builder CSS often sets body to height:100% + overflow:hidden — restore normal document scroll */
body.ictsm-onepage {
	margin: 0;
	position: relative;
	height: auto !important;
	max-height: none !important;
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: hidden;
	overflow-y: auto !important;
	overscroll-behavior-y: auto;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
}

body.ictsm-onepage #main {
	overflow: visible;
	min-height: 0;
}

body.ictsm-onepage h1,
body.ictsm-onepage h2,
body.ictsm-onepage h3,
body.ictsm-onepage .hero__title,
body.ictsm-onepage .section__title {
	font-family: var(--font-display);
	letter-spacing: -0.02em;
}

section[id] {
	scroll-margin-top: calc(var(--header-h) + 16px);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: min(1140px, 100% - 2rem);
	margin-inline: auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(94, 234, 212, 0.18);
	box-shadow: 0 1px 0 rgba(9, 90, 115, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: var(--header-h);
	padding-block: 0.35rem;
	width: min(1140px, 100% - 2rem);
	margin-inline: auto;
}

.site-header__end {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem 0.75rem;
	flex: 1;
	min-width: 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}

.brand__mark {
	position: relative;
	display: flex;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	isolation: isolate;
}

.brand__mark::before {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 20px;
	background: radial-gradient(circle at 50% 45%, rgba(94, 234, 212, 0.35) 0%, rgba(232, 148, 28, 0.08) 55%, transparent 72%);
	opacity: 0.85;
	z-index: 0;
	pointer-events: none;
	animation: ictsm-brand-glow 2.6s ease-in-out infinite;
}

.brand__mark::after {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 17px;
	border: 1px solid rgba(94, 234, 212, 0.35);
	box-shadow:
		0 0 12px rgba(94, 234, 212, 0.35),
		0 0 28px rgba(94, 234, 212, 0.2);
	z-index: 0;
	pointer-events: none;
	animation: ictsm-brand-ring 2.6s ease-in-out infinite;
}

.brand__mark img {
	position: relative;
	z-index: 1;
	width: 56px;
	height: 56px;
	display: block;
	border-radius: 12px;
	animation: ictsm-brand-pulse 2.6s ease-in-out infinite;
	box-shadow: 0 0 14px rgba(94, 234, 212, 0.35);
}

@keyframes ictsm-brand-glow {
	0%,
	100% {
		opacity: 0.55;
		transform: scale(0.96);
	}
	50% {
		opacity: 1;
		transform: scale(1.06);
	}
}

@keyframes ictsm-brand-ring {
	0%,
	100% {
		opacity: 0.65;
		box-shadow:
			0 0 10px rgba(94, 234, 212, 0.25),
			0 0 22px rgba(94, 234, 212, 0.12);
		border-color: rgba(94, 234, 212, 0.28);
	}
	50% {
		opacity: 1;
		box-shadow:
			0 0 16px rgba(94, 234, 212, 0.55),
			0 0 36px rgba(232, 148, 28, 0.2);
		border-color: rgba(94, 234, 212, 0.55);
	}
}

@keyframes ictsm-brand-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 12px rgba(94, 234, 212, 0.3);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 0 20px rgba(94, 234, 212, 0.5), 0 0 36px rgba(232, 148, 28, 0.12);
	}
}

.brand__text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	line-height: 1.2;
	min-width: 0;
}

.brand__name {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.3125rem;
	letter-spacing: -0.03em;
	color: var(--text);
}

.brand__tagline {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.35rem;
	align-items: center;
	justify-content: flex-end;
}

.site-nav a {
	color: var(--text);
	font-weight: 600;
	font-size: 0.8125rem;
	text-decoration: none;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	transition: background 0.2s ease;
}

.site-nav a:hover {
	background: rgba(94, 234, 212, 0.12);
	color: var(--accent-deep);
}

.nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	padding: 0.5rem;
	cursor: pointer;
	border-radius: 8px;
}

.nav-toggle::before {
	content: "";
	display: block;
	width: 22px;
	height: 14px;
	border-top: 2px solid var(--text);
	border-bottom: 2px solid var(--text);
	box-shadow: 0 6px 0 var(--text);
}

@media (max-width: 720px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding: 0.75rem 0 0;
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-header__end {
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}

.network-status {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	background: rgba(94, 234, 212, 0.12);
	color: var(--text);
	border: 1px solid rgba(94, 234, 212, 0.4);
	text-decoration: none;
}

.network-status__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ictsm-teal);
	box-shadow: 0 0 10px rgba(94, 234, 212, 0.65);
	flex-shrink: 0;
}

.network-status--warning {
	background: rgba(232, 148, 28, 0.14);
	border-color: rgba(232, 148, 28, 0.5);
}

.network-status--warning .network-status__dot {
	background: var(--ictsm-amber);
	box-shadow: 0 0 8px rgba(232, 148, 28, 0.55);
}

.network-status--issue,
.network-status--offline {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(220, 38, 38, 0.35);
}

.network-status--issue .network-status__dot,
.network-status--offline .network-status__dot {
	background: #ef4444;
}

/* Hero — CSS-only aurora mesh (no photo / SVG stack) */
.hero {
	position: relative;
	min-height: min(92vh, 960px);
	min-height: min(92dvh, 960px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: clamp(5.25rem, 11vw, 7.5rem) 1rem clamp(3.5rem, 7vw, 5.5rem);
	color: #fff;
	overflow-x: clip;
	overflow-y: visible;
	background: #020810;
}

.hero__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero__aurora {
	position: absolute;
	inset: -25%;
	background:
		radial-gradient(ellipse 58% 48% at 18% 22%, rgba(94, 234, 212, 0.22) 0%, transparent 58%),
		radial-gradient(ellipse 52% 44% at 88% 18%, rgba(13, 122, 154, 0.28) 0%, transparent 55%),
		radial-gradient(ellipse 55% 48% at 72% 78%, rgba(232, 148, 28, 0.16) 0%, transparent 58%),
		radial-gradient(ellipse 70% 55% at 35% 88%, rgba(9, 90, 115, 0.24) 0%, transparent 62%),
		linear-gradient(168deg, #010608 0%, #061c28 42%, #04121a 78%, #020508 100%);
	animation: ictsm-hero-aurora 32s ease-in-out infinite alternate;
}

/* Paused via .hero--offscreen (JS) while the hero is not visible — saves compositing on desktop */
.hero--offscreen .hero__aurora {
	animation-play-state: paused;
}

.hero__grain {
	position: absolute;
	inset: 0;
	opacity: 0.22;
	background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 3px 3px;
	pointer-events: none;
	mask-image: radial-gradient(ellipse 88% 78% at 50% 42%, black 18%, transparent 80%);
}

@keyframes ictsm-hero-aurora {
	0% {
		transform: translate3d(-1.2%, -0.8%, 0) scale(1);
	}
	100% {
		transform: translate3d(1.5%, 1.1%, 0) scale(1.04);
	}
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	background: radial-gradient(ellipse 92% 82% at 50% 38%, transparent 0%, rgba(2, 8, 14, 0.35) 55%, rgba(1, 4, 8, 0.88) 100%);
}

.hero__content {
	position: relative;
	z-index: 6;
	width: 100%;
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.hero__grid {
	width: min(1120px, 100%);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: clamp(1.25rem, 3.5vw, 2rem);
	align-items: stretch;
	pointer-events: none;
}

@media (max-width: 768px) {
	.hero__grid {
		grid-template-columns: 1fr;
	}
}

.hero__card {
	padding: clamp(1.65rem, 4.2vw, 2.5rem);
	border-radius: var(--radius-xl);
	background: rgba(8, 20, 32, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.14);
	pointer-events: auto;
}

.hero__card--primary {
	grid-column: 1 / -1;
	border-left: 3px solid rgba(94, 234, 212, 0.55);
}

@media (min-width: 769px) {
	.hero__card--primary {
		grid-column: 1 / 2;
	}
}

.hero__card--accent {
	min-height: 220px;
	background-image:
		linear-gradient(145deg, rgba(8, 20, 32, 0.9) 0%, rgba(6, 16, 24, 0.78) 100%),
		var(--ictsm-card-accent-image, none);
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__lead--accent {
	position: relative;
	z-index: 1;
}

.hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4.5vw, 3.1rem);
	font-weight: 800;
	line-height: 1.12;
	background: linear-gradient(120deg, #fff 0%, #5eead4 45%, #e8941c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

.hero__badge {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: rgba(94, 234, 212, 0.15);
	color: #5eead4;
	border: 1px solid rgba(94, 234, 212, 0.35);
}

.hero__subtitle {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.8vw, 1.65rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.hero__cta {
	margin: 1rem 0 0;
}

.btn--hero-outline {
	display: inline-flex;
	padding: 0.65rem 1.35rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--hero-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(94, 234, 212, 0.55);
	color: #fff;
}

/* Sections */
.section {
	padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--muted {
	background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(232, 244, 244, 0.65) 100%);
}

.section__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

.section__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ictsm-cyan);
}

.section__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 3.2vw, 2.15rem);
	font-weight: 800;
	color: var(--text);
}

.section__lead {
	margin: 0;
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.service-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.service-grid--eight,
.service-grid--nine {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.service-grid {
		grid-template-columns: 1fr;
	}
}

.service-card.service-card--compact {
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.85rem;
	text-align: center;
	padding: 1.25rem 1rem;
	border: 2px solid var(--svc-accent, var(--accent));
	background: var(--surface);
	box-shadow: 0 2px 12px rgba(12, 18, 34, 0.08);
}

@supports (background: color-mix(in srgb, red, blue)) {
	.service-card.service-card--compact {
		background: color-mix(in srgb, var(--svc-accent) 11%, var(--surface));
		box-shadow: 0 2px 16px color-mix(in srgb, var(--svc-accent) 18%, transparent);
	}
}

.service-grid > li {
	display: flex;
	min-width: 0;
}

/* Lead card: Anywhere Connectivity — always first cell (row 1, col 1) in LTR grids */
.service-grid--nine > li.service-grid__item--first {
	grid-column: 1;
	grid-row: 1;
}

a.service-card--link.service-card--compact {
	flex: 1;
	width: 100%;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

a.service-card--link.service-card--compact:hover {
	transform: translateY(-2px);
}

a.service-card--link.service-card--compact:focus-visible {
	outline: 2px solid var(--svc-accent, var(--accent));
	outline-offset: 3px;
}

.service-card__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.35rem;
	height: 3.35rem;
	border-radius: 12px;
	flex-shrink: 0;
	color: var(--svc-accent, var(--accent));
	background: rgba(12, 18, 34, 0.05);
	border: 2px solid var(--svc-accent, var(--accent));
	animation: ictsm-svc-icon-pulse 2.5s ease-in-out infinite;
}

.service-card__icon::before {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 15px;
	border: 1px solid var(--svc-accent, var(--accent));
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
	animation: ictsm-svc-icon-ring 2.5s ease-in-out infinite;
}

#services.services--offscreen .service-card__icon,
#services.services--offscreen .service-card__icon::before {
	animation-play-state: paused;
}

.service-grid--nine > li:nth-child(1) .service-card__icon,
.service-grid--nine > li:nth-child(1) .service-card__icon::before {
	animation-delay: 0s;
}

.service-grid--nine > li:nth-child(2) .service-card__icon,
.service-grid--nine > li:nth-child(2) .service-card__icon::before {
	animation-delay: 0.2s;
}

.service-grid--nine > li:nth-child(3) .service-card__icon,
.service-grid--nine > li:nth-child(3) .service-card__icon::before {
	animation-delay: 0.4s;
}

.service-grid--nine > li:nth-child(4) .service-card__icon,
.service-grid--nine > li:nth-child(4) .service-card__icon::before {
	animation-delay: 0.6s;
}

.service-grid--nine > li:nth-child(5) .service-card__icon,
.service-grid--nine > li:nth-child(5) .service-card__icon::before {
	animation-delay: 0.8s;
}

.service-grid--nine > li:nth-child(6) .service-card__icon,
.service-grid--nine > li:nth-child(6) .service-card__icon::before {
	animation-delay: 1s;
}

.service-grid--nine > li:nth-child(7) .service-card__icon,
.service-grid--nine > li:nth-child(7) .service-card__icon::before {
	animation-delay: 1.2s;
}

.service-grid--nine > li:nth-child(8) .service-card__icon,
.service-grid--nine > li:nth-child(8) .service-card__icon::before {
	animation-delay: 1.4s;
}

.service-grid--nine > li:nth-child(9) .service-card__icon,
.service-grid--nine > li:nth-child(9) .service-card__icon::before {
	animation-delay: 1.6s;
}

@keyframes ictsm-svc-icon-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 color-mix(in srgb, var(--svc-accent) 28%, transparent);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 16px 1px color-mix(in srgb, var(--svc-accent) 40%, transparent);
		transform: scale(1.03);
	}
}

@keyframes ictsm-svc-icon-ring {
	0%,
	100% {
		opacity: 0.35;
		transform: scale(1);
	}
	50% {
		opacity: 0.95;
		transform: scale(1.12);
	}
}

@supports (background: color-mix(in srgb, red, blue)) {
	.service-card__icon {
		background: color-mix(in srgb, var(--svc-accent) 14%, var(--surface));
	}
}

.service-card__svg {
	position: relative;
	z-index: 1;
	display: block;
	width: 2rem;
	height: 2rem;
}

.service-card--compact .service-card__title {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.4;
}

@supports (color: color-mix(in srgb, red, blue)) {
	.service-card--compact .service-card__title {
		color: color-mix(in srgb, var(--svc-accent) 42%, var(--text));
	}
}

.service-card {
	padding: 1.35rem 1.25rem;
	border-radius: var(--radius);
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: 0 2px 12px rgba(12, 18, 34, 0.06);
}

.service-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--text);
}

.service-card__text {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.55;
}

.approach__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}

.approach__grid--split {
	align-items: start;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.approach__media {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.approach__img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: 0 16px 48px rgba(12, 18, 34, 0.12);
}

.approach__card {
	margin: 0;
}

.section__kicker--left {
	text-align: left;
}

@media (max-width: 768px) {
	.approach__grid {
		grid-template-columns: 1fr;
	}
}

.feature__title {
	margin: 0 0 0.75rem;
	font-size: 1.35rem;
	font-weight: 800;
}

.feature__text {
	margin: 0;
	color: var(--text-muted);
	line-height: 1.65;
}

.feature__text--lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-weight: 600;
	color: var(--text);
	line-height: 1.5;
}

/* Contact */
.section--contact {
	background: linear-gradient(180deg, #f0f8f8 0%, var(--bg-soft) 100%);
}

.contact-layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(1.5rem, 4vw, 2.75rem);
	align-items: stretch;
}

@media (max-width: 800px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}
}

.contact-form-wrap {
	background: linear-gradient(
		155deg,
		rgba(6, 16, 24, 0.97) 0%,
		rgba(9, 90, 115, 0.72) 42%,
		rgba(6, 16, 24, 0.94) 100%
	);
	color: #fff;
	padding: clamp(2rem, 5vw, 3.25rem);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(94, 234, 212, 0.2);
}

.contact-form-wrap .contact__title {
	margin: 0 0 1.75rem;
	font-size: clamp(1.65rem, 3.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
}

.contact-form__notice {
	margin: 0 0 1.25rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
}

.contact-form__notice--success {
	background: rgba(94, 234, 212, 0.15);
	border: 1px solid rgba(94, 234, 212, 0.45);
	color: #ecfdf9;
}

.contact-form__notice--error {
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.45);
	color: #fee2e2;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.field--full {
	grid-column: 1 / -1;
}

.contact-form .btn {
	grid-column: 1 / -1;
	justify-self: start;
	margin-top: 0.35rem;
}

@media (max-width: 560px) {
	.contact-form {
		grid-template-columns: 1fr;
	}
}

.field__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.85;
	color: rgba(255, 255, 255, 0.85);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 0.8rem 1rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	font: inherit;
}

.contact-form input[type="checkbox"] {
	width: auto;
	min-width: 1.15rem;
	height: 1.15rem;
	margin: 0.2rem 0 0;
	padding: 0;
	border-radius: 4px;
	accent-color: var(--accent, #5eead4);
	cursor: pointer;
	align-self: flex-start;
}

.field__label--robot {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.65rem;
	cursor: pointer;
	text-transform: none;
	letter-spacing: normal;
	font-size: 0.95rem;
	font-weight: 600;
	opacity: 1;
	line-height: 1.45;
}

.field__robot-text {
	flex: 1;
}

.contact-form select {
	cursor: pointer;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
	background-position: calc(100% - 1.15rem) 55%, calc(100% - 0.75rem) 55%;
	background-size: 6px 6px;
	background-repeat: no-repeat;
}

.contact-form select option {
	color: var(--text);
	background: var(--surface);
}

.contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.btn--primary {
	background: linear-gradient(135deg, var(--ictsm-amber) 0%, #f0a332 100%);
	color: var(--ictsm-night);
}

.btn--primary:hover {
	background: linear-gradient(135deg, #f0a840 0%, #f5b24a 100%);
}

.contact-aside {
	padding: 1.5rem 1.35rem;
	background: var(--surface);
	border-radius: 14px;
	border: 1px solid var(--border);
	align-self: start;
}

.contact-aside__title {
	margin: 0 0 0.65rem;
	font-size: 1.125rem;
	font-weight: 800;
}

.contact-aside__text {
	margin: 0 0 1rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.contact-aside__network {
	margin: 0 0 1rem;
}

.contact-aside__network .network-status--aside {
	margin-top: 0.15rem;
}

.contact-aside a {
	color: var(--accent-deep);
	font-weight: 700;
}

.contact-aside a.network-status {
	color: var(--text);
	font-weight: 600;
	text-decoration: none;
}

/* Footer */
.site-footer {
	padding: 2.25rem 0;
	background: var(--bg-deep);
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.8125rem;
	text-align: center;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.65);
}

body.ictsm-onepage .prose a:not([class]) {
	color: var(--accent-deep);
}

body.ictsm-onepage .btn--primary {
	color: var(--ictsm-night);
}

@media (prefers-reduced-motion: reduce) {
	.hero__aurora {
		animation: none !important;
		transform: none !important;
	}

	.brand__mark::before,
	.brand__mark::after {
		animation: none !important;
		opacity: 0.75;
		transform: none;
	}

	.brand__mark img {
		animation: none !important;
		transform: none;
		box-shadow: 0 0 12px rgba(94, 234, 212, 0.35);
	}

	.service-card__icon,
	.service-card__icon::before {
		animation: none !important;
		transform: none !important;
		filter: none !important;
		box-shadow: none !important;
	}

	.service-card__icon::before {
		opacity: 0.4;
	}

	a.service-card--link.service-card--compact:hover {
		transform: none;
	}
}
