:root {
	--ink: #061324;
	--ink-2: #0d1f36;
	--panel: rgba(255, 255, 255, .08);
	--line: rgba(255, 255, 255, .14);
	--blue: #2f80ff;
	--green: #27d07d;
	--amber: #f5b84b;
	--coral: #ff6b5f;
	--white: #ffffff;
	--muted: #6b778c;
	--soft: #f3f7fb;
	--dark-text: #142033;
	--shadow: 0 18px 50px rgba(6, 19, 36, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--dark-text);
	background: #fff;
	overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 12px;
	padding-left: 12px;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }
.website-main { padding-top: 80px; overflow: hidden; }
.container-narrow { max-width: 980px; margin: 0 auto; }
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 62px 0; }
.section-dark {
	background: linear-gradient(145deg, #061324 0%, #0c2038 48%, #061324 100%);
	color: #fff;
}
.section-soft { background: var(--soft); }
.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 12px;
}
.section-title {
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: 0;
	overflow-wrap: break-word;
}
.section-copy {
	color: #5e6d83;
	font-size: 17px;
	line-height: 1.7;
	max-width: 760px;
	overflow-wrap: break-word;
}
.section-dark .section-copy { color: rgba(255,255,255,.76); }
.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1100;
	padding: 10px 14px;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font-weight: 800;
	text-decoration: none;
	transform: translateY(-150%);
	transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
.site-header { z-index: 1030; }
.website-navbar {
	background: rgba(6, 19, 36, .9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255,255,255,.08);
	transition: box-shadow .25s ease, background .25s ease;
	min-height: 80px;
}
.website-navbar.navbar-scrolled {
	box-shadow: 0 18px 35px rgba(6, 19, 36, .18);
	background: rgba(6, 19, 36, .96);
}
.site-logo {
	display: inline-flex;
	align-items: center;
	width: min(240px, 58vw);
	text-decoration: none;
}
.site-logo img {
	display: block;
	width: 100%;
	height: auto;
}
.navbar-brand:hover { color: #fff; }
.brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--green));
	box-shadow: 0 10px 22px rgba(47,128,255,.25);
}
.navbar-brand strong { display: block; font-size: 16px; line-height: 1; }
.navbar-brand small { display: block; color: rgba(255,255,255,.62); font-size: 11px; margin-top: 4px; }
.website-navbar .nav-link {
	color: rgba(255,255,255,.76);
	font-size: 13px;
	font-weight: 750;
	padding: 10px 9px;
	letter-spacing: 0;
}
.website-navbar .nav-link:hover,
.website-navbar .nav-link.active { color: #fff; }
.website-navbar .nav-link.active { text-decoration: underline; text-underline-offset: 7px; }
.website-navbar .dropdown-menu {
	border: 1px solid rgba(6,19,36,.08);
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 10px;
	min-width: 270px;
}
.website-navbar .dropdown-item {
	border-radius: 8px;
	color: #22324a;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 12px;
	white-space: normal;
}
.website-navbar .dropdown-item:hover {
	background: #edf5ff;
	color: #124e9e;
}
.nav-cta {
	border: 0;
	border-radius: 8px;
	padding: 10px 14px;
	background: linear-gradient(135deg, var(--blue), var(--green));
	box-shadow: 0 12px 25px rgba(47,128,255,.24);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	white-space: nowrap;
}
.hero {
	position: relative;
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	color: #fff;
	background: #061324;
}
.hero-media {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(6,19,36,.96) 0%, rgba(6,19,36,.76) 42%, rgba(6,19,36,.28) 100%), var(--hero-image);
	background-size: cover;
	background-position: center;
}
.hero-grid { position: relative; z-index: 1; padding: 64px 0; }
.hero h1 {
	font-size: clamp(38px, 6vw, 72px);
	line-height: 1.02;
	font-weight: 800;
	max-width: 860px;
	margin-bottom: 24px;
	letter-spacing: 0;
}
.hero p {
	max-width: 780px;
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.6;
	color: rgba(255,255,255,.78);
	margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-smart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 8px;
	padding: 13px 18px;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-smart:hover { transform: translateY(-2px); }
.btn-smart.primary {
	color: #fff;
	background: linear-gradient(135deg, var(--blue), var(--green));
	box-shadow: 0 16px 36px rgba(47,128,255,.24);
}
.btn-smart.light {
	color: #fff;
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.18);
}
.btn-smart.dark {
	color: #fff;
	background: var(--ink);
}
.hero-float {
	position: absolute;
	right: 7vw;
	bottom: 8vh;
	width: min(380px, 34vw);
	display: grid;
	gap: 14px;
	z-index: 2;
}
.float-card {
	padding: 16px;
	border-radius: 8px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	backdrop-filter: blur(18px);
	box-shadow: 0 24px 60px rgba(0,0,0,.18);
	animation: floaty 4.5s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: .8s; }
