@import url("fonts.css");
@import url("tokens.css");
@import url("visuals.css");

/* ============================================================
   CyberIT site system — layout, glass, buttons, homepage
   ============================================================ */

.form-hp {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-status {
	margin: 12px 0 0;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -48px;
	z-index: 200;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	background: var(--color-primary);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.skip-link:focus {
	top: 16px;
}

html {
	box-sizing: border-box;
	font-size: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

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

body.site {
	font-family: var(--font-sans);
	background:
		radial-gradient(900px 480px at 8% -8%, rgba(37, 99, 235, 0.07), transparent 58%),
		radial-gradient(720px 420px at 100% 0%, rgba(8, 145, 178, 0.05), transparent 52%),
		linear-gradient(180deg, #F7FAFD 0%, #F5F8FC 38%, #EEF3F9 100%);
	color: #0B1220;
	min-height: 100vh;
	overflow-x: visible;
}

body.site .loading-screen,
body.site .ambient-bg,
body.site .grid-overlay,
body.site .menu-grid,
body.site .menu-toggle-btn,
body.site .menu-submenu-toggle,
body.site .orbit-call,
body.site .footer#mainFooter,
body.site .header#mainHeader,
body.site .section-header-small,
body.site .back-btn {
	display: none !important;
}

body.site #neonTubesCanvas,
body.site #floatingLinesCanvas {
	display: none !important;
}

body.site .container {
	max-width: var(--content-w);
	width: min(var(--content-w), calc(100% - 32px));
	margin: 0 auto;
	padding: calc(var(--header-h) + 28px) 0 80px;
	min-height: auto;
	display: block;
}

.site-bg {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image:
		linear-gradient(rgba(11, 23, 48, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 23, 48, 0.018) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at 80% 12%, #000 18%, transparent 72%);
	opacity: 0.35;
}

.site-header,
.site-main,
.site-footer,
.home {
	position: relative;
	z-index: 2;
}

/* ---------- Glass ---------- */
.glass-card,
.glass-panel,
.product-card,
.pillar-card,
.why-card,
.tech-chip,
.sec-item,
.project-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(var(--glass-blur));
	-webkit-backdrop-filter: blur(var(--glass-blur));
}

.glass-badge,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: var(--radius-full);
	border: 1px solid var(--glass-border);
	background: var(--color-soft-blue);
	color: var(--color-primary);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 18px;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.btn:focus-visible,
.lang-btn:focus-visible,
.nav-trigger:focus-visible,
.nav-toggle:focus-visible,
.mega-link:focus-visible {
	outline: 2px solid var(--color-accent-soft);
	outline-offset: 3px;
}

.btn-primary {
	color: #fff;
	background: var(--color-primary);
	box-shadow: none;
}

.btn-primary:hover {
	background: var(--color-primary-strong);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.22);
}

.btn-primary .btn-arrow,
.btn-ghost .btn-arrow {
	display: inline-block;
	transition: transform var(--duration-fast) var(--ease-out);
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
	transform: translateX(5px);
}

.btn-ghost {
	color: var(--color-text);
	background: transparent;
	border-color: var(--color-border-strong);
}

.btn-ghost:hover {
	background: var(--color-soft-blue);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn:disabled {
	opacity: 0.45;
	pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: var(--nav-z);
	height: var(--header-h);
	overflow: visible;
	border-bottom: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.96);
	transition: background var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) linear;
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 24px rgba(11, 23, 48, 0.06);
}

.site-header-inner {
	position: relative;
	z-index: 1;
	width: min(var(--content-w), calc(100% - 32px));
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.site-logo {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	background: none;
	border-radius: 0;
	padding: 0;
}

.site-logo img {
	display: block;
	height: 56px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
	background: transparent;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 12px;
	flex: 1 1 auto;
}

.nav-item {
	position: relative;
}

.nav-trigger,
.nav-link {
	appearance: none;
	background: none;
	border: 0;
	color: #1F2A3A;
	font: 500 0.92rem var(--font-sans);
	padding: 10px 12px;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

.nav-trigger::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 6px;
	height: 2px;
	border-radius: 2px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--duration-fast) var(--ease-out);
}

.nav-trigger:hover,
.nav-link:hover,
.nav-item.is-open .nav-trigger,
.nav-link.is-active {
	color: var(--color-text);
	background: var(--color-soft-blue);
}

.nav-item.is-open .nav-trigger::after,
.nav-trigger:hover::after,
.nav-link.is-active::after {
	transform: scaleX(1);
}

.mega-panel {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 360px;
	padding: 16px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(6px);
	filter: blur(6px);
	transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), filter var(--duration-fast) var(--ease-out);
	z-index: 20;
}

