/**
 * Contact page — IoT Tech Minimal + FAQ Bot + Slide Verify · v6.25.0
 * Sky blue + neon green halos — mobile-first quick actions.
 */

.contact-hub {
	--ch-text: #1e293b;
	--ch-muted: #64748b;
	--ch-line: rgba(14, 165, 233, 0.14);
	--ch-sky: #0ea5e9;
	--ch-sky-bright: #38bdf8;
	--ch-neon: #00e5ff;
	--ch-green: #4ade80;
	--ch-green-deep: #22c55e;
	--ch-glass: rgba(255, 255, 255, 0.72);
	--ch-glass-border: rgba(255, 255, 255, 0.92);
	--ch-radius: 16px;
	color: var(--ch-text);
	background: linear-gradient(165deg, #f0f9ff 0%, #f8fafc 38%, #ffffff 100%);
	overflow-x: clip;
}

/* ── Hero + neon halos ── */
.contact-hub__hero {
	position: relative;
	overflow: hidden;
	padding: 14px 0 12px;
	border-bottom: 1px solid var(--ch-line);
}

.contact-hub__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	pointer-events: none;
	opacity: 0.45;
}

.contact-hub__glow--sky {
	width: 320px;
	height: 320px;
	top: -120px;
	inset-inline-end: -60px;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, transparent 68%);
}

.contact-hub__glow--green {
	width: 260px;
	height: 260px;
	bottom: -80px;
	inset-inline-start: -40px;
	background: radial-gradient(circle, rgba(74, 222, 128, 0.28) 0%, transparent 70%);
}

.contact-hub__wave {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--ch-neon) 18%,
		var(--ch-green) 50%,
		var(--ch-sky-bright) 82%,
		transparent 100%
	);
	background-size: 200% 100%;
	opacity: 0.75;
	animation: contact-wave-flow 5s ease-in-out infinite;
}

@keyframes contact-wave-flow {
	0%, 100% { background-position: 100% 0; opacity: 0.55; }
	50% { background-position: 0% 0; opacity: 0.9; }
}

.contact-hub__hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

/* ── Hero intro card — compact + neon hover ── */
.contact-hub__intro {
	position: relative;
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
	padding: 14px 16px 12px;
	border-radius: 18px;
	background: var(--ch-glass);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--ch-glass-border);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.98) inset,
		0 12px 40px rgba(14, 165, 233, 0.07);
	transition:
		border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-hub__intro::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, transparent 30%, rgba(0, 229, 255, 0) 50%, rgba(74, 222, 128, 0) 70%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.contact-hub__intro:hover,
.contact-hub__intro:focus-within {
	border-color: rgba(0, 229, 255, 0.38);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 1) inset,
		0 0 0 1px rgba(0, 229, 255, 0.1),
		0 16px 48px rgba(14, 165, 233, 0.14),
		0 0 48px rgba(74, 222, 128, 0.1);
	transform: translateY(-2px);
}

.contact-hub__intro:hover::before,
.contact-hub__intro:focus-within::before {
	opacity: 1;
	background: linear-gradient(135deg, rgba(0, 229, 255, 0.55), rgba(74, 222, 128, 0.45), rgba(56, 189, 248, 0.4));
}

.contact-hub__intro-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}

.contact-hub__signal {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	opacity: 0.88;
	transition: opacity 0.35s ease, filter 0.35s ease;
}

.contact-hub__intro:hover .contact-hub__signal,
.contact-hub__intro:focus-within .contact-hub__signal {
	opacity: 1;
	filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.35));
}

.contact-hub__signal-svg {
	width: 72px;
	height: 34px;
}

.contact-hub__signal-ring {
	transform-origin: 50% 100%;
	animation: contact-signal-pulse 2.4s ease-in-out infinite;
}

.contact-hub__signal-ring--2 { animation-delay: 0.15s; }
.contact-hub__signal-ring--3 { animation-delay: 0.3s; }
.contact-hub__signal-ring--4 { animation-delay: 0.45s; }
.contact-hub__signal-ring--5 { animation-delay: 0.6s; }