@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}
.metric-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
	max-width: 760px;
}
.metric-mini {
	padding: 14px;
	border-radius: 8px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
}
.metric-mini strong { font-size: 24px; display: block; color: var(--green); }
.trust-grid,
.product-grid,
.solution-grid,
.advanced-grid,
.pipeline-grid,
.download-grid,
.blog-grid,
.testimonial-grid {
	display: grid;
	gap: 20px;
	min-width: 0;
}
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pipeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.advanced-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.download-grid, .blog-grid, .testimonial-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.glass-card,
.product-card,
.content-card {
	border-radius: 8px;
	background: #fff;
	border: 1px solid #e6edf5;
	box-shadow: var(--shadow);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	min-width: 0;
}
.glass-card:hover,
.product-card:hover,
.content-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 70px rgba(6,19,36,.16);
	border-color: rgba(47,128,255,.35);
}
.section-dark .glass-card,
.section-dark .product-card,
.section-dark .content-card {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.12);
	color: #fff;
	backdrop-filter: blur(12px);
}
.trust-card { padding: 22px; }
.trust-card i,
.icon-box {
	width: 46px;
	height: 46px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: linear-gradient(135deg, var(--blue), var(--green));
	margin-bottom: 14px;
}
.trust-card h3,
.product-card h3,
.content-card h3 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 9px;
	letter-spacing: 0;
}
.trust-card p,
.product-card p,
.content-card p {
	color: #64748b;
	line-height: 1.65;
	margin-bottom: 0;
}
.section-dark .trust-card p,
.section-dark .product-card p,
.section-dark .content-card p { color: rgba(255,255,255,.72); }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-card .product-img {
	background: linear-gradient(145deg, #eaf3ff, #f8fffb);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.product-card .product-img img,
.card-photo,
.service-photo,
.detail-media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #eef3f8;
}
.product-card .product-img img { height: 100%; }
.card-photo,
.service-photo,
.detail-media img { border-radius: 8px; }
.service-photo { box-shadow: var(--shadow); }
.product-card .product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.feature-list {
	list-style: none;
	padding: 0;
	margin: 14px 0;
	display: grid;
	gap: 8px;
}
.feature-list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	color: #4b5d73;
	line-height: 1.4;
}
.feature-list li i { color: var(--green); margin-top: 3px; }
.product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 16px;
}
.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	background: #edf5ff;
	color: #1f5eb8;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 10px;
}
.pill.green { background: #e9fbf1; color: #087a46; }
.pill.amber { background: #fff5df; color: #8f5a00; }
.table-smart {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--shadow);
	border: 1px solid #e7edf5;
	background: #fff;
}
.table-smart table { margin: 0; }
.table-smart th {
	background: var(--ink);
	color: #fff;
	font-weight: 800;
}
.chart-box {
	background: #fff;
	border: 1px solid #e7edf5;
	border-radius: 8px;
	padding: 24px;
	box-shadow: var(--shadow);
	min-height: 360px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.chart-box h3 {
	margin-bottom: 0;
}
.chart-canvas {
	position: relative;
	width: 100%;
	height: 290px;
	min-height: 260px;
}
.chart-canvas canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}
.flow-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}
.flow-step {
	position: relative;
	padding: 22px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #e7edf5;
	box-shadow: var(--shadow);
}
.flow-step span {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--ink);
	color: #fff;
	font-weight: 800;
	margin-bottom: 14px;
}
.app-preview-frame {
	border-radius: 30px;
	background: #0b1728;
	padding: 12px;
	box-shadow: 0 30px 80px rgba(6,19,36,.28);
	max-width: 330px;
	margin: 0 auto;
}
.app-screen {
	border-radius: 22px;
	background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
	min-height: 570px;
	padding: 22px;
}
.app-room {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 8px;
	padding: 14px;
	margin-bottom: 12px;
	box-shadow: 0 10px 26px rgba(6,19,36,.08);
}
.app-toggle {
	width: 46px;
	height: 26px;
	border-radius: 999px;
	background: var(--green);
	position: relative;
}
.app-toggle:after {
	content: "";
	position: absolute;
	right: 4px;
	top: 4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
}
.scene-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.scene-card {
	padding: 20px;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(145deg, #10213a, #123e4d);
	min-height: 142px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.scene-card:nth-child(2n) { background: linear-gradient(145deg, #14213d, #315fba); }
.scene-card:nth-child(3n) { background: linear-gradient(145deg, #16302d, #148e5a); }
.cta-band {
	background: linear-gradient(135deg, var(--ink), #0f3152);
	color: #fff;
	border-radius: 8px;
	padding: clamp(28px, 6vw, 56px);
	position: relative;
	overflow: hidden;
}
.cta-band:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(47,128,255,.12), rgba(39,208,125,.08));
}
.cta-band > * { position: relative; }
.form-panel {
	background: #fff;
	border: 1px solid #e7edf5;
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 26px;
}
.form-control,
.form-select {
	border-radius: 8px;
	border-color: #d8e1ed;
	min-height: 46px;
}
textarea.form-control { min-height: 118px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.page-hero {
	padding: 90px 0 70px;
	background: linear-gradient(135deg, #061324, #12375c);
	color: #fff;
}
.page-hero p { color: rgba(255,255,255,.76); max-width: 760px; font-size: 18px; line-height: 1.7; }
.detail-hero {
	background: linear-gradient(135deg, #061324 0%, #12375c 100%);
	color: #fff;
	padding: 80px 0;
}
.detail-media {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 8px;
	padding: 30px;
}
.spec-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.spec-row {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 14px;
	border-radius: 8px;
	background: #f6f9fc;
}
.spec-row span:first-child { color: #64748b; }
.spec-row span:last-child { font-weight: 800; text-align: right; }
.accordion-button { font-weight: 800; }
.accordion-button:not(.collapsed) {
	background: #eef6ff;
	color: #124e9e;
}
.site-footer {
	background: #061324;
	color: rgba(255,255,255,.72);
	padding: 74px 0 28px;
}
.footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
	gap: 36px;
	align-items: stretch;
	margin-bottom: 42px;
}
.footer-intro,
.footer-cta {
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 8px;
	background: rgba(255,255,255,.045);
	padding: 24px;
}
.footer-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	margin-bottom: 16px;
	width: min(260px, 100%);
}
.footer-brand img {
	display: block;
	width: 100%;
	height: auto;
}
.footer-intro p {
	max-width: 720px;
	line-height: 1.75;
	margin-bottom: 0;
}
.footer-cta h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 12px;
}
.footer-cta p {
	line-height: 1.65;
	margin-bottom: 18px;
}
.footer-contact {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	font-style: normal;
}
.footer-contact a,
.footer-contact span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,.78);
	text-decoration: none;
}
.footer-contact i { color: var(--green); width: 18px; }
.footer-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.site-footer h3 {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 14px;
}
.footer-links a,
.footer-legal a {
	display: block;
	color: rgba(255,255,255,.7);
	text-decoration: none;
	margin-bottom: 9px;
	line-height: 1.45;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.1);
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
}
.footer-legal {
	display: inline-flex;
	gap: 14px;
	flex-wrap: wrap;
}
.footer-legal a { margin-bottom: 0; }
.floating-contact {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--green));
	color: #fff;
	text-decoration: none;
	z-index: 50;
	box-shadow: 0 18px 38px rgba(47,128,255,.28);
}
.contact-hero {
	position: relative;
	overflow: hidden;
	padding: 128px 0 72px;
	color: #fff;
	background:
		linear-gradient(120deg, rgba(6,19,36,.96), rgba(13,31,54,.84)),
		url('../images/photos/smart-home-automation.webp') center/cover no-repeat;
}
.contact-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
	gap: 34px;
	align-items: center;
}
.contact-hero-copy h1 {
	font-size: clamp(40px, 5vw, 72px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: 0;
	max-width: 900px;
	margin-bottom: 22px;
}
.contact-hero-copy p {
	max-width: 760px;
	color: rgba(255,255,255,.78);
	font-size: 19px;
	line-height: 1.75;
}
.contact-hero-actions,
.office-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}
.contact-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}
.contact-trust-strip span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 8px;
	background: rgba(255,255,255,.08);
	color: rgba(255,255,255,.82);
	font-weight: 700;
	font-size: 13px;
}
.contact-trust-strip i { color: var(--green); }
.contact-hero-panel {
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.08);
	box-shadow: 0 30px 90px rgba(0,0,0,.25);
}
.contact-hero-panel img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.contact-panel-body {
	display: grid;
	gap: 10px;
	padding: 22px;
}
.contact-panel-body strong {
	color: #fff;
	font-size: 20px;
}
.contact-panel-body a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,.82);
	text-decoration: none;
	font-weight: 700;
}
.contact-panel-body i { color: var(--green); width: 18px; }
.contact-section-head {
	max-width: 840px;
	margin-bottom: 34px;
}
.contact-route-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}
.contact-route-card {
	position: relative;
	min-height: 214px;
	padding: 22px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #e6edf5;
	box-shadow: var(--shadow);
	text-decoration: none;
	color: var(--dark-text);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-route-card:hover {
	transform: translateY(-5px);
	border-color: rgba(47,128,255,.35);
	box-shadow: 0 24px 70px rgba(6,19,36,.16);
	color: var(--dark-text);
}
.contact-route-card span,
.office-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--green));
	color: #fff;
	margin-bottom: 18px;
}
.contact-route-card strong {
	display: block;
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 10px;
}
.contact-route-card small {
	display: block;
	color: #64748b;
	line-height: 1.55;
	font-size: 13px;
}
.contact-office-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.office-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 28px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #e6edf5;
	box-shadow: var(--shadow);
}
.office-card span {
	color: var(--green);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 800;
}
.office-card h3 {
	margin: 8px 0 8px;
	font-weight: 800;
}
.office-card address {
	margin-bottom: 10px;
	color: #22324a;
	font-weight: 800;
	font-style: normal;
}
.office-card p {
	color: #64748b;
	line-height: 1.65;
	margin-bottom: 0;
}
.office-card-actions a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #edf5ff;
	color: #124e9e;
	text-decoration: none;
	font-weight: 800;
	font-size: 13px;
}
.contact-form-layout {
	display: grid;
	grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}