.mega-panel::before {
	content: "";
	position: absolute;
	inset: 16px 0 0 0;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	z-index: -1;
}

.nav-item.is-open .mega-panel,
.nav-item:hover .mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: none;
	filter: none;
}

.mega-link {
	display: grid;
	grid-template-columns: 36px 1fr 16px;
	gap: 10px;
	align-items: center;
	padding: 10px;
	margin: 0 8px 4px;
	border-radius: 12px;
	position: relative;
	z-index: 1;
	text-decoration: none;
	color: inherit;
}

.mega-link:hover {
	background: var(--color-surface-hover);
}

.mega-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(37, 99, 235, 0.16);
	color: var(--color-accent-soft);
}

.mega-icon svg {
	width: 18px;
	height: 18px;
}

.mega-copy strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--color-text);
}

.mega-copy span {
	display: block;
	font-size: 0.78rem;
	color: var(--color-muted);
	line-height: 1.35;
}

.mega-arrow {
	color: var(--color-faint);
	transition: transform var(--duration-fast) var(--ease-out), color var(--duration-fast) linear;
}

.mega-link:hover .mega-arrow {
	color: var(--color-accent-soft);
	transform: translateX(3px);
}

.site-header-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

body.site .language-selector {
	position: static;
	top: auto;
	right: auto;
	display: flex;
	gap: 4px;
}

body.site .lang-btn {
	padding: 7px 9px;
	border-radius: 8px;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	background: transparent;
	border: 1px solid transparent;
	color: #1F2A3A;
}

body.site .lang-btn:hover,
body.site .lang-btn.lang-active {
	color: var(--color-text);
	border-color: var(--color-border-strong);
	background: var(--color-surface);
	box-shadow: none;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border: 1px solid var(--color-border-strong);
	border-radius: 10px;
	background: var(--color-surface);
	color: var(--color-text);
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 2px 0;
	border-radius: 1px;
	background: currentColor;
	transition: transform var(--duration-fast) var(--ease-out), opacity var(--duration-fast) linear;
}

body.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-header .btn-primary {
	min-height: 40px;
	padding: 0 14px;
	font-size: 0.88rem;
}

/* ---------- Home ---------- */
.home {
	width: min(var(--content-w), calc(100% - 32px));
	margin: 0 auto;
	padding-bottom: 48px;
}

.hero {
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 32px 0 48px;
	background:
		radial-gradient(820px 520px at 22% 58%, rgba(59, 130, 246, 0.32), transparent 58%),
		linear-gradient(180deg, #0B1730 0%, #071426 100%);
	color: var(--color-on-navy);
}

.hero-globe {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-globe .cy-visual--globe-bg {
	position: absolute;
	left: max(-80px, 2%);
	top: 50%;
	transform: translateY(-50%);
	width: min(820px, 68vw);
	height: 118%;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	opacity: 0.92;
}

.hero-globe .cy-visual--globe-bg svg {
	min-height: 0;
	height: 100%;
}

.hero-globe::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 20, 38, 0.42) 0%, rgba(7, 20, 38, 0.16) 38%, transparent 68%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: min(var(--content-w), calc(100% - 32px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.hero-headline {
	margin: 8px 0 16px;
	font-size: var(--text-hero);
	line-height: 1.08;
	letter-spacing: -0.045em;
	font-weight: 700;
	color: #F8FBFF;
}

.hero-headline em {
	font-style: normal;
	color: #93C5FD;
	display: block;
}

.hero-sub {
	max-width: 560px;
	color: #D5DEEA;
	font-size: 1.08rem;
	line-height: 1.7;
}

.hero-copy {
	position: relative;
	z-index: 3;
}

.hero .eyebrow {
	background: rgba(147, 197, 253, 0.12);
	border-color: rgba(147, 197, 253, 0.28);
	color: #BFDBFE;
}

.hero .btn-ghost {
	color: #F4F7FB;
	border-color: rgba(255, 255, 255, 0.32);
}

.hero .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #93C5FD;
	color: #fff;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.cap-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	margin: 40px 0 72px;
}

.cap-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 16px 14px;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: #fff;
	box-shadow: var(--shadow-sm);
	text-decoration: none;
	color: var(--color-text);
	min-height: 108px;
	transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.cap-item:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.35);
	box-shadow: var(--shadow-md);
}

.cap-item strong {
	font-size: 0.86rem;
	line-height: 1.3;
	font-weight: 650;
}

.cap-icon {
	width: 36px;
	height: 36px;
	color: var(--color-primary);
}

