body.page-template-page-contact-us,
body.page-contact-us {
	background: #050608;
}

.brandonic-contact-page {
	background: #050608;
	color: #fff;
	font-family: var(--font-body);
}

.contact-hero {
	align-items: center;
	background: #050608;
	display: grid;
	min-height: 100svh;
	overflow: hidden;
	padding: calc(var(--header-height) + clamp(70px, 8vw, 120px)) clamp(24px, 7vw, 130px) clamp(76px, 8vw, 120px);
	position: relative;
}

.contact-hero__media {
	height: 100%;
	inset: 0 0 0 auto;
	margin: 0;
	overflow: hidden;
	position: absolute;
	transform: translate3d(var(--contact-x, 0), var(--contact-y, 0), 0);
	transition: clip-path 1.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
	width: min(61vw, 1040px);
	z-index: 0;
	clip-path: inset(0 0 0 100%);
	opacity: 0;
}

.contact-hero.is-ready .contact-hero__media {
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

.contact-hero__media img {
	animation: contact-image-drift 12s ease-in-out infinite alternate;
	height: 100%;
	object-fit: cover;
	object-position: 52% center;
	transform: scale(1.025);
	width: 100%;
}

@keyframes contact-image-drift {
	to { transform: scale(1.065) translate3d(-0.7%, -0.4%, 0); }
}

.contact-hero__shade {
	background:
		linear-gradient(90deg, #050608 0%, #050608 34%, rgba(5, 6, 8, 0.88) 48%, rgba(5, 6, 8, 0.12) 76%, rgba(5, 6, 8, 0.2) 100%),
		linear-gradient(180deg, rgba(5, 6, 8, 0.45), transparent 30%, transparent 70%, rgba(5, 6, 8, 0.62)),
		radial-gradient(circle at 72% 38%, rgba(200, 255, 0, 0.08), transparent 24%);
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.contact-hero__content {
	max-width: 760px;
	position: relative;
	z-index: 3;
}

.contact-hero__eyebrow {
	align-items: center;
	color: rgba(255, 255, 255, 0.72);
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 500;
	gap: 12px;
	letter-spacing: 0.16em;
	margin: 0 0 28px;
	text-transform: uppercase;
}

.contact-hero__eyebrow span {
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 22px rgba(200, 255, 0, 0.55);
	height: 9px;
	width: 9px;
}

.contact-hero h1 {
	color: #f7f5ef;
	font-family: var(--font-display);
	font-size: clamp(50px, 6.5vw, 104px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
	max-width: 820px;
}

.contact-hero__intro {
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--font-body);
	font-size: clamp(17px, 1.35vw, 22px);
	line-height: 1.68;
	margin: clamp(28px, 3vw, 42px) 0 0;
	max-width: 650px;
}

.contact-hero__cta {
	align-items: center;
	background: rgba(5, 6, 8, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 600;
	gap: 14px;
	justify-content: center;
	letter-spacing: 0.02em;
	margin-top: clamp(34px, 4vw, 52px);
	min-height: 58px;
	padding: 0 28px;
	text-decoration: none;
	transition: background-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.contact-hero__cta:hover,
.contact-hero__cta:focus-visible {
	background: var(--accent);
	border-color: var(--accent);
	color: #050608;
	transform: translateY(-3px);
}

.contact-hero__cta span {
	font-size: 19px;
	transition: transform 0.28s ease;
}

.contact-hero__cta:hover span { transform: translateX(4px); }

.contact-hero [data-contact-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero.is-ready [data-contact-reveal] {
	opacity: 1;
	transform: translateY(0);
}

.contact-hero.is-ready [data-contact-reveal]:nth-child(2) { transition-delay: 0.08s; }
.contact-hero.is-ready [data-contact-reveal]:nth-child(3) { transition-delay: 0.16s; }
.contact-hero.is-ready [data-contact-reveal]:nth-child(4) { transition-delay: 0.24s; }

.contact-hero__stars {
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.contact-hero__stars span {
	animation: contact-star-twinkle 3.8s ease-in-out infinite;
	background: #fff;
	border-radius: 50%;
	height: 2px;
	opacity: 0.3;
	position: absolute;
	width: 2px;
}

.contact-hero__stars span:nth-child(1) { left: 6%; top: 22%; }
.contact-hero__stars span:nth-child(2) { left: 16%; top: 72%; animation-delay: -1.2s; }
.contact-hero__stars span:nth-child(3) { left: 28%; top: 14%; animation-delay: -2.1s; }
.contact-hero__stars span:nth-child(4) { left: 39%; top: 84%; animation-delay: -0.6s; }
.contact-hero__stars span:nth-child(5) { left: 48%; top: 28%; background: var(--accent); }
.contact-hero__stars span:nth-child(6) { left: 55%; top: 68%; animation-delay: -2.8s; }
.contact-hero__stars span:nth-child(7) { left: 63%; top: 17%; background: var(--accent); animation-delay: -1.7s; }
.contact-hero__stars span:nth-child(8) { left: 72%; top: 77%; }
.contact-hero__stars span:nth-child(9) { left: 82%; top: 12%; animation-delay: -2.4s; }
.contact-hero__stars span:nth-child(10) { left: 91%; top: 64%; background: var(--accent); }
.contact-hero__stars span:nth-child(11) { left: 34%; top: 48%; animation-delay: -1s; }
.contact-hero__stars span:nth-child(12) { left: 76%; top: 42%; animation-delay: -3s; }
.contact-hero__stars span:nth-child(13) { left: 12%; top: 43%; background: var(--accent); }
.contact-hero__stars span:nth-child(14) { left: 94%; top: 31%; animation-delay: -1.9s; }
.contact-hero__stars span:nth-child(15) { left: 58%; top: 36%; animation-delay: -0.7s; }
.contact-hero__stars span:nth-child(16) { left: 62%; top: 53%; background: var(--accent); animation-delay: -2.2s; }
.contact-hero__stars span:nth-child(17) { left: 68%; top: 26%; animation-delay: -1.4s; }
.contact-hero__stars span:nth-child(18) { left: 73%; top: 58%; animation-delay: -3.1s; }
.contact-hero__stars span:nth-child(19) { left: 79%; top: 34%; background: var(--accent); animation-delay: -0.9s; }
.contact-hero__stars span:nth-child(20) { left: 84%; top: 49%; animation-delay: -2.6s; }
.contact-hero__stars span:nth-child(21) { left: 88%; top: 22%; animation-delay: -1.6s; }
.contact-hero__stars span:nth-child(22) { left: 92%; top: 77%; background: var(--accent); animation-delay: -2.9s; }
.contact-hero__stars span:nth-child(23) { left: 70%; top: 88%; animation-delay: -1.1s; }
.contact-hero__stars span:nth-child(24) { left: 96%; top: 47%; animation-delay: -2s; }

@keyframes contact-star-twinkle {
	50% { opacity: 0.9; transform: scale(1.8); }
}

.contact-network {
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		radial-gradient(circle at 50% 48%, rgba(200, 255, 0, 0.1), transparent 28%),
		#050608;
	background-size: 70px 70px, 70px 70px, auto, auto;
	min-height: 100svh;
	overflow: hidden;
	padding: clamp(100px, 10vw, 160px) clamp(24px, 5vw, 88px);
	position: relative;
}

.contact-network__inner {
	align-items: center;
	display: grid;
	gap: clamp(34px, 4vw, 72px);
	grid-template-columns: minmax(230px, 0.8fr) minmax(430px, 1.35fr) minmax(270px, 0.85fr);
	margin: 0 auto;
	max-width: 1760px;
	position: relative;
	z-index: 2;
}

.contact-network__eyebrow {
	color: var(--accent) !important;
	font-family: var(--font-ui);
	font-size: 12px !important;
	font-weight: 600;
	letter-spacing: 0.16em;
	margin: 0 0 24px !important;
	text-transform: uppercase;
}

.contact-network__map {
	align-items: center;
	aspect-ratio: 1.15;
	display: flex;
	justify-content: center;
	position: relative;
}

.contact-network__map::before {
	background: radial-gradient(circle, rgba(200, 255, 0, 0.14), transparent 65%);
	content: '';
	inset: 0;
	position: absolute;
}

.contact-network__map img {
	filter: drop-shadow(0 0 22px rgba(200, 255, 0, 0.16));
	height: auto;
	max-width: 100%;
	position: relative;
	width: 90%;
}

.contact-network__details {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-style: normal;
	padding-top: 24px;
}

.contact-network__details p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 14px;
}

.contact-network__details span {
	color: #fff;
	display: block;
	font-family: var(--font-ui);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-network__details a { color: inherit; text-decoration: none; }
.contact-network__details a:hover { color: var(--accent); }

.contact-network__world {
	aspect-ratio: 1;
	isolation: isolate;
	position: relative;
	transform: translate3d(var(--world-x, 0), var(--world-y, 0), 0);
}

.contact-network__world > img {
	animation: contact-world-float 8s ease-in-out infinite alternate;
	height: 100%;
	object-fit: contain;
	position: relative;
	width: 100%;
	z-index: 1;
}

@keyframes contact-world-float {
	to { transform: translate3d(0, -10px, 0) scale(1.012); }
}

.contact-network__orbit {
	border: 1px solid rgba(200, 255, 0, 0.22);
	border-radius: 50%;
	inset: 7%;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.contact-network__orbit::before {
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(200, 255, 0, 0.9);
	content: '';
	height: 7px;
	left: 50%;
	position: absolute;
	top: -4px;
	transform: translateX(-50%);
	width: 7px;
}

.contact-network__orbit--outer { animation: contact-orbit-turn 18s linear infinite; border-style: dashed; inset: 0; }
.contact-network__orbit--inner { animation: contact-orbit-turn 13s linear infinite reverse; }
.contact-network__orbit--wide {
	animation: contact-orbit-turn 24s linear infinite reverse;
	border-color: rgba(200, 255, 0, 0.34);
	inset: -6%;
}
.contact-network__orbit--tight {
	animation: contact-orbit-turn 10s linear infinite;
	border-color: rgba(200, 255, 0, 0.28);
	border-style: dotted;
	inset: 14%;
}

@keyframes contact-orbit-turn { to { transform: rotate(360deg); } }

.contact-network__hotspot {
	align-items: center;
	display: flex;
	flex-direction: column-reverse;
	gap: 9px;
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 4;
}

.contact-network__hotspot span {
	background: var(--accent);
	border: 4px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.55);
	height: 16px;
	width: 16px;
	animation: contact-hotspot-pulse 2s ease-out infinite;
}

.contact-network__hotspot b {
	background: rgba(5, 6, 8, 0.7);
	border: 1px solid rgba(200, 255, 0, 0.42);
	border-radius: 999px;
	color: #fff;
	font-family: var(--font-ui);
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 8px 12px;
}

@keyframes contact-hotspot-pulse {
	70% { box-shadow: 0 0 0 15px rgba(200, 255, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0); }
}

.contact-network__hotspot--usa { left: 39%; top: 27%; }
.contact-network__hotspot--uk { left: 55%; top: 36%; }
.contact-network__hotspot--india { left: 66%; top: 59%; }
.contact-network__hotspot--uae { left: 48%; top: 58%; }
.contact-network__hotspot--uk span { animation-delay: -0.5s; }
.contact-network__hotspot--india span { animation-delay: -1s; }
.contact-network__hotspot--uae span { animation-delay: -1.5s; }

.contact-network__connector {
	border-top: 1px solid rgba(255, 255, 255, 0.55);
	height: 0;
	left: -30%;
	position: absolute;
	top: 58%;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 1.2s 0.45s cubic-bezier(0.16, 1, 0.3, 1);
	width: 78%;
	z-index: 3;
}

.contact-network.is-visible .contact-network__connector { transform: scaleX(1); }
.contact-network__connector i { display: none; }

.contact-network__statement h2 {
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(34px, 3.2vw, 54px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0 0 30px;
}

.contact-network__statement > p:last-child {
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(16px, 1.2vw, 20px);
	line-height: 1.75;
	margin: 0;
}

.contact-network [data-network-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-network.is-visible [data-network-reveal] { opacity: 1; transform: translateY(0); }
.contact-network.is-visible [data-network-reveal]:nth-child(2) { transition-delay: 0.12s; }
.contact-network.is-visible [data-network-reveal]:nth-child(3) { transition-delay: 0.24s; }

.contact-network__stars { inset: 0; pointer-events: none; position: absolute; }
.contact-network__stars span {
	animation: contact-star-twinkle 4s ease-in-out infinite;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	height: 2px;
	opacity: 0.25;
	position: absolute;
	width: 2px;
}
.contact-network__stars span:nth-child(3n) { background: var(--accent); }
.contact-network__stars span:nth-child(1) { left: 4%; top: 16%; }
.contact-network__stars span:nth-child(2) { left: 11%; top: 74%; animation-delay: -1s; }
.contact-network__stars span:nth-child(3) { left: 18%; top: 37%; animation-delay: -2s; }
.contact-network__stars span:nth-child(4) { left: 27%; top: 83%; animation-delay: -0.7s; }
.contact-network__stars span:nth-child(5) { left: 34%; top: 19%; animation-delay: -2.6s; }
.contact-network__stars span:nth-child(6) { left: 42%; top: 68%; animation-delay: -1.4s; }
.contact-network__stars span:nth-child(7) { left: 49%; top: 9%; }
.contact-network__stars span:nth-child(8) { left: 56%; top: 88%; animation-delay: -2.2s; }
.contact-network__stars span:nth-child(9) { left: 63%; top: 25%; animation-delay: -1.1s; }
.contact-network__stars span:nth-child(10) { left: 70%; top: 71%; animation-delay: -3s; }
.contact-network__stars span:nth-child(11) { left: 78%; top: 13%; animation-delay: -1.8s; }
.contact-network__stars span:nth-child(12) { left: 85%; top: 82%; animation-delay: -0.5s; }
.contact-network__stars span:nth-child(13) { left: 94%; top: 31%; animation-delay: -2.4s; }
.contact-network__stars span:nth-child(14) { left: 8%; top: 49%; animation-delay: -1.3s; }
.contact-network__stars span:nth-child(15) { left: 31%; top: 52%; animation-delay: -2.8s; }
.contact-network__stars span:nth-child(16) { left: 59%; top: 45%; animation-delay: -0.9s; }
.contact-network__stars span:nth-child(17) { left: 75%; top: 56%; animation-delay: -2.1s; }
.contact-network__stars span:nth-child(18) { left: 91%; top: 65%; animation-delay: -1.6s; }

.contact-lightning {
	align-items: center;
	background: #030405;
	color: #fff;
	display: flex;
	justify-content: center;
	min-height: 92svh;
	overflow: hidden;
	padding: clamp(100px, 12vw, 180px) 24px;
	position: relative;
}

.contact-lightning__canvas,
.contact-lightning__shade {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}
.contact-lightning__canvas { pointer-events: none; z-index: 0; }
.contact-lightning__shade {
	background: radial-gradient(circle at center, transparent 0%, rgba(3, 4, 5, 0.18) 52%, rgba(3, 4, 5, 0.72) 100%);
	pointer-events: none;
	z-index: 1;
}

.contact-lightning__content {
	margin: 0 auto;
	max-width: 1050px;
	min-width: 0;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 2;
}
.contact-lightning__eyebrow {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 600;
	gap: 8px;
	letter-spacing: 0.15em;
	margin: 0 0 30px;
	text-transform: uppercase;
}
.contact-lightning__eyebrow span {
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 18px rgba(200, 255, 0, 0.72);
	height: 8px;
	margin-right: 5px;
	width: 8px;
}
.contact-lightning__eyebrow a { color: var(--accent); text-decoration: none; }
.contact-lightning h2 {
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(50px, 7vw, 108px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
}
.contact-lightning__body {
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.75;
	margin: clamp(30px, 4vw, 48px) auto 0;
	max-width: 820px;
}
.contact-lightning__cta {
	align-items: center;
	background: rgba(3, 4, 5, 0.28);
	border: 1px solid var(--accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 650;
	gap: 16px;
	justify-content: center;
	margin-top: 42px;
	min-height: 58px;
	padding: 0 30px;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.contact-lightning__cta:hover {
	background: var(--accent);
	color: #050608;
	transform: translateY(-3px);
}
.contact-lightning__content {
	opacity: 0;
	transform: translateY(38px) scale(0.985);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-lightning.is-visible .contact-lightning__content { opacity: 1; transform: none; }

.contact-project {
	background: #f4f4f2;
	color: #0a0a0a;
	min-height: 100svh;
	overflow: hidden;
	padding: clamp(90px, 10vw, 160px) clamp(24px, 6vw, 110px);
	position: relative;
}

.contact-project__antigravity,
.contact-project__wash {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.contact-project__antigravity { pointer-events: none; z-index: 0; }
.contact-project__wash {
	background:
		radial-gradient(circle at 76% 30%, rgba(200, 255, 0, 0.08), transparent 24%),
		linear-gradient(90deg, rgba(244, 244, 242, 0.44), rgba(244, 244, 242, 0.16));
	pointer-events: none;
	z-index: 1;
}

.contact-project__inner {
	align-items: start;
	display: grid;
	gap: clamp(48px, 7vw, 120px);
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	margin: 0 auto;
	max-width: 1500px;
	position: relative;
	z-index: 2;
}

.contact-project__eyebrow {
	align-items: center;
	color: #090a0b;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.16em;
	margin: 0 0 26px;
	text-transform: uppercase;
}

.contact-project__eyebrow span {
	background: #050608;
	border: 1px solid var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 16px rgba(200, 255, 0, 0.58);
	height: 8px;
	margin-right: 12px;
	width: 8px;
}

.contact-project h2 {
	color: #090a0b;
	font-family: var(--font-display);
	font-size: clamp(46px, 5.4vw, 84px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
}

.contact-project__image {
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	margin: clamp(42px, 6vw, 78px) 0 0;
	overflow: hidden;
	position: relative;
}

.contact-project__image::after {
	background: linear-gradient(135deg, transparent 55%, rgba(200, 255, 0, 0.18));
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.contact-project__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	width: 100%;
}
.contact-project__image:hover img { transform: scale(1.035); }

.contact-project__form {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
		radial-gradient(circle at 12% 0%, rgba(200, 255, 0, 0.2), transparent 34%);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 18px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -1px 0 rgba(10, 10, 10, 0.06);
	padding: clamp(28px, 4vw, 58px);
	position: relative;
	backdrop-filter: blur(24px) saturate(160%);
	-webkit-backdrop-filter: blur(24px) saturate(160%);
}

.contact-project__form::before {
	background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.82), transparent);
	content: '';
	height: 1px;
	left: 10%;
	position: absolute;
	top: -1px;
	width: 80%;
}

.contact-project__form .ff-el-group { margin-bottom: 22px; }
.contact-project__form .ff-el-input--label label {
	color: #101113;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-project__form .ff-el-form-control {
	background: rgba(255, 255, 255, 0.34) !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(10, 10, 10, 0.26) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #0a0a0a !important;
	font-family: var(--font-body) !important;
	font-size: 16px !important;
	min-height: 54px;
	padding: 12px 4px !important;
	transition: border-color 0.25s ease, background-color 0.25s ease !important;
}

.contact-project__form textarea.ff-el-form-control { min-height: 132px; resize: vertical; }
.contact-project__form .ff-el-form-control:focus {
	background: rgba(255, 255, 255, 0.92) !important;
	border-bottom-color: #7da000 !important;
}

.contact-project__form .ff-btn-submit {
	background: #0a0a0a !important;
	border: 1px solid #0a0a0a !important;
	border-radius: 999px !important;
	color: #fff !important;
	font-family: var(--font-ui) !important;
	font-size: 14px !important;
	font-weight: 650 !important;
	min-height: 56px;
	padding: 0 30px !important;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease !important;
}
.contact-project__form .ff-btn-submit:hover {
	background: var(--accent) !important;
	border-color: var(--accent) !important;
	color: #090a0b !important;
	transform: translateY(-2px);
}

.contact-project__direct {
	border-top: 1px solid rgba(10, 10, 10, 0.12);
	margin-top: 30px;
	padding-top: 30px;
}
.contact-project__direct p {
	color: rgba(10, 10, 10, 0.64);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 7px;
}

.contact-project__whatsapp {
	align-items: center;
	background: transparent;
	border: 1px solid #0a0a0a;
	border-radius: 999px;
	color: #0a0a0a;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 13px;
	font-weight: 650;
	gap: 14px;
	margin-top: 24px;
	min-height: 52px;
	padding: 0 24px;
	text-decoration: none;
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.contact-project__whatsapp:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #0a0a0a;
	transform: translateY(-2px);
}

.contact-project [data-project-reveal] {
	opacity: 0;
	transform: translateY(38px);
	transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-project.is-visible [data-project-reveal] { opacity: 1; transform: translateY(0); }
.contact-project.is-visible [data-project-reveal]:nth-child(2) { transition-delay: 0.14s; }

.contact-project__marquee {
	border-top: 1px solid rgba(10, 10, 10, 0.13);
	margin: clamp(80px, 10vw, 150px) 0 0 calc(50% - 50vw);
	overflow: hidden;
	padding: clamp(30px, 4vw, 54px) 0 4px;
	position: relative;
	width: 100vw;
	z-index: 2;
}

.contact-project__marquee-track {
	align-items: center;
	animation: contact-project-marquee 24s linear infinite;
	display: flex;
	width: max-content;
	will-change: transform;
}

.contact-project__marquee-track span {
	color: #000 !important;
	flex: 0 0 auto;
	font-family: var(--font-display);
	font-size: clamp(42px, 6vw, 92px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	padding-right: 0.26em;
	white-space: nowrap;
}
.contact-project__marquee-track b {
	background: #050608;
	border: 2px solid var(--accent);
	border-radius: 50%;
	display: inline-block;
	font-size: 0;
	height: 0.22em;
	margin: 0 0.14em 0.08em;
	vertical-align: middle;
	width: 0.22em;
}

@keyframes contact-project-marquee {
	to { transform: translateX(-33.3333%); }
}

.contact-why {
	background:
		radial-gradient(circle at 76% 30%, rgba(200, 255, 0, 0.06), transparent 24%),
		linear-gradient(90deg, rgba(244, 244, 242, 0.98), rgba(244, 244, 242, 0.94)),
		#f4f4f2;
	color: #08090a;
	overflow: hidden;
	padding: clamp(100px, 11vw, 170px) clamp(24px, 6vw, 110px);
	position: relative;
}
.contact-why__antigravity,
.contact-why__wash {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}
.contact-why__antigravity {
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
}
.contact-why__wash {
	background:
		radial-gradient(circle at 15% 18%, rgba(200, 255, 0, 0.08), transparent 28%),
		linear-gradient(90deg, rgba(244, 244, 242, 0.54), rgba(244, 244, 242, 0.2));
	pointer-events: none;
	z-index: 1;
}
.contact-why__inner {
	display: grid;
	gap: clamp(60px, 10vw, 170px);
	grid-template-columns: minmax(280px, 0.8fr) minmax(460px, 1.2fr);
	margin: 0 auto;
	max-width: 1500px;
	position: relative;
	z-index: 2;
}
.contact-why__intro { position: sticky; top: calc(var(--header-height) + 40px); align-self: start; }
.contact-why__eyebrow {
	align-items: center;
	color: #0a0a0a;
	display: inline-flex;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 650;
	gap: 12px;
	letter-spacing: 0.15em;
	margin: 0 0 28px;
	text-transform: uppercase;
}
.contact-why__eyebrow span { background: var(--accent); border-radius: 50%; height: 8px; width: 8px; }
.contact-why h2 {
	color: #08090a;
	font-family: var(--font-display);
	font-size: clamp(52px, 6.2vw, 92px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
}
.contact-why__intro > p:last-child {
	color: rgba(10, 10, 10, 0.65);
	font-size: clamp(17px, 1.35vw, 21px);
	line-height: 1.72;
	margin: 34px 0 0;
	max-width: 580px;
}
.contact-why__list { list-style: none; margin: 0; padding: 0; }
.contact-why__list li {
	align-items: center;
	border-top: 1px solid rgba(10, 10, 10, 0.18);
	display: grid;
	gap: 22px;
	grid-template-columns: 42px 1fr 32px;
	min-height: 112px;
	padding: 22px 8px;
	transition: background-color 0.3s ease, padding 0.3s ease;
}
.contact-why__list li:last-child { border-bottom: 1px solid rgba(10, 10, 10, 0.18); }
.contact-why__list li:hover { background: rgba(200, 255, 0, 0.36); padding-inline: 20px; }
.contact-why__list span { color: rgba(10, 10, 10, 0.46); font-family: var(--font-ui); font-size: 12px; }
.contact-why__list strong { font-family: var(--font-display); font-size: clamp(23px, 2.4vw, 38px); font-weight: 500; line-height: 1.08; }
.contact-why__list i {
	background: #050608;
	border: 1px solid var(--accent);
	border-radius: 50%;
	display: block;
	height: 15px;
	justify-self: center;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	width: 15px;
}
.contact-why__list li:hover i,
.contact-why__list li:focus-within i {
	background: #050608;
	border-color: var(--accent);
}
.contact-why__list li:hover i { box-shadow: 0 0 0 6px rgba(200, 255, 0, 0.18); transform: scale(1.12); }
.contact-why [data-why-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
.contact-why.is-visible [data-why-reveal] { opacity: 1; transform: none; }
.contact-why.is-visible .contact-why__list li:nth-child(2) { transition-delay: 0.06s; }
.contact-why.is-visible .contact-why__list li:nth-child(3) { transition-delay: 0.12s; }
.contact-why.is-visible .contact-why__list li:nth-child(4) { transition-delay: 0.18s; }
.contact-why.is-visible .contact-why__list li:nth-child(5) { transition-delay: 0.24s; }
.contact-why.is-visible .contact-why__list li:nth-child(6) { transition-delay: 0.3s; }

.contact-faq {
	background: #030405;
	color: #fff;
	min-height: 100svh;
	overflow: hidden;
	padding: clamp(100px, 11vw, 170px) clamp(24px, 6vw, 110px);
	position: relative;
}
.ferrofluid-container,
.contact-faq__ferrofluid,
.contact-faq__ferrofluid canvas,
.contact-faq__shade { height: 100%; inset: 0; position: absolute; width: 100%; }
.contact-faq__ferrofluid { overflow: hidden; pointer-events: none; z-index: 0; }
.contact-faq__ferrofluid canvas { display: block; }
.contact-faq__shade {
	background: linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(3, 4, 5, 0.65) 48%, rgba(3, 4, 5, 0.83));
	pointer-events: none;
	z-index: 1;
}
.contact-faq__inner {
	display: grid;
	gap: clamp(60px, 9vw, 150px);
	grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr);
	margin: 0 auto;
	max-width: 1500px;
	position: relative;
	z-index: 2;
}
.contact-faq__heading > p {
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.15em;
	margin: 0 0 26px;
	text-transform: uppercase;
}
.contact-faq h2 {
	color: var(--accent);
	font-family: var(--font-display);
	font-size: clamp(48px, 5.8vw, 86px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
}
.contact-faq__item { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.contact-faq__item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.contact-faq__item button {
	align-items: center;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: var(--font-display);
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 500;
	gap: 24px;
	justify-content: space-between;
	line-height: 1.18;
	padding: 30px 0;
	text-align: left;
	width: 100%;
}
.contact-faq__item button:hover span,
.contact-faq__item button[aria-expanded="true"] span { color: var(--accent); }
.contact-faq__item button i {
	align-items: center;
	border: 1px solid rgba(200, 255, 0, 0.55);
	border-radius: 50%;
	color: var(--accent);
	display: flex;
	flex: 0 0 42px;
	font-family: var(--font-ui);
	font-size: 22px;
	font-style: normal;
	height: 42px;
	justify-content: center;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s ease;
}
.contact-faq__item button[aria-expanded="true"] i { background: var(--accent); color: #050608; transform: rotate(45deg); }
.contact-faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.42s ease-in-out; }
.contact-faq__answer > div { overflow: hidden; }
.contact-faq__answer p { color: rgba(255, 255, 255, 0.66); font-size: 16px; line-height: 1.72; margin: 0; max-width: 720px; padding: 0 70px 0 0; transition: padding-bottom 0.42s ease; }
.contact-faq__item.is-open .contact-faq__answer { grid-template-rows: 1fr; }
.contact-faq__item.is-open .contact-faq__answer p { padding-bottom: 30px; }
.contact-faq [data-faq-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.contact-faq.is-visible [data-faq-reveal] { opacity: 1; transform: none; }
.contact-faq.is-visible [data-faq-reveal]:nth-child(2) { transition-delay: 0.12s; }

.contact-faq__outro {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	margin: clamp(90px, 12vw, 170px) auto 0;
	max-width: 1500px;
	padding-top: clamp(66px, 8vw, 110px);
	position: relative;
	text-align: center;
	z-index: 2;
}
.contact-faq__project-link {
	color: #fff;
	column-gap: 0.22em;
	display: flex;
	flex-wrap: nowrap;
	font-family: "Syne", var(--font-display);
	font-size: clamp(48px, 8.5vw, 132px);
	font-weight: 600;
	justify-content: center;
	letter-spacing: 0;
	line-height: 0.95;
	margin-inline: auto;
	max-width: 100%;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-tap-highlight-color: rgba(200, 255, 0, 0.22);
}
.contact-faq__project-link:visited { color: #fff; }
.contact-faq__project-link:hover,
.contact-faq__project-link:active { color: var(--accent); }
.contact-faq__project-link:focus-visible { color: #fff; outline: 2px solid var(--accent); outline-offset: 8px; }
.contact-faq__email {
	color: #fff;
	display: flex;
	column-gap: 0.22em;
	font-family: "Syne", var(--font-display);
	font-size: clamp(22px, 3vw, 42px);
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 34px auto 0;
	position: relative;
	text-decoration: none;
	width: fit-content;
	-webkit-tap-highlight-color: rgba(200, 255, 0, 0.22);
}
.contact-faq__email:visited,
.contact-faq__email:hover,
.contact-faq__email:focus-visible { color: #fff; }
.contact-faq__email:focus-visible { outline: 2px solid var(--accent); outline-offset: 8px; }
.contact-faq__project-link .particle-char,
.contact-faq__email .particle-char {
	display: inline-block;
	pointer-events: auto;
	position: relative;
	transition: color 0.2s ease, opacity 0.28s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}
.contact-faq__project-link .particle-char.is-dispersing,
.contact-faq__project-link .particle-char:hover { color: var(--accent); }
.contact-faq__project-link .particle-char.is-dispersing {
	filter: blur(4px);
	opacity: 0;
	transform: translate3d(var(--char-x), var(--char-y), 0) rotate(var(--char-r)) scale(0.25);
}
.contact-faq__email .particle-char.is-dispersing {
	filter: blur(3px);
	opacity: 0;
	transform: translate3d(var(--char-x), var(--char-y), 0) rotate(var(--char-r)) scale(0.55);
}
.contact-faq__project-link .particle-word,
.contact-faq__email .particle-word { display: inline-flex; white-space: nowrap; }
.contact-text-particle {
	animation: contact-text-particle var(--particle-duration, 1100ms) cubic-bezier(0.16, 1, 0.3, 1) forwards;
	background: var(--accent);
	border-radius: 50%;
	height: var(--particle-size);
	left: var(--particle-left);
	pointer-events: none;
	position: absolute;
	top: var(--particle-top);
	width: var(--particle-size);
	z-index: 4;
}
@keyframes contact-text-particle {
	0% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
	42% { opacity: 1; transform: translate3d(var(--particle-x), var(--particle-y), 0) scale(1.25); }
	68% { opacity: 0.92; transform: translate3d(var(--particle-x), var(--particle-y), 0) scale(0.9); }
	100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1180px) {
	.contact-network__inner { grid-template-columns: minmax(210px, 0.75fr) minmax(390px, 1.25fr) minmax(240px, 0.8fr); gap: 24px; }
	.contact-network__connector { left: -26%; width: 74%; }
}

@media (max-width: 900px) {
	.contact-hero { padding-inline: 30px; }
	.contact-hero__media { width: 72vw; }
	.contact-hero__shade { background: linear-gradient(90deg, #050608 0%, rgba(5, 6, 8, 0.9) 46%, rgba(5, 6, 8, 0.26) 100%), linear-gradient(180deg, rgba(5, 6, 8, 0.38), rgba(5, 6, 8, 0.58)); }
	.contact-hero__content { max-width: 620px; }
	.contact-network { padding-inline: 30px; }
	.contact-network__inner { grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1.2fr); }
	.contact-network__statement { grid-column: 1 / -1; max-width: 760px; text-align: center; justify-self: center; }
	.contact-project__inner { grid-template-columns: 1fr; }
	.contact-project__intro { max-width: 760px; }
	.contact-why__inner,
	.contact-faq__inner { grid-template-columns: 1fr; }
	.contact-why__intro { position: static; }
}

@media (max-width: 640px) {
	.contact-hero {
		align-items: flex-start;
		min-height: 100svh;
		padding: calc(var(--header-height) + 62px) 22px 70px;
	}

	.contact-hero__media {
		height: 58%;
		inset: auto 0 0;
		width: 100%;
	}

	.contact-hero__media img { object-position: 58% center; }
	.contact-hero__shade { background: linear-gradient(180deg, #050608 0%, #050608 38%, rgba(5, 6, 8, 0.76) 62%, rgba(5, 6, 8, 0.28) 100%); }
	.contact-hero h1 { font-size: clamp(46px, 13.5vw, 66px); }
	.contact-hero__intro { font-size: 16px; line-height: 1.6; }
	.contact-hero__cta { background: rgba(5, 6, 8, 0.03); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }

	.contact-network { min-height: auto; padding: 90px 22px; }
	.contact-network__inner { display: flex; flex-direction: column; gap: 54px; }
	.contact-network__world { order: 1; width: min(100%, 520px); }
	.contact-network__statement { order: 2; text-align: left; }
	.contact-network__local { order: 3; width: 100%; }
	.contact-network__map { margin: 0 auto; max-width: 430px; }
	.contact-network__connector { display: none; }
	.contact-network__statement h2 { font-size: clamp(38px, 10.5vw, 48px); }
	.contact-project { min-height: auto; padding: 88px 22px; }
	.contact-project h2 { font-size: clamp(42px, 12vw, 58px); }
	.contact-project__form { padding: 26px 20px; }
	.contact-lightning { min-height: 82svh; padding: 100px 22px; }
	.contact-lightning__content { max-width: none; min-width: 0; width: 100%; }
	.contact-lightning h2 { font-size: clamp(42px, 11.3vw, 56px); line-height: 1; width: 100%; }
	.contact-lightning__body { box-sizing: border-box; max-width: 100%; padding-inline: 2px; width: 100%; }
	.contact-project__marquee { margin-top: 78px; padding-top: 28px; }
	.contact-project__marquee-track { animation-duration: 17s; }
	.contact-why,
	.contact-faq { padding: 90px 22px; }
	.contact-why h2,
	.contact-faq h2 { font-size: clamp(44px, 12vw, 62px); }
	.contact-why__list li { min-height: 94px; }
	.contact-faq__item button { padding: 24px 0; }
	.contact-faq__answer p { padding-right: 16px; }
	.contact-faq__outro { margin-top: 90px; padding-top: 62px; }
	.contact-faq__project-link { font-size: clamp(27px, 8.15vw, 40px); line-height: 1; }
	.contact-faq__email { font-size: clamp(20px, 6.4vw, 28px); }
}

@media (prefers-reduced-motion: reduce) {
	.contact-hero__media,
	.contact-hero [data-contact-reveal] { clip-path: none; opacity: 1; transform: none; transition: none; }
	.contact-hero__media img,
	.contact-hero__stars span,
	.contact-network__world > img,
	.contact-network__orbit,
	.contact-network__hotspot span,
	.contact-network__stars span { animation: none; }
	.contact-network [data-network-reveal] { opacity: 1; transform: none; transition: none; }
	.contact-lightning__content { opacity: 1; transform: none; transition: none; }
	.contact-project [data-project-reveal] { opacity: 1; transform: none; transition: none; }
	.contact-project__marquee-track { animation: none; transform: translateX(-8%); }
	.contact-why [data-why-reveal],
	.contact-faq [data-faq-reveal] { opacity: 1; transform: none; transition: none; }
}