.contact-side-panel {
	overflow: hidden;
	border-radius: 8px;
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow);
}
.contact-side-panel img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.contact-side-content {
	padding: 26px;
}
.contact-side-content h2 {
	font-size: 32px;
	line-height: 1.12;
	font-weight: 800;
	margin-bottom: 14px;
}
.contact-side-content p {
	color: rgba(255,255,255,.76);
	line-height: 1.7;
}
.contact-side-content ul {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.contact-side-content li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255,255,255,.84);
}
.contact-side-content li i { color: var(--green); margin-top: 3px; }
.contact-form-panel {
	padding: 0;
	overflow: hidden;
}
.contact-form-title {
	padding: 26px 26px 0;
}
.contact-form-title h2 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 0;
}
.contact-tabs {
	gap: 8px;
	padding: 20px 26px 0;
}
.contact-tabs .nav-link {
	border-radius: 8px;
	color: #475569;
	background: #f2f6fb;
	font-weight: 800;
}
.contact-tabs .nav-link.active {
	background: linear-gradient(135deg, var(--blue), var(--green));
	color: #fff;
}
.contact-tab-content {
	padding: 26px;
}
.contact-tab-content .form-label {
	font-weight: 800;
	color: #22324a;
	font-size: 13px;
}
.contact-tab-content .form-control,
.contact-tab-content .form-select {
	background: #f8fbff;
}
.flash-wrap { position: fixed; top: 92px; left: 0; right: 0; z-index: 60; }
.site-loader {
	position: fixed;
	inset: 0;
	background: #061324;
	z-index: 9999;
	display: grid;
	place-items: center;
	transition: opacity .35s ease, visibility .35s ease;
}
.site-loader span {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 4px solid rgba(255,255,255,.18);
	border-top-color: var(--green);
	animation: spin .8s linear infinite;
}
.site-loader.loaded { opacity: 0; visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }
