/* ==========================================================================
   Cyberex Digital Concept — main stylesheet
   Design tokens sampled from the real Cyberex logo palette.
   ========================================================================== */

:root {
	--cx-deep: #16523A;
	--cx-deep-2: #123F2D;
	--cx-bright: #8DC63F;
	--cx-bright-2: #6FA82F;
	--cx-cyan: #2FD4C4;
	--cx-charcoal: #0E1512;
	--cx-charcoal-2: #131C18;
	--cx-off-white: #F6F9F6;
	--cx-white: #FFFFFF;
	--cx-light-grey: #E7ECE8;
	--cx-grey: #6B756F;
	--cx-grey-soft: #9AA39D;
	--cx-border: #E1E7E2;

	--cx-font-head: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--cx-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--cx-container: 1240px;
	--cx-radius-sm: 10px;
	--cx-radius: 16px;
	--cx-radius-lg: 24px;
	--cx-shadow-sm: 0 2px 10px rgba(14, 21, 18, 0.06);
	--cx-shadow: 0 8px 30px rgba(14, 21, 18, 0.08);
	--cx-shadow-lg: 0 20px 60px rgba(14, 21, 18, 0.14);
	--cx-nav-h: 78px;
	--cx-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--cx-nav-h); }
body {
	margin: 0;
	font-family: var(--cx-font-body);
	color: var(--cx-charcoal);
	background: var(--cx-off-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
.cx-container {
	width: 100%;
	max-width: var(--cx-container);
	margin: 0 auto;
	padding: 0 24px;
}
section { position: relative; }
::selection { background: var(--cx-bright); color: var(--cx-charcoal); }

/* ---------- Typography scale ---------- */
.cx-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--cx-font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cx-deep);
}
.cx-eyebrow::before {
	content: '';
	width: 20px;
	height: 2px;
	background: var(--cx-bright);
	display: inline-block;
}
h1, .cx-h1 {
	font-family: var(--cx-font-head);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	font-size: clamp(32px, 5.2vw, 66px);
	color: var(--cx-charcoal);
}
h2, .cx-h2 {
	font-family: var(--cx-font-head);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.015em;
	font-size: clamp(28px, 3.6vw, 46px);
	color: var(--cx-charcoal);
}
h3, .cx-h3 {
	font-family: var(--cx-font-head);
	font-weight: 700;
	line-height: 1.3;
	font-size: clamp(19px, 2vw, 23px);
	color: var(--cx-charcoal);
}
p, .cx-body { font-size: 16px; color: var(--cx-grey); }
.cx-lede { font-size: clamp(17px, 1.6vw, 19px); color: var(--cx-grey); line-height: 1.7; }
.cx-section-head { max-width: 720px; margin: 0 0 48px; }
.cx-section-head.cx-center { margin-left: auto; margin-right: auto; text-align: center; }
.cx-section-head h2 { margin-top: 14px; }
.cx-section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.cx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 999px;
	font-family: var(--cx-font-head);
	font-weight: 700;
	font-size: 15px;
	border: 1px solid transparent;
	transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease), background 0.25s ease, color 0.25s ease;
	white-space: nowrap;
}
.cx-btn-primary {
	background: linear-gradient(135deg, var(--cx-bright), var(--cx-bright-2));
	color: var(--cx-charcoal);
	box-shadow: 0 10px 30px rgba(141, 198, 63, 0.35);
}
.cx-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(141, 198, 63, 0.45); }
.cx-btn-outline {
	background: transparent;
	border-color: rgba(255,255,255,0.35);
	color: var(--cx-charcoal);
	border-color: var(--cx-border);
}
.cx-btn-outline:hover { border-color: var(--cx-deep); background: rgba(22, 82, 58, 0.05); transform: translateY(-3px); }
.cx-btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.cx-btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.cx-btn-sm { padding: 10px 18px; font-size: 13px; }
.cx-btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--cx-ease); }
.cx-btn:hover svg { transform: translateX(3px); }

/* ---------- Logo ---------- */
.cx-logo { display: inline-flex; align-items: center; gap: 12px; }
.cx-logo-mark { flex-shrink: 0; }
.cx-logo-word { display: flex; flex-direction: column; line-height: 1; }
.cx-logo-word-main { font-family: var(--cx-font-head); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.cx-logo-word-sub { font-family: var(--cx-font-body); font-weight: 500; font-size: 11.5px; letter-spacing: 0.02em; margin-top: 3px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.cx-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 200;
	height: var(--cx-nav-h);
	display: flex;
	align-items: center;
	background: rgba(246, 249, 246, 0.72);
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	border-bottom: 1px solid rgba(14, 21, 18, 0.06);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
.cx-nav.is-scrolled { box-shadow: var(--cx-shadow-sm); }
.cx-nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.cx-nav-links { display: flex; align-items: center; gap: 4px; }
.cx-nav-links a {
	position: relative;
	padding: 10px 16px;
	font-family: var(--cx-font-head);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--cx-charcoal);
}
.cx-nav-links a::after {
	content: '';
	position: absolute;
	left: 16px; right: 16px; bottom: 6px;
	height: 2px;
	background: var(--cx-bright);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--cx-ease);
}
.cx-nav-links a:hover::after, .cx-nav-links a.is-active::after { transform: scaleX(1); }
.cx-nav-cta { display: flex; align-items: center; gap: 14px; }
.cx-nav-toggle {
	display: none;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	background: transparent; border: 1px solid var(--cx-border); border-radius: 10px;
}
.cx-nav-toggle span, .cx-nav-toggle::before, .cx-nav-toggle::after {
	content: ''; display: block; width: 20px; height: 2px; background: var(--cx-charcoal);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.cx-nav-toggle { flex-direction: column; gap: 5px; }
.cx-nav-toggle.is-open span { opacity: 0; }
.cx-nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.cx-nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.cx-mobile-menu {
	position: fixed; inset: 0; top: var(--cx-nav-h);
	background: var(--cx-off-white);
	z-index: 190;
	display: flex; flex-direction: column;
	padding: 28px 24px;
	transform: translateY(-12px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.cx-mobile-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.cx-mobile-menu a {
	font-family: var(--cx-font-head);
	font-weight: 700;
	font-size: 22px;
	padding: 16px 4px;
	border-bottom: 1px solid var(--cx-border);
}
.cx-mobile-menu .cx-btn { margin-top: 24px; align-self: flex-start; }

/* ==========================================================================
   Hero
   ========================================================================== */
.cx-hero {
	padding: calc(var(--cx-nav-h) + 64px) 0 90px;
	background: radial-gradient(1200px 600px at 85% -10%, rgba(141, 198, 63, 0.14), transparent 60%),
	            linear-gradient(180deg, var(--cx-off-white) 0%, #EFF5EF 100%);
	overflow: hidden;
}
.cx-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.cx-hero-copy h1 { margin-top: 18px; }
.cx-hero-copy .cx-lede { margin-top: 22px; max-width: 560px; }
.cx-hero-copy .cx-lede-2 { margin-top: 14px; max-width: 560px; font-size: 15.5px; color: var(--cx-grey); }
.cx-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cx-hero-tags { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--cx-border); }
.cx-hero-tags span {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 600; color: var(--cx-deep);
	font-family: var(--cx-font-head);
}
.cx-hero-tags span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cx-bright); }

/* Hero visual */
.cx-hero-visual { position: relative; height: 480px; }
.cx-hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cx-hero-node {
	position: absolute;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.75);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: var(--cx-radius);
	box-shadow: var(--cx-shadow);
	animation: cxFloat 6s ease-in-out infinite;
}
.cx-hero-node svg { position: static; width: 26px; height: 26px; }
.cx-hero-node--1 { top: 4%; left: 8%; width: 92px; height: 92px; animation-delay: 0s; }
.cx-hero-node--2 { top: 6%; right: 4%; width: 76px; height: 76px; animation-delay: 0.6s; }
.cx-hero-node--3 { top: 40%; left: -2%; width: 84px; height: 84px; animation-delay: 1.2s; }
.cx-hero-node--4 { top: 38%; right: 12%; width: 108px; height: 108px; animation-delay: 0.3s; }
.cx-hero-node--5 { bottom: 10%; left: 14%; width: 80px; height: 80px; animation-delay: 0.9s; }
.cx-hero-node--6 { bottom: 4%; right: 2%; width: 96px; height: 96px; animation-delay: 1.5s; }
.cx-hero-node--center {
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 170px; height: 170px;
	background: linear-gradient(145deg, var(--cx-deep), var(--cx-deep-2));
	box-shadow: 0 20px 50px rgba(22, 82, 58, 0.35);
	border: none;
	animation: cxPulse 4s ease-in-out infinite;
}
.cx-hero-node--center svg { width: 56px; height: 56px; }
@keyframes cxFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes cxPulse { 0%, 100% { box-shadow: 0 20px 50px rgba(22, 82, 58, 0.35); } 50% { box-shadow: 0 20px 65px rgba(141, 198, 63, 0.45); } }
.cx-hero-lines path {
	stroke: var(--cx-bright);
	stroke-width: 1.5;
	fill: none;
	stroke-dasharray: 6 6;
	opacity: 0.55;
	animation: cxDash 22s linear infinite;
}
@keyframes cxDash { to { stroke-dashoffset: -240; } }