.cap-icon svg {
	width: 36px;
	height: 36px;
}

.cap-item:hover .cap-icon {
	color: var(--color-primary-strong);
}

.cap-icon .cap-draw {
	stroke-dasharray: 64;
	stroke-dashoffset: 64;
}

.cap-row.is-visible .cap-draw,
.cap-item:hover .cap-draw {
	animation: cyDraw 0.7s var(--ease-out) forwards;
}

.network {
	position: relative;
	min-height: 460px;
	isolation: isolate;
}

.network .cy-visual,
.network svg {
	width: 100%;
	height: 100%;
	min-height: 460px;
}

.network .cy-visual {
	background:
		radial-gradient(circle at 50% 46%, rgba(37, 99, 235, 0.16), transparent 42%),
		linear-gradient(180deg, #07101f 0%, #030712 100%);
	border-color: rgba(96, 165, 250, 0.16);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.network-hud {
	position: absolute;
	left: 16px;
	top: 16px;
	z-index: 3;
	padding: 12px 14px;
	border: 1px solid rgba(96, 165, 250, 0.14);
	border-radius: 12px;
	background: rgba(3, 7, 18, 0.58);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.network-hud-title {
	color: #dbeafe;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.network-hud-status {
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 7px;
	color: #94a3b8;
	font-size: 10px;
	letter-spacing: 0.06em;
}

.network-hud-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22d3ee;
	box-shadow: 0 0 12px #22d3ee;
}

.network-stats {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.network-stat {
	min-width: 78px;
	padding: 9px 11px;
	border: 1px solid rgba(96, 165, 250, 0.12);
	border-radius: 10px;
	background: rgba(3, 7, 18, 0.58);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.network-stat-value {
	color: #dbeafe;
	font-size: 13px;
	font-weight: 700;
}

.network-stat-label {
	margin-top: 2px;
	color: #64748b;
	font-size: 8px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.network-float {
	position: absolute;
	padding: 8px 11px;
	border-radius: 12px;
	font-size: 0.72rem;
	color: var(--color-muted);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--color-border);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--shadow-sm);
	z-index: 2;
}

.network-float b {
	display: block;
	color: var(--color-text);
	font-size: 0.78rem;
}

.nf-1 { top: 18%; left: 8%; animation: floatCard 7s var(--ease-out) infinite; }
.nf-2 { top: 22%; right: 10%; animation: floatCard 8s 0.6s var(--ease-out) infinite; }
.nf-3 { bottom: 18%; left: 16%; animation: floatCard 6.5s 1s var(--ease-out) infinite; }

@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.pulse-core {
	transform-origin: 200px 200px;
	animation: corePulse 4.8s var(--ease-out) infinite;
}

@keyframes corePulse {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

.dash-flow {
	stroke-dasharray: 6 10;
	animation: dashMove 8s linear infinite;
}

@keyframes dashMove {
	to { stroke-dashoffset: -120; }
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 8px 0 72px;
}

.trust-item {
	padding: 18px 16px;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	box-shadow: var(--shadow-sm);
}

.trust-item span {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 6px;
}

.trust-item strong {
	font-size: 1rem;
	font-weight: 600;
}

.section {
	padding: 28px 0 72px;
}

.section-kicker {
	margin-bottom: 10px;
}

.section-title {
	font-size: var(--text-2xl);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 12px;
}

.section-lead {
	max-width: 640px;
	color: var(--color-muted);
	line-height: 1.7;
}

.pillar-grid,
.tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.pillar-card,
.why-card,
.product-card,
.project-card {
	padding: 22px;
	border-radius: var(--radius-lg);
	transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.pillar-card:hover,
.why-card:hover,
.product-card:hover,
.project-card:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.35);
	box-shadow: var(--shadow-md);
	background: linear-gradient(180deg, #FFFFFF 0%, #F3F8FF 100%);
}

.pillar-card:hover .icon-live,
.product-card:hover .icon-live {
	color: var(--color-primary);
}

.pillar-card h3,
.why-card h3,
.product-copy h3 {
	margin: 12px 0 8px;
	font-size: 1.2rem;
}

.pillar-card p,
.why-card p,
.product-copy p {
	color: var(--color-muted);
	line-height: 1.65;
	margin: 0;
}

.icon-live {
	width: 40px;
	height: 40px;
	color: var(--color-accent-soft);
}

.icon-live svg {
	width: 40px;
	height: 40px;
}

.product-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr 0.85fr;
	gap: 16px;
	margin-top: 32px;
}

.product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	text-decoration: none;
	color: inherit;
}

.product-copy {
	padding-top: 8px;
}

.product-visual {
	position: relative;
	height: 210px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: linear-gradient(180deg, #EEF3F9, #EAF3FF);
}

.product-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-visual img {
	transform: scale(1.04);
}

.crm-mock {
	padding: 14px;
}

.crm-mock-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--color-muted);
	font-size: 0.72rem;
	margin-bottom: 12px;
}

.crm-kpi {
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--color-border);
	font-size: 0.72rem;
}

.crm-kpi b { color: #34d399; }

.crm-bars {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: end;
	gap: 8px;
	height: 92px;
	margin-top: 18px;
}

.crm-bars span {
	display: block;
	border-radius: 6px 6px 2px 2px;
	background: linear-gradient(180deg, #60a5fa, #2563eb);
	opacity: 0.85;
	animation: barGrow 1.4s var(--ease-out) both;
}

.crm-float {
	position: absolute;
	bottom: 12px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 0.68rem;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--color-border);
}

.cf-sec { left: 12px; }
.cf-auto { right: 12px; }

@keyframes barGrow {
	from { transform: scaleY(0.2); }
	to { transform: scaleY(1); }
}

.security-band {
	margin: 12px 0 24px;
	padding: 48px 36px;
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--color-on-navy);
	background:
		radial-gradient(700px 280px at 80% 20%, rgba(37, 99, 235, 0.28), transparent 55%),
		linear-gradient(180deg, #0D1B34 0%, #071426 100%);
}

.security-band .section-title,
.security-band .eyebrow,
.security-band strong {
	color: var(--color-on-navy);
}

.security-band .eyebrow {
	background: rgba(147, 197, 253, 0.14);
	border-color: rgba(147, 197, 253, 0.32);
	color: #BFDBFE;
}

.security-band .section-lead,
.security-band .sec-item span {
	color: var(--color-on-navy-muted);
}

.security-band .sec-item {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: none;
}

.security-band .section-title {
	max-width: 16ch;
}

.sec-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 28px;
}

.sec-item {
	padding: 16px;
	border-radius: var(--radius-md);
}

.sec-item strong {
	display: block;
	margin-bottom: 6px;
}

.sec-item span {
	color: var(--color-muted);
	font-size: 0.86rem;
	line-height: 1.5;
}

.process {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.process-step {
	flex: 1 1 140px;
	padding: 16px 14px;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: var(--color-surface);
}

.process-step small {
	display: block;
	color: var(--color-accent);
	letter-spacing: 0.12em;
	font-size: 0.68rem;
	margin-bottom: 8px;
}

.saas-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 28px;
}

.saas-node {
	padding: 18px;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	text-align: center;
}

.saas-node strong { display: block; margin-bottom: 6px; }
.saas-node span { color: var(--color-muted); font-size: 0.88rem; }

.tech-grid {
	grid-template-columns: repeat(4, 1fr);
}

.tech-chip {
	padding: 18px;
	border-radius: var(--radius-md);
}

.tech-chip strong { display: block; margin-bottom: 8px; }
.tech-chip span { color: var(--color-muted); font-size: 0.88rem; line-height: 1.5; }

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 28px;
}

.project-card {
	text-decoration: none;
	color: inherit;
}

.project-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 14px;
	background: var(--color-soft-blue);
}

.cta-band {
	margin: 12px 0 48px;
	padding: 48px 36px;
	border-radius: var(--radius-xl);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--color-on-navy);
	background:
		radial-gradient(600px 240px at 50% 0%, rgba(37, 99, 235, 0.32), transparent 60%),
		linear-gradient(180deg, #0D1B34 0%, #071426 100%);
	box-shadow: none;
}

.cta-band .section-title { color: var(--color-on-navy); }

.cta-band p {
	max-width: 560px;
	margin: 0 auto 22px;
	color: var(--color-on-navy-muted);
}

.cta-band .contact-form input,
.cta-band .contact-form textarea {
	background: rgba(255, 255, 255, 0.06);
	color: var(--color-on-navy);
	border-color: rgba(255, 255, 255, 0.14);
}

/* ---------- Footer ---------- */
.site-footer {
	border-top: 1px solid var(--color-border);
	background: #fff;
	color: #334155;
	padding: 56px 0 28px;
}

.footer-grid {
	width: min(var(--content-w), calc(100% - 32px));
	margin: 0 auto 36px;
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 28px;
}

.footer-brand img {
	height: 58px;
	width: auto;
	max-width: 300px;
	margin-bottom: 14px;
	background: none;
	padding: 0;
	border-radius: 0;
}

.footer-brand p,
.footer-col a {
	color: #334155;
	line-height: 1.7;
	text-decoration: none;
}

.footer-col a {
	display: block;
	padding: 4px 0;
}

.footer-col a:hover {
	color: var(--color-primary);
}

.footer-col h4 {
	margin: 0 0 12px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0B1220;
}

.footer-bottom {
	width: min(var(--content-w), calc(100% - 32px));
	margin: 0 auto;
	padding-top: 18px;
	border-top: 1px solid var(--color-border);
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	color: #4B5A6B;
	font-size: 0.85rem;
}

.footer-bottom a {
	color: #334155;
	text-decoration: none;
	margin-left: 14px;
}

.footer-bottom a:hover { color: var(--color-primary); }

/* ---------- Inner pages ---------- */
.page-hero {
	padding: 18px 0 28px;
}

.page-hero h1 {
	font-size: var(--text-2xl);
	letter-spacing: -0.03em;
	margin: 12px 0 10px;
}

.page-hero p {
	max-width: 640px;
	color: var(--color-muted);
	line-height: 1.7;
}

body.site h1,
body.site h2,
body.site h3,
body.site h4 {
	color: #0B1220;
}

body.site .section-title,
body.site .crm-hero-title,
body.site .school-hero-title,
body.site .finance-hero-title,
body.site .dhost-section-title,
body.site .school-section-title,
body.site .finance-section-title,
body.site .crm-section-title,
body.site .news-hero h1 {
	font-family: var(--font-sans);
	background: none !important;
	-webkit-background-clip: unset !important;
	background-clip: unset !important;
	-webkit-text-fill-color: #0B1220 !important;
	color: #0B1220 !important;
}

body.site .hero-headline,
body.site .hero h1 {
	color: #F8FBFF !important;
	-webkit-text-fill-color: #F8FBFF !important;
	background: none !important;
}

body.site .hero-headline em {
	color: #93C5FD !important;
	-webkit-text-fill-color: #93C5FD !important;
}

body.site .security-band .section-title,
body.site .cta-band .section-title {
	color: var(--color-on-navy) !important;
	-webkit-text-fill-color: var(--color-on-navy) !important;
}

body.site .section-lead,
body.site .page-hero p,
body.site .pillar-card p,
body.site .why-card p,
body.site .product-copy p {
	color: #334155;
}

body.site .submit-btn {
	background: var(--color-primary);
	border: 0;
	color: #fff;
}

/* ---------- Reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal,
	.pulse-core,
	.dash-flow,
	.network-float,
	.crm-bars span {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.hero-inner,
	.product-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.sec-grid,
	.trust-strip,
	.cap-row,
	.tech-grid {
		grid-template-columns: 1fr 1fr;
	}
	.hero-inner { min-height: auto; }
}

.nav-backdrop {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 0 0;
	z-index: calc(var(--nav-z) + 1);
	border: 0;
	padding: 0;
	margin: 0;
	background: rgba(11, 23, 48, 0.42);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

html.nav-open,
body.nav-open {
	overflow: hidden;
}

body.nav-open .nav-backdrop {
	display: block;
}

body.nav-open #cyberitChatRoot,
body.nav-open .cookie-banner {
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden;
}

@media (max-width: 860px) {
	:root { --header-h: 64px; }

	.site-header-inner {
		width: calc(100% - 20px);
		gap: 8px;
	}

	.site-logo img {
		height: 36px;
		max-width: min(168px, 42vw);
	}

	.site-header-actions { gap: 6px; }

	body.site .lang-btn {
		min-width: 36px;
		min-height: 36px;
		padding: 6px 7px;
	}

	.nav-toggle { display: inline-flex; }

	.site-header .btn-primary { display: none; }

	.site-nav {
		position: fixed;
		top: var(--header-h);
		right: 0;
		bottom: 0;
		left: auto;
		width: min(100%, 400px);
		max-width: none;
		margin: 0;
		display: none;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		border-radius: 0;
		background: #fff;
		border: 0;
		border-left: 1px solid var(--color-border);
		border-top: 1px solid var(--color-border);
		box-shadow: var(--shadow-lg);
		overflow: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		padding: 8px 16px max(28px, env(safe-area-inset-bottom));
		max-height: none;
		z-index: calc(var(--nav-z) + 2);
	}

	body.nav-open .site-nav { display: flex; }

	.nav-item { width: 100%; }

	.nav-trigger,
	.nav-link {
		width: 100%;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		text-align: left;
		padding: 12px 10px;
		font-size: 1rem;
	}

	.nav-trigger::after {
		content: "";
		position: static;
		left: auto;
		right: auto;
		bottom: auto;
		width: 8px;
		height: 8px;
		margin-left: 12px;
		border-radius: 0;
		background: none;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		opacity: 0.45;
		transform: rotate(45deg);
		transform-origin: center;
		flex: 0 0 auto;
	}

	.nav-item.is-open .nav-trigger::after,
	.nav-trigger:hover::after {
		transform: rotate(-135deg);
	}

	.mega-panel {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		filter: none;
		display: none;
		box-shadow: none;
		background: var(--color-bg-secondary);
		border: 0;
		border-radius: 12px;
		padding: 6px;
		margin: 0 0 8px;
		min-width: 0;
	}

	.mega-panel::before { display: none; }

	.nav-item:hover .mega-panel { display: none; }

	.nav-item.is-open:hover .mega-panel,
	.nav-item.is-open .mega-panel { display: block; }

	.mega-link {
		min-height: 48px;
		margin: 0 0 4px;
		grid-template-columns: 36px 1fr;
	}

	.mega-arrow { display: none; }
	.hero-inner,
	.pillar-grid,
	.why-grid,
	.product-grid,
	.project-grid,
	.saas-row,
	.footer-grid,
	.trust-strip,
	.cap-row,
	.sec-grid,
	.tech-grid {
		grid-template-columns: 1fr;
	}
	.network { min-height: 300px; }
	.network svg,
	.cy-visual--network svg { min-height: 300px; }
	.cy-visual--network { min-height: 300px; }
	.network-hud { left: 10px; top: 10px; padding: 10px 12px; }
	.network-stats { right: 8px; bottom: 8px; gap: 6px; }
	.network-stat { min-width: 64px; padding: 8px 9px; }
	.hero-globe .cy-visual--globe-bg {
		width: min(640px, 110vw);
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0.55;
	}
	.hero-globe::after {
		background: linear-gradient(180deg, rgba(7, 20, 38, 0.78) 0%, rgba(7, 20, 38, 0.42) 55%, rgba(7, 20, 38, 0.18) 100%);
	}
	.security-band,
	.cta-band { padding: 28px 18px; }
}

@media (max-width: 430px) {
	.site-logo img { height: 32px; max-width: min(132px, 38vw); }
	body.site .lang-btn { padding: 6px 5px; letter-spacing: 0.02em; }
	.hero-headline { font-size: clamp(2rem, 11vw, 2.6rem); }
	.network-float,
	.network-stats { display: none; }
	.cy-net-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.nav-toggle span,
	body.nav-open .nav-toggle span:nth-child(1),
	body.nav-open .nav-toggle span:nth-child(3) {
		transition: none;
	}
}

.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;
}

body.site .contact-form .form-group { margin-bottom: 12px; }
body.site .contact-form select,
body.site .contact-form input,
body.site .contact-form textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	color: var(--color-text);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	font: inherit;
}
body.site .contact-form textarea { min-height: 120px; resize: vertical; }

.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 4px 0 14px;
	font-size: 0.86rem;
	color: var(--color-muted);
	line-height: 1.5;
	text-align: left;
}

.form-consent input {
	width: auto !important;
	margin-top: 3px;
	accent-color: var(--color-primary);
}

.form-consent a { color: var(--color-primary); }

.cta-band .form-consent { color: var(--color-on-navy-muted); }
.cta-band .form-consent a { color: #93C5FD; }

.legal-page {
	width: min(760px, calc(100% - 32px));
	margin: 0 auto;
	padding: calc(var(--header-h) + 36px) 0 80px;
	color: var(--color-muted);
	line-height: 1.7;
}
.legal-page h1 { color: var(--color-text); margin-bottom: 12px; }
.legal-page h2 { color: var(--color-text); margin: 28px 0 8px; font-size: 1.1rem; }
.legal-page a { color: var(--color-primary); }

.service-landing { width: min(var(--content-w), calc(100% - 32px)); margin: 0 auto; padding: 12px 0 64px; }

.intent-faq {
	margin: 36px 0 56px;
	display: grid;
	gap: 12px;
}

.intent-faq h2 {
	margin: 0 0 8px;
	font-size: var(--text-xl);
}

.intent-faq details {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 14px 18px;
}

.intent-faq summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--color-text);
}

.intent-faq details p {
	margin: 10px 0 0;
	color: var(--color-muted);
}

.security-band {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 28px;
	align-items: center;
}

@media (max-width: 860px) {
	.security-band { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 120;
	max-width: 920px;
	margin: 0 auto;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 18px 20px;
}

.cookie-banner-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
}

.cookie-banner-title {
	margin: 0 0 6px;
	font-weight: 700;
	color: var(--color-text);
}

.cookie-banner-text {
	margin: 0 0 10px;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.cookie-banner-text a { color: var(--color-primary); }
.cookie-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	font-size: 0.82rem;
	color: var(--color-text);
}
.cookie-choices label { display: inline-flex; gap: 6px; align-items: center; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

@media (max-width: 860px) {
	.cookie-banner-inner { grid-template-columns: 1fr; }
	.cookie-banner { left: 10px; right: 10px; bottom: 10px; }
}

/* Inner product/service pages: dark CSS → light readable text */
body.site .crm-container,
body.site .school-container,
body.site .finance-container,
body.site .container,
body.site .dhost-wrap,
body.site .news-hero,
body.site .mail-intro,
body.site .solutions-container {
	color: #0B1220;
}