@keyframes contact-signal-pulse {
	0%, 100% { opacity: 0.45; transform: scaleY(0.82); }
	50% { opacity: 1; transform: scaleY(1); }
}

.contact-hub__hero-inner .contact-hub__badge,
.contact-hub__hero-inner .contact-hub__title,
.contact-hub__hero-inner .contact-hub__lead,
.contact-hub__hero-inner .contact-hub__tags {
	grid-column: unset;
}

.contact-hub__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--ch-sky);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(14, 165, 233, 0.18);
	box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
	transition:
		color 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}

.contact-hub__intro:hover .contact-hub__badge,
.contact-hub__intro:focus-within .contact-hub__badge {
	color: var(--ch-neon);
	border-color: rgba(0, 229, 255, 0.35);
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.contact-hub__live {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ch-green-deep);
	box-shadow: 0 0 10px rgba(74, 222, 128, 0.85);
	animation: contact-live-pulse 2s ease-in-out infinite;
}

@keyframes contact-live-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.88); }
}

.contact-hub__title {
	margin: 0 0 6px;
	font-size: clamp(1.125rem, 2.8vw, 1.5rem);
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: var(--ch-text);
	text-wrap: balance;
	transition: color 0.4s ease, text-shadow 0.4s ease;
}

.contact-hub__intro:hover .contact-hub__title,
.contact-hub__intro:focus-within .contact-hub__title {
	background: linear-gradient(105deg, var(--ch-text) 0%, var(--ch-sky) 42%, var(--ch-green-deep) 88%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
	filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.12));
}

.contact-hub__lead {
	margin: 0 auto 8px;
	max-width: 580px;
	font-size: 0.8125rem;
	line-height: 1.7;
	color: var(--ch-muted);
	text-wrap: pretty;
	transition: color 0.35s ease;
}

.contact-hub__intro:hover .contact-hub__lead,
.contact-hub__intro:focus-within .contact-hub__lead {
	color: #475569;
}

.contact-hub__lead strong {
	color: var(--ch-text);
	font-weight: 800;
	transition: color 0.35s ease;
}

.contact-hub__intro:hover .contact-hub__lead strong,
.contact-hub__intro:focus-within .contact-hub__lead strong {
	color: var(--ch-sky);
}

.contact-hub__kw {
	font-weight: 700;
	color: var(--ch-text);
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-hub__intro:hover .contact-hub__kw,
.contact-hub__intro:focus-within .contact-hub__kw {
	color: var(--ch-green-deep);
	text-shadow: 0 0 12px rgba(74, 222, 128, 0.25);
}

.contact-hub__hq {
	display: inline-block;
	margin-inline-start: 4px;
	padding: 1px 8px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--ch-sky);
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.16);
	white-space: nowrap;
}

.contact-hub__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-hub__tags li {
	padding: 2px 9px;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
	color: var(--ch-sky);
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(14, 165, 233, 0.16);
	transition:
		color 0.3s ease,
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.contact-hub__tags li:hover {
	color: var(--ch-green-deep);
	background: rgba(240, 253, 250, 0.95);
	border-color: rgba(74, 222, 128, 0.35);
	box-shadow: 0 0 16px rgba(74, 222, 128, 0.14);
	transform: translateY(-1px);
}

/* ── Quick actions (mobile-first) ── */
.contact-quick {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
}

.contact-quick__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 8px 10px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--ch-text);
	background: var(--ch-glass);
	border: 1px solid var(--ch-glass-border);
	box-shadow: 0 4px 16px rgba(14, 165, 233, 0.06);
	transition:
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.35s ease;
	-webkit-tap-highlight-color: transparent;
}

.contact-quick__btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--ch-sky);
	transition: color 0.25s ease, filter 0.25s ease;
}

.contact-quick__btn span {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.contact-quick__btn small {
	font-size: 0.625rem;
	font-weight: 600;
	color: var(--ch-muted);
}

.contact-quick__btn strong {
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--ch-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.contact-quick__btn:hover,
.contact-quick__btn:focus-visible {
	border-color: rgba(0, 229, 255, 0.42);
	background: rgba(255, 255, 255, 0.94);
	box-shadow:
		0 0 0 1px rgba(0, 229, 255, 0.1),
		0 10px 32px rgba(14, 165, 233, 0.12),
		0 0 24px rgba(0, 229, 255, 0.08);
	transform: translateY(-3px);
	outline: none;
}

.contact-quick__btn:hover svg,
.contact-quick__btn:focus-visible svg {
	color: var(--ch-neon);
	filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.45));
}