/* ==========================================================================
   Credibility strip
   ========================================================================== */
.cx-credibility { padding: 30px 0; background: var(--cx-charcoal); }
.cx-credibility-row { display: flex; flex-wrap: wrap; gap: 18px 36px; justify-content: space-between; align-items: center; }
.cx-credibility-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.88); font-size: 13.5px; font-weight: 600; font-family: var(--cx-font-head); }
.cx-credibility-item svg { width: 18px; height: 18px; color: var(--cx-bright); flex-shrink: 0; }

/* ==========================================================================
   About + process
   ========================================================================== */
.cx-about { padding: 110px 0; }
.cx-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cx-about-copy p + p { margin-top: 16px; }
.cx-process { display: flex; flex-direction: column; }
.cx-process-step { display: flex; gap: 20px; padding: 20px 0; position: relative; }
.cx-process-step:not(:last-child)::before {
	content: ''; position: absolute; left: 23px; top: 54px; bottom: -6px; width: 2px;
	background: repeating-linear-gradient(to bottom, var(--cx-bright) 0 6px, transparent 6px 12px);
}
.cx-process-num {
	flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
	background: var(--cx-off-white); border: 2px solid var(--cx-bright);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--cx-font-head); font-weight: 800; color: var(--cx-deep); font-size: 15px;
	position: relative; z-index: 1;
}
.cx-process-text h4 { font-family: var(--cx-font-head); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.cx-process-text p { font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Mission / Vision / Values
   ========================================================================== */
.cx-mvv { padding: 90px 0 110px; background: var(--cx-off-white); }
.cx-mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cx-mvv-card {
	background: var(--cx-white); border: 1px solid var(--cx-border); border-radius: var(--cx-radius-lg);
	padding: 34px 30px; transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease);
}
.cx-mvv-card:hover { transform: translateY(-6px); box-shadow: var(--cx-shadow-lg); }
.cx-mvv-icon {
	width: 52px; height: 52px; border-radius: 14px;
	background: linear-gradient(135deg, var(--cx-deep), var(--cx-deep-2));
	display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.cx-mvv-icon svg { width: 24px; height: 24px; color: var(--cx-bright); }
.cx-mvv-card h3 { margin-bottom: 10px; }
.cx-mvv-card p { font-size: 15px; }
.cx-mvv-values { list-style: none; margin: 4px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.cx-mvv-values li { font-size: 14px; font-weight: 600; color: var(--cx-charcoal); display: flex; align-items: center; gap: 8px; }
.cx-mvv-values li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cx-bright); flex-shrink: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.cx-services { padding: 110px 0; }
.cx-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cx-service-card {
	background: var(--cx-white); border: 1px solid var(--cx-border); border-radius: var(--cx-radius);
	padding: 28px 26px; display: flex; flex-direction: column;
	transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease), border-color 0.35s ease;
}
.cx-service-card:hover { transform: translateY(-6px); box-shadow: var(--cx-shadow-lg); border-color: transparent; }
.cx-service-num { font-family: var(--cx-font-head); font-weight: 800; font-size: 12.5px; color: var(--cx-bright-2); letter-spacing: 0.08em; margin-bottom: 14px; }
.cx-service-icon {
	width: 48px; height: 48px; border-radius: 12px;
	background: rgba(141, 198, 63, 0.12);
	display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.cx-service-icon svg { width: 24px; height: 24px; color: var(--cx-deep); }
.cx-service-card h3 { margin-bottom: 10px; }
.cx-service-card p.cx-service-desc { font-size: 14.5px; margin-bottom: 16px; }
.cx-service-list { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--cx-border); display: flex; flex-wrap: wrap; gap: 6px; }
.cx-service-list span {
	font-size: 11.5px; font-weight: 600; color: var(--cx-deep);
	background: rgba(22, 82, 58, 0.06); padding: 5px 10px; border-radius: 999px;
}
.cx-service-card.cx-service-highlight { grid-column: span 1; background: linear-gradient(160deg, var(--cx-deep), var(--cx-deep-2)); border-color: transparent; }
.cx-service-highlight .cx-service-num { color: var(--cx-bright); }
.cx-service-highlight h3, .cx-service-highlight p.cx-service-desc { color: #fff; }
.cx-service-highlight p.cx-service-desc { color: rgba(255,255,255,0.78); }
.cx-service-highlight .cx-service-icon { background: rgba(255,255,255,0.14); }
.cx-service-highlight .cx-service-icon svg { color: var(--cx-bright); }
.cx-service-highlight .cx-service-list { border-top-color: rgba(255,255,255,0.18); }
.cx-service-highlight .cx-service-list span { background: rgba(255,255,255,0.12); color: #fff; }
.cx-service-disclaimer {
	margin-top: 34px; padding: 20px 24px; border-radius: var(--cx-radius);
	background: rgba(141, 198, 63, 0.08); border: 1px solid rgba(141, 198, 63, 0.3);
	font-size: 14px; color: var(--cx-charcoal); line-height: 1.7;
}
.cx-service-disclaimer strong { color: var(--cx-deep); }

/* ==========================================================================
   Industries
   ========================================================================== */
.cx-industries { padding: 90px 0; background: var(--cx-charcoal); }
.cx-industries .cx-eyebrow { color: var(--cx-bright); }
.cx-industries .cx-eyebrow::before { background: var(--cx-bright); }
.cx-industries h2, .cx-industries p { color: #fff; }
.cx-industries p { color: rgba(255,255,255,0.65); }
.cx-industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.cx-industry-card {
	background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--cx-radius);
	padding: 24px 20px; transition: transform 0.35s var(--cx-ease), background 0.3s ease, border-color 0.3s ease;
}
.cx-industry-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); border-color: rgba(141,198,63,0.4); }
.cx-industry-card svg { width: 26px; height: 26px; color: var(--cx-bright); margin-bottom: 14px; }
.cx-industry-card h4 { font-family: var(--cx-font-head); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cx-industry-card p { font-size: 13px; margin: 0; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Projects
   ========================================================================== */
.cx-projects { padding: 110px 0; }
.cx-projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cx-project-card {
	background: var(--cx-white); border: 1px solid var(--cx-border); border-radius: var(--cx-radius-lg);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease);
}
.cx-project-card:hover { transform: translateY(-6px); box-shadow: var(--cx-shadow-lg); }
.cx-project-visual {
	height: 190px; position: relative; overflow: hidden;
	background: linear-gradient(135deg, var(--cx-deep) 0%, var(--cx-deep-2) 60%, var(--cx-charcoal) 100%);
	display: flex; align-items: center; justify-content: center;
}
.cx-project-visual svg { width: 100%; height: 100%; }
.cx-project-status {
	position: absolute; top: 14px; left: 14px;
	font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
	background: rgba(255,255,255,0.14); color: #fff; backdrop-filter: blur(6px);
	padding: 6px 12px; border-radius: 999px;
}
.cx-project-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.cx-project-sector { font-size: 12.5px; font-weight: 700; color: var(--cx-bright-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.cx-project-body h3 { margin-bottom: 12px; }
.cx-project-body p { font-size: 14.5px; margin-bottom: 14px; }
.cx-project-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.cx-project-features span { font-size: 12px; font-weight: 600; color: var(--cx-deep); background: rgba(22,82,58,0.06); padding: 5px 11px; border-radius: 999px; }
.cx-project-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--cx-border); }
.cx-project-note { font-size: 12.5px; color: var(--cx-grey-soft); font-style: italic; }
.cx-project-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--cx-font-head); font-weight: 700; font-size: 13.5px; color: var(--cx-deep); }
.cx-project-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--cx-ease); }
.cx-project-card:hover .cx-project-link svg { transform: translate(3px, -3px); }

/* ==========================================================================
   Technology capabilities
   ========================================================================== */
.cx-tech { padding: 90px 0; background: var(--cx-off-white); }
.cx-tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cx-tech-card {
	background: var(--cx-white); border: 1px solid var(--cx-border); border-radius: var(--cx-radius);
	padding: 22px 18px; text-align: center; transition: transform 0.3s var(--cx-ease), box-shadow 0.3s var(--cx-ease);
}
.cx-tech-card:hover { transform: translateY(-4px); box-shadow: var(--cx-shadow); }
.cx-tech-card svg { width: 28px; height: 28px; color: var(--cx-deep); margin: 0 auto 12px; }
.cx-tech-card span { font-family: var(--cx-font-head); font-weight: 700; font-size: 13px; display: block; }

/* ==========================================================================
   How We Work — timeline
   ========================================================================== */
.cx-howwework { padding: 110px 0; background: var(--cx-off-white); }
.cx-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; margin-top: 8px; }
.cx-timeline-item { position: relative; padding-top: 26px; }
.cx-timeline-item::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--cx-bright), rgba(141,198,63,0.15));
	border-radius: 3px;
}
.cx-timeline-num { font-family: var(--cx-font-head); font-weight: 800; font-size: 13px; color: var(--cx-bright-2); letter-spacing: 0.08em; margin-bottom: 8px; }
.cx-timeline-item h4 { font-family: var(--cx-font-head); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.cx-timeline-item p { font-size: 14px; margin: 0; }

/* ==========================================================================
   Why Cyberex
   ========================================================================== */
.cx-why { padding: 110px 0; }
.cx-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.cx-why-card { padding: 30px 26px; border-radius: var(--cx-radius); border: 1px solid var(--cx-border); transition: transform 0.3s var(--cx-ease), box-shadow 0.3s var(--cx-ease); }
.cx-why-card:hover { transform: translateY(-5px); box-shadow: var(--cx-shadow); }
.cx-why-card svg { width: 30px; height: 30px; color: var(--cx-bright-2); margin-bottom: 16px; }
.cx-why-card h4 { font-family: var(--cx-font-head); font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.cx-why-card p { font-size: 14px; margin: 0; }
.cx-why-statement { margin-top: 40px; padding: 26px 30px; border-left: 3px solid var(--cx-bright); background: rgba(141,198,63,0.06); border-radius: 0 var(--cx-radius) var(--cx-radius) 0; font-size: 16px; color: var(--cx-charcoal); font-style: italic; }

/* ==========================================================================
   Company info / trust card
   ========================================================================== */
.cx-trust { padding: 90px 0 110px; background: var(--cx-off-white); }
.cx-trust-card {
	background: var(--cx-white); border: 1px solid var(--cx-border); border-radius: var(--cx-radius-lg);
	padding: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 24px;
	box-shadow: var(--cx-shadow);
}
.cx-trust-item .cx-trust-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cx-grey-soft); margin-bottom: 8px; }
.cx-trust-item .cx-trust-value { font-family: var(--cx-font-head); font-weight: 700; font-size: 16.5px; color: var(--cx-charcoal); }
.cx-trust-item .cx-trust-value.cx-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cx-trust-item .cx-tags span { font-size: 12px; font-weight: 600; background: rgba(22,82,58,0.06); color: var(--cx-deep); padding: 5px 10px; border-radius: 999px; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cx-cta {
	margin: 0 24px; max-width: calc(var(--cx-container) - 0px); margin-left: auto; margin-right: auto;
	border-radius: var(--cx-radius-lg);
	padding: 80px 48px;
	background: linear-gradient(135deg, var(--cx-deep) 0%, var(--cx-deep-2) 55%, var(--cx-charcoal) 100%);
	position: relative; overflow: hidden;
	text-align: center;
}
.cx-cta::before {
	content: ''; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: radial-gradient(ellipse at center, black, transparent 75%);
	animation: cxGridPan 40s linear infinite;
}
@keyframes cxGridPan { from { background-position: 0 0; } to { background-position: 260px 260px; } }
.cx-cta-inner { position: relative; z-index: 1; }
.cx-cta h2 { color: #fff; }
.cx-cta p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 16px auto 0; }
.cx-cta .cx-hero-cta { justify-content: center; margin-top: 32px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.cx-contact { padding: 110px 0; }
.cx-contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.cx-contact-info-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.cx-contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.cx-contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(22,82,58,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cx-contact-info-icon svg { width: 20px; height: 20px; color: var(--cx-deep); }
.cx-contact-info-item h4 { font-family: var(--cx-font-head); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.cx-contact-info-item a, .cx-contact-info-item p { font-size: 14.5px; color: var(--cx-grey); margin: 0; }
.cx-contact-social { display: flex; gap: 10px; margin-top: 30px; }
.cx-contact-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--cx-border); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, border-color 0.3s ease; }
.cx-contact-social a:hover { background: var(--cx-deep); border-color: var(--cx-deep); }
.cx-contact-social a:hover svg { color: #fff; }
.cx-contact-social svg { width: 18px; height: 18px; color: var(--cx-deep); }

.cx-form { background: var(--cx-white); border: 1px solid var(--cx-border); border-radius: var(--cx-radius-lg); padding: 40px; box-shadow: var(--cx-shadow); }
.cx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cx-field { margin-bottom: 18px; }
.cx-field label { display: block; font-size: 13px; font-weight: 700; font-family: var(--cx-font-head); margin-bottom: 8px; color: var(--cx-charcoal); }
.cx-field input, .cx-field select, .cx-field textarea {
	width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--cx-border);
	font-family: var(--cx-font-body); font-size: 14.5px; background: var(--cx-off-white); color: var(--cx-charcoal);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cx-field input:focus, .cx-field select:focus, .cx-field textarea:focus {
	outline: none; border-color: var(--cx-bright-2); box-shadow: 0 0 0 4px rgba(141,198,63,0.15); background: #fff;
}
.cx-field textarea { resize: vertical; min-height: 120px; }
.cx-hp { position: absolute; left: -9999px; top: -9999px; }
.cx-form-note { font-size: 12.5px; color: var(--cx-grey-soft); margin-top: 12px; }
.cx-form-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 600; display: none; }
.cx-form-alert.is-visible { display: block; }
.cx-form-alert.success { background: rgba(141,198,63,0.14); color: var(--cx-deep); border: 1px solid rgba(141,198,63,0.4); }
.cx-form-alert.error { background: rgba(220,38,38,0.08); color: #b91c1c; border: 1px solid rgba(220,38,38,0.25); }

/* ==========================================================================
   Footer
   ========================================================================== */
.cx-footer { background: var(--cx-charcoal); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.cx-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cx-footer-about p { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.55); max-width: 300px; }
.cx-footer h5 { font-family: var(--cx-font-head); color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.cx-footer ul { display: flex; flex-direction: column; gap: 12px; }
.cx-footer ul a, .cx-footer ul span { font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color 0.25s ease; }
.cx-footer ul li a:hover { color: var(--cx-bright); }
.cx-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 26px 0; font-size: 13px; color: rgba(255,255,255,0.45); }
.cx-footer-bottom a { color: rgba(255,255,255,0.6); }
.cx-footer-bottom a:hover { color: var(--cx-bright); }
.cx-footer-legal { display: flex; gap: 20px; }

/* ==========================================================================
   Reveal / stagger animation utility
   ========================================================================== */
.cx-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--cx-ease), transform 0.7s var(--cx-ease); }
.cx-reveal.is-visible { opacity: 1; transform: translateY(0); }
.cx-stagger.is-visible > * { transition-delay: calc(var(--cx-i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.cx-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
	.cx-tech-grid { grid-template-columns: repeat(3, 1fr); }
	.cx-industries-grid { grid-template-columns: repeat(2, 1fr); }
	.cx-trust-card { grid-template-columns: repeat(2, 1fr); }
	.cx-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
	.cx-hero-grid { grid-template-columns: 1fr; }
	.cx-hero-visual { height: 380px; order: -1; }
	.cx-about-grid { grid-template-columns: 1fr; gap: 48px; }
	.cx-services-grid { grid-template-columns: repeat(2, 1fr); }
	.cx-mvv-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
	.cx-contact-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 900px) {
	.cx-nav-links, .cx-nav-cta .cx-btn-outline { display: none; }
	.cx-nav-toggle { display: flex; }
	.cx-projects-grid { grid-template-columns: 1fr; }
	.cx-credibility-row { justify-content: flex-start; }
}
@media (max-width: 720px) {
	.cx-container { padding: 0 20px; }
	.cx-hero { padding-top: calc(var(--cx-nav-h) + 40px); padding-bottom: 60px; }
	.cx-hero-visual { height: 300px; }
	.cx-hero-node { display: none; }
	.cx-hero-node--1, .cx-hero-node--4, .cx-hero-node--center { display: flex; }
	.cx-hero-node--1 { width: 66px; height: 66px; }
	.cx-hero-node--4 { width: 78px; height: 78px; }
	.cx-hero-node--center { width: 128px; height: 128px; }
	.cx-about, .cx-mvv, .cx-services, .cx-projects, .cx-why, .cx-trust, .cx-contact, .cx-howwework { padding: 64px 0; }
	.cx-industries, .cx-tech { padding: 56px 0; }
	.cx-services-grid, .cx-mvv-values, .cx-why-grid, .cx-timeline { grid-template-columns: 1fr; }
	.cx-industries-grid { grid-template-columns: 1fr 1fr; }
	.cx-tech-grid { grid-template-columns: repeat(2, 1fr); }
	.cx-trust-card { grid-template-columns: 1fr 1fr; padding: 30px 24px; gap: 24px 18px; }
	.cx-form { padding: 26px; }
	.cx-form-row { grid-template-columns: 1fr; }
	.cx-cta { margin: 0 16px; padding: 56px 24px; }
	.cx-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
	.cx-footer-about { grid-column: span 2; }
	.cx-footer-bottom { flex-direction: column; align-items: flex-start; }
	.cx-hero-cta, .cx-cta .cx-hero-cta { flex-direction: column; align-items: stretch; }
	.cx-hero-cta .cx-btn, .cx-cta .cx-btn { width: 100%; }
}
@media (max-width: 430px) {
	.cx-logo-word-main { font-size: 19px; }
	.cx-industries-grid, .cx-tech-grid { grid-template-columns: 1fr 1fr; }
	.cx-trust-card { grid-template-columns: 1fr; }
	.cx-footer-grid { grid-template-columns: 1fr; }
	.cx-footer-about { grid-column: span 1; }
}