body.site .section-subtitle,
body.site .crm-hero-subtitle,
body.site .school-hero-subtitle,
body.site .finance-hero-subtitle,
body.site .crm-feature p,
body.site .crm-feature-card p,
body.site .crm-module p,
body.site .crm-mod-desc,
body.site .crm-section-subtitle,
body.site .crm-plan-tag,
body.site .crm-price-suffix,
body.site .crm-feature-list li,
body.site .school-feature p,
body.site .school-section-subtitle,
body.site .school-list li,
body.site .school-step p,
body.site .school-card p,
body.site .finance-feature p,
body.site .finance-section-subtitle,
body.site .finance-list li,
body.site .finance-card p,
body.site .finance-demo-card p,
body.site .news-hero p,
body.site .news-status,
body.site .news-meta,
body.site .news-snippet,
body.site .service-row-content p,
body.site .mail-intro-desc,
body.site .mail-seo-text,
body.site .mail-plan-note,
body.site .mail-feature-list,
body.site .mail-plans-header p,
body.site .crm-demo-body p,
body.site .solution-card p,
body.site .dhost-desc,
body.site .dhost-section-subtitle,
body.site .dhost-card p,
body.site .dhost-price,
body.site .dhost-plan-tag,
body.site .dhost-feature-list li,
body.site .dhost-checks li {
	color: #334155 !important;
}

body.site .crm-feature h3,
body.site .crm-feature-card h4,
body.site .crm-module h3,
body.site .crm-section-title,
body.site .crm-price-head h4,
body.site .crm-price-custom,
body.site .crm-mod-title,
body.site .school-feature h3,
body.site .school-card h3,
body.site .school-section-title,
body.site .school-step h4,
body.site .finance-feature h3,
body.site .finance-section-title,
body.site .finance-card h3,
body.site .finance-demo-card h3,
body.site .service-row-content h4,
body.site .news-hero h1,
body.site .news-hero h2,
body.site .news-card h3,
body.site .solution-card h3,
body.site .dhost-card h4,
body.site .mail-intro-title,
body.site .mail-seo-title,
body.site .mail-plans-header h3,
body.site .crm-demo-body h3 {
	color: #0B1220 !important;
	-webkit-text-fill-color: #0B1220 !important;
	background: none !important;
}

body.site .crm-price-amount,
body.site .dhost-price span {
	background: none !important;
	-webkit-text-fill-color: #2563EB !important;
	color: #2563EB !important;
}

body.site .crm-btn-ghost,
body.site .dhost-btn,
body.site .dhost-btn-secondary,
body.site .dhost-card-btn,
body.site .service-row-cta {
	color: #0B1220 !important;
	background: #fff !important;
	border-color: rgba(11, 23, 48, 0.14) !important;
}

body.site .crm-feature,
body.site .crm-feature-card,
body.site .crm-module,
body.site .crm-price-card,
body.site .crm-pricing-card,
body.site .school-feature,
body.site .school-card,
body.site .school-glass,
body.site .school-step,
body.site .finance-feature,
body.site .finance-glass,
body.site .finance-card,
body.site .finance-demo-card,
body.site .service-row,
body.site .solution-card,
body.site .mail-intro-card,
body.site .news-card,
body.site .dhost-section,
body.site .dhost-card,
body.site .dhost-price-card,
body.site .dhost-checks li,
body.site .crm-demo-card,
body.site .mail-plan-features {
	background: #fff !important;
	border-color: var(--color-border) !important;
	box-shadow: var(--shadow-sm);
	color: #0B1220;
}

body.site .mail-plan-table-wrapper {
	background: #fff !important;
	border-color: var(--color-border) !important;
}

body.site .mail-plan-table th,
body.site .mail-plan-table td {
	color: #1F2A3A !important;
	border-bottom-color: var(--color-border) !important;
}

body.site .mail-plan-table th {
	background: #F5F8FC !important;
}

body.site .dhost-anchor-nav {
	background: #fff !important;
	border-color: var(--color-border) !important;
}

body.site .dhost-anchor-nav a {
	color: #1F2A3A !important;
	background: #F5F8FC !important;
	border-color: var(--color-border) !important;
}

body.site.hosting-darki-bg {
	background: var(--color-bg) !important;
}

body.site .finance-demo-cta {
	color: var(--color-primary) !important;
}

body.site .finance-list li::before {
	color: var(--color-primary) !important;
}

body.site .crm-hero-badge,
body.site .school-hero-badge,
body.site .finance-hero-badge {
	color: var(--color-primary) !important;
	background: var(--color-soft-blue) !important;
	border-color: rgba(37, 99, 235, 0.22) !important;
}

body.site .about-text h3,
body.site .solutions-header h1,
body.site .contact-details p,
body.site .dhost-faq-column h4 {
	color: #0B1220 !important;
	-webkit-text-fill-color: #0B1220 !important;
	background: none !important;
}

body.site .about-text p,
body.site .solutions-header p,
body.site .contact-details h4,
body.site .small-brand p,
body.site .dhost-testimonial-card p,
body.site .dhost-testimonial-card span,
body.site .dhost-accordion-content p,
body.site .author-info p {
	color: #334155 !important;
}

body.site .contact-item,
body.site .dhost-testimonial-card,
body.site .dhost-accordion-item,
body.site .glass-card {
	background: #fff !important;
	border-color: var(--color-border) !important;
	color: #0B1220;
}

body.site .contact-icon {
	background: var(--color-soft-blue);
	color: var(--color-primary);
	overflow: visible;
}

body.site .contact-icon::before {
	display: none;
}

body.site .contact-icon svg {
	width: 22px;
	height: 22px;
	display: block;
	stroke: currentColor;
}

body.site .crm-hero-media .crm-hero-mock {
	height: 300px;
	min-height: 300px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	border-color: var(--color-border);
	animation: none;
}

body.site .service-row-icon .service-icon-svg {
	color: var(--color-primary);
}

body.site .glass-card:hover {
	background: #F3F8FF !important;
}

body.site .dhost-accordion-btn {
	color: #0B1220 !important;
	background: #F5F8FC !important;
}

body.site .form-group input,
body.site .form-group textarea,
body.site .contact-form input,
body.site .contact-form textarea,
body.site .contact-form select {
	color: #0B1220 !important;
	background: #fff !important;
}

body.site .form-group input::placeholder,
body.site .form-group textarea::placeholder,
body.site .contact-form input::placeholder,
body.site .contact-form textarea::placeholder {
	color: #64748B !important;
}

body.site .tab-btn {
	color: #1F2A3A !important;
	background: #fff !important;
	border-color: var(--color-border) !important;
}

body.site .tab-btn.active,
body.site .tab-btn:hover {
	color: #fff !important;
	background: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}

body.site .modal-content {
	background: #fff !important;
	color: #0B1220 !important;
}

body.site .modal-content h2,
body.site .modal-content h3,
body.site .modal-section h3,
body.site .modal-section li,
body.site .modal-section strong {
	color: #0B1220 !important;
	-webkit-text-fill-color: #0B1220 !important;
	background: none !important;
	text-shadow: none !important;
}

body.site .modal-close {
	color: #0B1220 !important;
}

body.site .modal-section {
	background: #F5F8FC !important;
	border-color: var(--color-border) !important;
	box-shadow: none !important;
}

body.site .page-hero h1,
body.site .page-hero h2 {
	color: #0B1220 !important;
	-webkit-text-fill-color: #0B1220 !important;
	background: none !important;
}

body.site .crm-card-btn,
body.site .crm-btn-ghost {
	color: #0B1220 !important;
	background: #fff !important;
	border-color: rgba(11, 23, 48, 0.14) !important;
}

body.site .crm-card-btn-primary,
body.site .crm-btn-primary {
	color: #fff !important;
	background: var(--color-primary) !important;
	border-color: transparent !important;
}

body.site .dhost-title {
	background: none !important;
	-webkit-text-fill-color: #1D4ED8 !important;
	color: #1D4ED8 !important;
}

body.site .dhost-desc {
	color: #1E40AF !important;
}

body.site .filter-btn {
	color: #1F2A3A !important;
	background: #fff !important;
	border-color: var(--color-border) !important;
}

body.site .filter-btn:hover,
body.site .filter-btn.active {
	color: #fff !important;
	background: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}

body.site .crm-demo-cta {
	color: var(--color-primary) !important;
}

body.site .mail-feature-list li {
	color: #334155 !important;
}