.contact-quick__btn--primary {
	border-color: rgba(74, 222, 128, 0.35);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 253, 250, 0.92) 100%);
}

.contact-quick__btn--primary svg {
	color: var(--ch-green-deep);
}

.contact-quick__btn--primary:hover,
.contact-quick__btn--primary:focus-visible {
	border-color: rgba(74, 222, 128, 0.55);
	box-shadow:
		0 0 0 1px rgba(74, 222, 128, 0.15),
		0 8px 28px rgba(74, 222, 128, 0.18);
}

.contact-quick__btn--primary:hover svg {
	color: var(--ch-green);
	filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.55));
}

/* ── Layout ── */
.contact-hub__body {
	padding-top: 18px;
	padding-bottom: 32px;
}

.contact-hub__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 16px;
	align-items: start;
}

.contact-hub__channels {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

/* ── Glass cards ── */
.contact-glass {
	position: relative;
	background: var(--ch-glass) !important;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid var(--ch-glass-border);
	border-radius: var(--ch-radius);
	padding: 14px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 10px 28px rgba(14, 165, 233, 0.05);
	transition:
		border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-glass:hover {
	border-color: rgba(0, 229, 255, 0.32);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.98) inset,
		0 12px 36px rgba(14, 165, 233, 0.1),
		0 0 28px rgba(74, 222, 128, 0.08);
	transform: translateY(-2px);
}

.contact-glass__head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.contact-glass__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.95);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-glass:hover .contact-glass__icon {
	transform: scale(1.04);
}

.contact-glass__icon svg {
	width: 19px;
	height: 19px;
}

.contact-glass__icon--sky {
	color: var(--ch-sky);
	box-shadow: 0 0 16px rgba(14, 165, 233, 0.18);
}

.contact-glass:hover .contact-glass__icon--sky {
	box-shadow: 0 0 22px rgba(0, 229, 255, 0.35);
}

.contact-glass__icon--green {
	color: var(--ch-green-deep);
	box-shadow: 0 0 16px rgba(74, 222, 128, 0.18);
}

.contact-glass:hover .contact-glass__icon--green {
	box-shadow: 0 0 22px rgba(74, 222, 128, 0.35);
}

.contact-glass__icon--cyan {
	color: var(--ch-neon);
	box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

.contact-glass:hover .contact-glass__icon--cyan {
	box-shadow: 0 0 22px rgba(0, 229, 255, 0.32);
}

.contact-glass__title {
	margin: 0 0 3px;
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.01em;
	color: var(--ch-text);
	transition: color 0.3s ease;
}

.contact-glass:hover .contact-glass__title {
	color: var(--ch-sky);
}

.contact-glass__subtitle {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.55;
	color: var(--ch-muted);
}

/* ── Phone rows — full tap targets ── */
.contact-line-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.contact-line-list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 48px;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.88);
	transition:
		border-color 0.22s ease,
		background 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
	-webkit-tap-highlight-color: transparent;
}

.contact-line-list__item:hover,
.contact-line-list__item:focus-visible {
	border-color: rgba(0, 229, 255, 0.32);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
	transform: translateX(-3px);
	outline: none;
}

.contact-line-list__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	min-width: 0;
	flex: 1;
}

.contact-line-list__meta strong {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ch-text);
}

.contact-line-list__badge {
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.5625rem;
	font-weight: 800;
	color: var(--ch-green-deep);
	background: rgba(74, 222, 128, 0.12);
	border: 1px solid rgba(74, 222, 128, 0.28);
}

.contact-line-list__tel {
	flex-shrink: 0;
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--ch-sky);
}

.contact-line-list__go {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	color: var(--ch-sky);
	background: rgba(14, 165, 233, 0.08);
	opacity: 0.7;
	transition: opacity 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.contact-line-list__go svg {
	width: 15px;
	height: 15px;
}

.contact-line-list__item:hover .contact-line-list__go,
.contact-line-list__item:focus-visible .contact-line-list__go {
	opacity: 1;
	color: var(--ch-green-deep);
	background: rgba(74, 222, 128, 0.14);
}

/* ── Procurement ── */
.contact-procurement {
	margin: 0;
	display: grid;
	gap: 6px;
}

.contact-procurement__row {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.82);
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.contact-procurement__row:hover {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(0, 229, 255, 0.22);
	box-shadow: 0 0 14px rgba(74, 222, 128, 0.08);
}

.contact-procurement__row dt {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--ch-muted);
}

.contact-procurement__row dd {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--ch-text);
}

.contact-procurement__pending {
	font-weight: 600;
	color: var(--ch-muted);
}

/* ── Geo + map ── */
.contact-address {
	margin: 0 0 10px;
	font-style: normal;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.7;
	color: var(--ch-text);
}

.contact-hours {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contact-hours__item {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 0.75rem;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.78);
	color: var(--ch-muted);
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.contact-hours__item:hover {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(14, 165, 233, 0.2);
	box-shadow: 0 0 12px rgba(14, 165, 233, 0.08);
}

.contact-hours__item strong {
	color: var(--ch-text);
	font-weight: 700;
}

.contact-hours__item.is-closed strong {
	color: #ea580c;
}

.contact-zones {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.contact-zones li {
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
	color: var(--ch-sky);
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.2);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-zones li:hover {
	background: rgba(74, 222, 128, 0.1);
	border-color: rgba(74, 222, 128, 0.28);
	color: var(--ch-green-deep);
}

.contact-map {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.92);
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.08);
	transition: box-shadow 0.3s ease;
}

.contact-glass--geo:hover .contact-map {
	box-shadow:
		0 8px 28px rgba(14, 165, 233, 0.12),
		0 0 20px rgba(0, 229, 255, 0.08);
}

.contact-map__frame {
	display: block;
	width: 100%;
	height: 180px;
	border: 0;
	background: #e0f2fe;
}

.contact-map__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ch-text);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.78);
	border-top: 1px solid rgba(255, 255, 255, 0.95);
	transition: background 0.22s ease, color 0.22s ease;
}

.contact-map__link svg {
	width: 16px;
	height: 16px;
	color: var(--ch-sky);
	transition: color 0.22s ease;
}

.contact-map__link:hover,
.contact-map__link:focus-visible {
	background: rgba(240, 253, 250, 0.95);
	color: var(--ch-green-deep);
	outline: none;
}

.contact-map__link:hover svg {
	color: var(--ch-neon);
}

/* ── Form ── */
.contact-hub__form-pane {
	position: sticky;
	top: calc(var(--header-height, 72px) + 12px);
}

.contact-form__title {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.01em;
	color: var(--ch-text);
	transition: color 0.3s ease;
}

.contact-glass--form:hover .contact-form__title {
	color: var(--ch-sky);
}

.contact-form__intro {
	margin: 0 0 14px;
	font-size: 0.8125rem;
	line-height: 1.65;
	color: var(--ch-muted);
}

.contact-form--official .contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.contact-form--official .form-group {
	margin-bottom: 10px;
}

.contact-form--official label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ch-text);
}

.contact-form--official input,
.contact-form--official select,
.contact-form--official textarea {
	width: 100%;
	padding: 12px 13px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	color: var(--ch-text);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(14, 165, 233, 0.16);
	border-radius: 12px;
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		background 0.22s ease;
}

.contact-form--official input::placeholder,
.contact-form--official textarea::placeholder {
	color: rgba(100, 116, 139, 0.75);
}

.contact-form--official input:focus,
.contact-form--official select:focus,
.contact-form--official textarea:focus {
	outline: none;
	border-color: rgba(0, 229, 255, 0.5);
	background: #fff;
	box-shadow:
		0 0 0 3px rgba(0, 229, 255, 0.12),
		0 0 16px rgba(74, 222, 128, 0.08);
}

.contact-form--official textarea {
	resize: vertical;
	min-height: 100px;
}

/* ── Slide-to-verify rail ── */
.contact-form__verify {
	margin-bottom: 10px;
}

.crypto-slider-verification {
	position: relative;
	direction: ltr;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(14, 165, 233, 0.16);
	overflow: hidden;
	user-select: none;
	touch-action: none;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.crypto-slider-verification--verified {
	border-color: rgba(74, 222, 128, 0.45);
	background: rgba(240, 253, 250, 0.95);
}

.crypto-slider-verification__track {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	background: linear-gradient(90deg, rgba(74, 222, 128, 0.18), rgba(56, 189, 248, 0.12));
	pointer-events: none;
	transition: width 0.08s linear;
}

.slider-handle {
	position: absolute;
	left: 0;
	top: 0;
	width: 48px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: grab;
	z-index: 2;
	background: linear-gradient(135deg, var(--ch-sky) 0%, var(--ch-sky-bright) 100%);
	border-radius: 11px;
	box-shadow: 0 2px 10px rgba(14, 165, 233, 0.35);
	transform: translateX(0);
	will-change: transform;
}

.slider-handle::after {
	content: "››";
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -2px;
}

.slider-handle:active {
	cursor: grabbing;
}

.slider-handle--snap {
	animation: slider-handle-snap 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slider-handle-snap {
	0% { scale: 0.92; }
	55% { scale: 1.08; }
	100% { scale: 1; }
}

.crypto-slider-verification--verified .slider-handle {
	cursor: default;
	background: linear-gradient(135deg, var(--ch-green-deep) 0%, var(--ch-green) 100%);
	box-shadow: 0 2px 12px rgba(74, 222, 128, 0.35);
}

.crypto-slider-verification--verified .slider-handle::after {
	content: "✓";
	letter-spacing: 0;
}

.slider-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: 56px 12px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ch-muted);
	direction: rtl;
	pointer-events: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.25s ease;
}

.crypto-slider-verification--verified .slider-text {
	color: var(--ch-green-deep);
}

.contact-form__submit {
	width: 100%;
	margin-top: 0;
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.2);
	transition: box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.contact-form__submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.contact-form__submit:not(:disabled):hover {
	box-shadow:
		0 8px 28px rgba(14, 165, 233, 0.28),
		0 0 20px rgba(74, 222, 128, 0.12);
	transform: translateY(-1px);
}

.contact-form__note {
	margin: 10px 0 0;
	font-size: 0.6875rem;
	line-height: 1.6;
	color: var(--ch-muted);
	text-align: center;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.contact-form__alert {
	margin: 0 0 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.55;
}

.contact-form__alert--success {
	color: #166534;
	background: rgba(74, 222, 128, 0.14);
	border: 1px solid rgba(74, 222, 128, 0.35);
}

.contact-form__alert--error {
	color: #b91c1c;
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.3);
}

/* ── Smart FAQ bot ── */
.contact-bot-wrap {
	margin-top: 18px;
}

.contact-bot {
	background: var(--ch-glass) !important;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(74, 222, 128, 0.22);
	border-radius: 18px;
	padding: 16px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 12px 36px rgba(14, 165, 233, 0.08),
		0 0 32px rgba(74, 222, 128, 0.06);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-bot:hover {
	border-color: rgba(0, 229, 255, 0.35);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.98) inset,
		0 16px 40px rgba(14, 165, 233, 0.12),
		0 0 28px rgba(74, 222, 128, 0.12);
}

.contact-bot__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.contact-bot__avatar {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(74, 222, 128, 0.25);
	box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
	animation: contact-bot-glow 3s ease-in-out infinite;
}

.contact-bot__avatar svg {
	width: 100%;
	height: 100%;
	display: block;
	padding: 6px;
}

@keyframes contact-bot-glow {
	0%, 100% { box-shadow: 0 0 16px rgba(74, 222, 128, 0.12); }
	50% { box-shadow: 0 0 24px rgba(0, 229, 255, 0.22); }
}

.contact-bot__title {
	margin: 0 0 3px;
	font-size: 0.9375rem;
	font-weight: 800;
	color: var(--ch-text);
}

.contact-bot__desc {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.55;
	color: var(--ch-muted);
}

.contact-bot__log {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 220px;
	overflow-y: auto;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.85);
	scroll-behavior: smooth;
}

.contact-bot__bubble {
	max-width: 92%;
	padding: 9px 12px;
	border-radius: 12px;
	font-size: 0.8125rem;
	line-height: 1.65;
}

.contact-bot__bubble--bot {
	align-self: flex-start;
	color: var(--ch-text);
	background: rgba(240, 253, 250, 0.95);
	border: 1px solid rgba(74, 222, 128, 0.22);
}

.contact-bot__bubble--user {
	align-self: flex-end;
	color: #0c4a6e;
	background: rgba(224, 242, 254, 0.95);
	border: 1px solid rgba(56, 189, 248, 0.28);
}

.contact-bot__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.contact-bot__chip {
	padding: 6px 11px;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--ch-sky);
	cursor: pointer;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(14, 165, 233, 0.22);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-bot__chip:hover,
.contact-bot__chip:focus-visible {
	color: var(--ch-green-deep);
	border-color: rgba(74, 222, 128, 0.45);
	background: rgba(240, 253, 250, 0.95);
	box-shadow: 0 0 14px rgba(74, 222, 128, 0.15);
	outline: none;
}

.contact-bot__composer {
	display: flex;
	gap: 8px;
}

.contact-bot__input {
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 16px;
	border-radius: 11px;
	border: 1px solid rgba(14, 165, 233, 0.18);
	background: rgba(255, 255, 255, 0.78);
	color: var(--ch-text);
}

.contact-bot__input:focus {
	outline: none;
	border-color: rgba(0, 229, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.contact-bot__send {
	flex-shrink: 0;
	padding: 10px 16px;
	border-radius: 11px;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 800;
	color: #064e3b;
	cursor: pointer;
	background: linear-gradient(135deg, rgba(74, 222, 128, 0.85), rgba(56, 189, 248, 0.75));
	border: 1px solid rgba(74, 222, 128, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-bot__send:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(74, 222, 128, 0.25);
}

.contact-faq-fallback {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.contact-faq-fallback li {
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.9);
	font-size: 0.8125rem;
	line-height: 1.65;
}

.contact-faq-fallback strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ch-text);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.contact-hub__grid {
		grid-template-columns: 1fr;
	}

	.contact-hub__form-pane {
		position: static;
	}
}

@media (max-width: 720px) {
	.contact-quick {
		grid-template-columns: 1fr;
	}

	.contact-quick__btn {
		min-height: 52px;
	}

	.contact-quick__btn strong {
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.contact-hub__hero {
		padding: 12px 0 10px;
	}

	.contact-hub__intro {
		padding: 12px 14px 10px;
		border-radius: 16px;
	}

	.contact-hub__title {
		font-size: 1.0625rem;
	}

	.contact-hub__lead {
		font-size: 0.78125rem;
		line-height: 1.65;
	}

	.contact-hub__hq {
		display: block;
		margin: 6px auto 0;
		width: fit-content;
	}

	.contact-glass {
		padding: 14px;
		border-radius: 14px;
	}

	.contact-procurement__row {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.contact-form--official .contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-map__frame {
		height: 190px;
	}

	.contact-line-list__item {
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-hub__wave,
	.contact-hub__live,
	.contact-hub__signal-ring,
	.contact-bot__avatar,
	.slider-handle--snap,
	.contact-hub__intro,
	.contact-glass,
	.contact-quick__btn,
	.contact-hub__tags li {
		animation: none;
		transition: none;
	}

	.contact-hub__intro:hover,
	.contact-hub__intro:focus-within,
	.contact-glass:hover,
	.contact-quick__btn:hover {
		transform: none;
	}

	.contact-hub__intro:hover .contact-hub__title,
	.contact-hub__intro:focus-within .contact-hub__title {
		background: none;
		-webkit-text-fill-color: var(--ch-text);
		filter: none;
	}

	.contact-quick__btn,
	.contact-line-list__item,
	.contact-glass,
	.contact-glass__icon,
	.contact-map__link,
	.contact-form--official input,
	.contact-form--official select,
	.contact-form--official textarea,
	.contact-form__submit {
		transition: none;
	}
}
