/* ==========================================================================
   BrightWebX Technologies — design tokens, reset, animations, components
   ========================================================================== */

:root {
	--color-primary-blue: #0EA5E9;
	--color-dark-navy: #0F172A;
	--color-navy-alt: #0B1424;
	--color-accent-orange: #F97316;
	--color-white: #FFFFFF;
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--color-dark-navy); }
body { font-family: var(--font-body); }
::selection { background: rgba(14,165,233,0.35); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.bwx-site { position: relative; width: 100%; font-family: var(--font-body); background: var(--color-dark-navy); overflow-x: hidden; }
.bwx-container { max-width: 1280px; margin: 0 auto; }

/* ---- Keyframes ---- */
@keyframes gridDrift { 0% { background-position: 0 0, 0 0; } 100% { background-position: 64px 64px, 64px 64px; } }
@keyframes floatY { 0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); } 50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.06); } }
@keyframes nodePulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes auroraShift { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(3%, -4%) scale(1.08); } 100% { transform: translate(0,0) scale(1); } }
@keyframes dash { to { stroke-dashoffset: -200; } }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes spinReverse { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes orbitA { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes orbitB { 0% { transform: rotate(120deg); } 100% { transform: rotate(480deg); } }
@keyframes orbitC { 0% { transform: rotate(240deg); } 100% { transform: rotate(600deg); } }
@keyframes barGrow { 0%, 100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }
@keyframes flowDot { 0% { top: 0%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blinkCursor { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes fadeInLog { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Generic interactive components ---- */
.bwx-card { transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.bwx-card:hover { transform: translateY(-6px); border-color: rgba(14,165,233,0.45) !important; background: rgba(255,255,255,0.06) !important; }
.bwx-cta-btn, .bwx-btn { transition: transform .2s ease, box-shadow .2s ease; }
.bwx-cta-btn:hover, .bwx-btn:hover { transform: translateY(-2px); }
.bwx-chip { animation: floatY 6s ease-in-out infinite; }

.bwx-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.3); color: #7dd3fc; padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 20px; white-space: nowrap; }
.bwx-eyebrow--orange { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.3); color: #fdba74; }

.bwx-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; text-decoration: none; padding: 16px 30px; border-radius: 14px; border: none; cursor: pointer; font-family: var(--font-body); }
.bwx-btn--primary { background: linear-gradient(135deg,#0EA5E9,#0369a1); color: #fff; box-shadow: 0 12px 32px rgba(14,165,233,0.4); }
.bwx-btn--ghost { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px); color: #E2E8F0; }
.bwx-btn--white { background: #fff; color: #0F172A; box-shadow: 0 12px 30px rgba(0,0,0,0.25); font-weight: 700; }
.bwx-btn--outline-white { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.5); color: #fff; font-weight: 700; }
.bwx-btn--pill { padding: 11px 22px; border-radius: 999px; font-size: 14px; background: linear-gradient(135deg,#0EA5E9,#0284c7); box-shadow: 0 8px 24px rgba(14,165,233,0.35); }
.bwx-btn--sm { padding: 11px 20px; font-size: 14px; border-radius: 12px; }

.bwx-section-divider { position: absolute; top: 0; left: 0; right: 0; height: 1px; }

.bwx-placeholder { position: relative; width: 100%; border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px); border: 1px solid rgba(255,255,255,0.1); }
.bwx-placeholder__caption { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.08em; color: #7B8AA3; text-transform: uppercase; background: rgba(15,23,42,0.7); padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); }

.bwx-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #64748B; margin-bottom: 24px; }
.bwx-breadcrumb a { color: #94A3B8; text-decoration: none; }
.bwx-breadcrumb a:hover { color: var(--color-accent-orange); }
.bwx-breadcrumb__current { color: #CBD5E1; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.bwx-header { position: fixed; top: 0; left: 0; z-index: 100; width: 100%; background: rgba(15,23,42,0.55); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-bottom: 1px solid rgba(255,255,255,0.08); }
.bwx-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 48px; }
.bwx-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.bwx-logo__badge { position: relative; width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg,#0EA5E9,#0369a1 55%,#F97316); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(14,165,233,0.4); flex: none; }
.bwx-logo__image { max-height: 40px; width: auto; }
.bwx-logo__wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.bwx-logo__line1 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #F8FAFC; letter-spacing: -0.01em; }
.bwx-logo__line2 { font-family: var(--font-body); font-size: 10px; font-weight: 600; color: #7dd3fc; letter-spacing: 0.16em; text-transform: uppercase; }

.bwx-navlinks .menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.bwx-navlinks .menu-item a { text-decoration: none; }
.bwx-navlink { color: #E2E8F0; font-size: 15px; font-weight: 500; transition: color .2s ease; }
.bwx-navlink:hover { color: var(--color-accent-orange) !important; }
.current-menu-item .bwx-navlink, .current_page_item .bwx-navlink { color: var(--color-accent-orange); }

.bwx-header__actions { display: flex; align-items: center; gap: 16px; }
.bwx-nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0; }
.bwx-nav-toggle span { display: block; width: 100%; height: 2px; background: #E2E8F0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.bwx-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bwx-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.bwx-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bwx-mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 24px; background: rgba(15,23,42,0.97); border-bottom: 1px solid rgba(255,255,255,0.08); }
.bwx-mobile-menu.is-open { display: flex; }
.bwx-mobile-menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.bwx-mobile-menu__list .menu-item a { display: block; padding: 12px 4px; text-decoration: none; color: #E2E8F0; font-size: 16px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bwx-mobile-menu__list .current-menu-item a { color: var(--color-accent-orange); }
.bwx-mobile-menu__cta { justify-content: center; margin-top: 12px; }

/* ==========================================================================
   Layout helpers reused from the design reference
   ========================================================================== */
@media (max-width: 1080px) {
	.bwx-navlinks { display: none !important; }
	.bwx-nav-toggle { display: flex !important; }
	.bwx-header__actions .bwx-btn--pill { display: none !important; }
}
@media (max-width: 980px) {
	.bwx-hero-grid { grid-template-columns: 1fr !important; }
	.bwx-illustration { margin: 48px auto 0 !important; }
	.bwx-stats-row { flex-wrap: wrap !important; }
	.bwx-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.bwx-ai-grid { grid-template-columns: 1fr !important; }
	.bwx-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.bwx-process-grid { grid-template-columns: repeat(2, 1fr) !important; row-gap: 40px !important; }
	.bwx-process-line { display: none !important; }
	.bwx-footer__grid { grid-template-columns: repeat(2, 1fr) !important; }
	.bwx-service-row { grid-template-columns: 1fr !important; }
	.bwx-service-row__visual { order: -1 !important; margin-bottom: 32px; }
	.bwx-why-grid-2, .bwx-approach-grid, .bwx-values-grid, .bwx-mission-grid, .bwx-glance-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.bwx-projects-grid, .bwx-blog-grid, .bwx-team-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.bwx-contact-grid { grid-template-columns: 1fr !important; }
	.bwx-featured-post { grid-template-columns: 1fr !important; }
}
@media (max-width: 700px) {
	.bwx-chip-outer { display: none !important; }
	.bwx-h1 { font-size: 40px !important; }
	.bwx-h2 { font-size: 30px !important; }
	.bwx-services-grid, .bwx-why-grid, .bwx-process-grid, .bwx-footer__grid, .bwx-testimonial-grid,
	.bwx-why-grid-2, .bwx-approach-grid, .bwx-values-grid, .bwx-mission-grid, .bwx-glance-grid,
	.bwx-projects-grid, .bwx-blog-grid, .bwx-team-grid { grid-template-columns: 1fr !important; }
	.bwx-header__inner { padding: 14px 20px; }
	.bwx-section { padding-left: 20px !important; padding-right: 20px !important; }
	.bwx-cta-banner { padding: 48px 28px !important; }
}

/* ==========================================================================
   Sections / Section wrapper
   ========================================================================== */
.bwx-section { position: relative; width: 100%; padding: 120px 48px; }
.bwx-section--navy { background: var(--color-dark-navy); }
.bwx-section--alt { background: var(--color-navy-alt); }
.bwx-section__head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.bwx-h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: #F8FAFC; margin: 0 0 16px; letter-spacing: -0.01em; }
.bwx-lead { font-size: 17px; line-height: 1.7; color: #94A3B8; margin: 0; }

/* ==========================================================================
   HERO
   ========================================================================== */
.bwx-hero { position: relative; width: 100%; min-height: 100vh; background: var(--color-dark-navy); overflow: hidden; isolation: isolate; }
.bwx-hero__bg-grid { position: absolute; inset: 0; z-index: 0; opacity: 0.5; background-image: linear-gradient(rgba(14,165,233,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,0.14) 1px, transparent 1px); background-size: 64px 64px; animation: gridDrift 9s linear infinite; mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 75%); }
.bwx-aurora { position: absolute; border-radius: 50%; filter: blur(10px); z-index: 0; }
.bwx-aurora--blue { top: -220px; left: -160px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(14,165,233,0.45) 0%, rgba(14,165,233,0) 70%); animation: auroraShift 14s ease-in-out infinite; }
.bwx-aurora--orange { top: 120px; right: -260px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(249,115,22,0.35) 0%, rgba(249,115,22,0) 70%); animation: auroraShift 16s ease-in-out infinite reverse; }
.bwx-aurora--bottom { bottom: -260px; left: 30%; width: 800px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, rgba(14,165,233,0) 70%); }
.bwx-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bwx-particle { position: absolute; border-radius: 50%; }

.bwx-hero-grid { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; padding: 132px 48px 96px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.bwx-h1 { font-family: var(--font-heading); font-size: 60px; line-height: 1.08; font-weight: 700; color: #F8FAFC; margin: 0 0 24px; letter-spacing: -0.01em; }
.bwx-h1__gradient { background: linear-gradient(90deg,#0EA5E9,#38bdf8 45%,#F97316); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bwx-hero__body { font-size: 18px; line-height: 1.7; color: #94A3B8; max-width: 540px; margin: 0 0 36px; font-weight: 400; }
.bwx-hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.bwx-trust-list { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 0 0 44px; padding: 0; list-style: none; }
.bwx-trust-item { display: flex; align-items: center; gap: 8px; color: #CBD5E1; font-size: 14px; font-weight: 500; }
.bwx-trust-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(14,165,233,0.15); color: var(--color-primary-blue); display: flex; align-items: center; justify-content: center; font-size: 12px; flex: none; }

.bwx-stats-row { display: flex; gap: 16px; flex-wrap: wrap; }
.bwx-stat-card { animation: floatCard 5s ease-in-out infinite; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(12px); border-radius: 16px; padding: 18px 20px; min-width: 118px; }
.bwx-stat-card__number { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: #fff; }
.bwx-stat-card__label { font-size: 13px; color: #94A3B8; margin-top: 4px; }

.bwx-illustration { position: relative; width: 100%; max-width: 600px; height: 600px; margin: 0 auto; justify-self: center; }
.bwx-illustration__core-glow { position: absolute; top: 50%; left: 50%; width: 360px; height: 360px; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,0.5) 0%, rgba(14,165,233,0) 70%); filter: blur(6px); animation: pulseGlow 4s ease-in-out infinite; }
.bwx-illustration__radar { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; transform: translate(-50%,-50%); border-radius: 50%; background: conic-gradient(from 0deg, rgba(14,165,233,0) 0deg, rgba(14,165,233,0.4) 22deg, rgba(14,165,233,0) 65deg); animation: spin 7s linear infinite; opacity: 0.85; }
.bwx-illustration__ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; }
.bwx-illustration__ring--a { width: 460px; height: 460px; border: 1px dashed rgba(14,165,233,0.35); animation: spinReverse 42s linear infinite; }
.bwx-illustration__ring--b { width: 520px; height: 520px; border: 1px dashed rgba(249,115,22,0.22); animation: spin 58s linear infinite; }
.bwx-orbit { position: absolute; left: 40px; top: 40px; width: 520px; height: 520px; }
.bwx-orbit--a { animation: orbitA 16s linear infinite; }
.bwx-orbit--b { animation: orbitB 16s linear infinite; }
.bwx-orbit--c { animation: orbitC 20s linear infinite; }
.bwx-orbit__dot { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border-radius: 50%; }
.bwx-illustration__core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 340px; height: 340px; display: flex; align-items: center; justify-content: center; }
.bwx-caption-chip { position: absolute; top: calc(50% + 150px); left: 50%; transform: translateX(-50%); background: rgba(15,23,42,0.85); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 999px; font-size: 12px; color: #7dd3fc; font-weight: 600; white-space: nowrap; }

.bwx-widget { position: absolute; animation: floatCard 6s ease-in-out infinite; background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(14px); border-radius: 16px; padding: 14px 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.bwx-widget--requests { left: -30px; top: 60px; width: 172px; }
.bwx-widget__label { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.bwx-widget__dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px 2px rgba(74,222,128,.7); }
.bwx-widget__value { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; margin-top: 4px; }
.bwx-widget__value small { font-size: 12px; color: #94A3B8; font-weight: 500; }
.bwx-widget--efficiency { left: 420px; top: 20px; width: 170px; animation-delay: .3s; }
.bwx-widget__bars { display: flex; align-items: flex-end; gap: 6px; height: 44px; margin-bottom: 10px; }
.bwx-widget__bar { width: 10px; border-radius: 3px; transform-origin: bottom; animation: barGrow 2.4s ease-in-out infinite; background: linear-gradient(180deg,#38bdf8,#0EA5E9); }
.bwx-widget__bar--orange { background: linear-gradient(180deg,#F97316,#fb923c); }
.bwx-widget--accuracy { left: -20px; top: 430px; width: 150px; animation-delay: .5s; border-radius: 18px; text-align: center; }
.bwx-widget__ring { position: relative; width: 88px; height: 88px; margin: 0 auto; border-radius: 50%; background: conic-gradient(#0EA5E9 0deg, #38bdf8 353deg, rgba(255,255,255,0.1) 353deg 360deg); display: flex; align-items: center; justify-content: center; }
.bwx-widget__ring-inner { width: 68px; height: 68px; border-radius: 50%; background: var(--color-dark-navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; }

.bwx-chip-outer { position: absolute; }
.bwx-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px); color: #F8FAFC; font-size: 13px; font-weight: 600; padding: 10px 16px; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.3); display: inline-block; }
.bwx-chip--blue { background: rgba(14,165,233,0.16); border-color: rgba(14,165,233,0.4); color: #7dd3fc; }
.bwx-chip--orange { background: rgba(249,115,22,0.16); border-color: rgba(249,115,22,0.4); color: #fdba74; }

/* ==========================================================================
   SERVICES OVERVIEW (homepage 4-card grid)
   ========================================================================== */
.bwx-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bwx-service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px 26px; display: flex; flex-direction: column; gap: 18px; text-decoration: none; }
.bwx-service-card__icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg,#0EA5E9,#0369a1); display: flex; align-items: center; justify-content: center; flex: none; }
.bwx-service-card__icon--orange { background: linear-gradient(135deg,#F97316,#c2410c); }
.bwx-service-card__title { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: #F8FAFC; margin: 0; }
.bwx-service-card__desc { font-size: 14.5px; line-height: 1.65; color: #94A3B8; margin: 0; flex: 1; }
.bwx-service-card__link { color: var(--color-primary-blue); font-size: 14px; font-weight: 600; text-decoration: none; }

/* ==========================================================================
   AI SOLUTIONS SPOTLIGHT (homepage)
   ========================================================================== */
.bwx-ai-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.85fr; gap: 64px; align-items: center; }
.bwx-ai-capability-list { display: flex; flex-direction: column; gap: 26px; }
.bwx-ai-capability { display: flex; gap: 18px; align-items: flex-start; }
.bwx-ai-capability__icon { flex: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(14,165,233,0.14); border: 1px solid rgba(14,165,233,0.3); display: flex; align-items: center; justify-content: center; }
.bwx-ai-capability__icon--orange { background: rgba(249,115,22,0.14); border-color: rgba(249,115,22,0.3); }
.bwx-ai-capability__icon span { width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary-blue); }
.bwx-ai-capability__icon--orange span { background: var(--color-accent-orange); }
.bwx-ai-capability__title { font-weight: 700; color: #F8FAFC; font-size: 16px; margin-bottom: 4px; }
.bwx-ai-capability__desc { color: #94A3B8; font-size: 14.5px; line-height: 1.6; }

.bwx-workflow-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 36px 32px; backdrop-filter: blur(10px); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-workflow-card__label { font-size: 11px; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 24px; }
.bwx-workflow-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 16px 18px; margin-bottom: 8px; }
.bwx-workflow-step--active { background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.4); box-shadow: 0 0 30px rgba(14,165,233,0.15); padding: 18px; }
.bwx-workflow-step__title { font-weight: 700; color: #F8FAFC; font-size: 15px; }
.bwx-workflow-step--active .bwx-workflow-step__title { color: #7dd3fc; }
.bwx-workflow-step__sub { color: #7B8AA3; font-size: 12.5px; margin-top: 2px; }
.bwx-workflow-step--active .bwx-workflow-step__sub { color: #94A3B8; }
.bwx-workflow-connector { position: relative; height: 44px; margin-left: 20px; border-left: 1px dashed rgba(14,165,233,0.4); }
.bwx-workflow-connector--orange { border-left-color: rgba(249,115,22,0.4); }
.bwx-workflow-connector__dot { position: absolute; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary-blue); box-shadow: 0 0 10px 3px rgba(14,165,233,0.7); animation: flowDot 2.4s ease-in-out infinite; }
.bwx-workflow-connector--orange .bwx-workflow-connector__dot { background: var(--color-accent-orange); box-shadow: 0 0 10px 3px rgba(249,115,22,0.7); animation-delay: 1.2s; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.bwx-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bwx-why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 28px; }
.bwx-why-card__number { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-primary-blue); margin-bottom: 12px; }
.bwx-why-card__title { font-weight: 700; color: #F8FAFC; font-size: 16.5px; margin-bottom: 8px; }
.bwx-why-card__desc { color: #94A3B8; font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.bwx-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.bwx-process-line { position: absolute; top: 23px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, rgba(14,165,233,0.4), rgba(249,115,22,0.4)); z-index: 0; }
.bwx-process-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.bwx-process-step__circle { width: 46px; height: 46px; border-radius: 50%; background: var(--color-dark-navy); border: 2px solid var(--color-primary-blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--color-primary-blue); }
.bwx-process-step__circle--orange { border-color: var(--color-accent-orange); color: var(--color-accent-orange); }
.bwx-process-step__title { font-weight: 700; color: #F8FAFC; font-size: 15px; }
.bwx-process-step__desc { color: #94A3B8; font-size: 13.5px; line-height: 1.6; }

/* ==========================================================================
   TECH STACK
   ========================================================================== */
.bwx-tech-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.bwx-tech-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 12px 22px; font-family: var(--font-heading); font-weight: 600; color: #E2E8F0; font-size: 14.5px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.bwx-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bwx-testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; }
.bwx-testimonial-card__mark { font-family: var(--font-heading); font-size: 32px; color: var(--color-primary-blue); line-height: 1; }
.bwx-testimonial-card__quote { color: #CBD5E1; font-size: 15px; line-height: 1.7; margin: 0; flex: 1; }
.bwx-testimonial-card__footer { display: flex; align-items: center; gap: 12px; }
.bwx-testimonial-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#0EA5E9,#0369a1); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 14px; flex: none; }
.bwx-testimonial-card__avatar--orange { background: linear-gradient(135deg,#F97316,#c2410c); }
.bwx-testimonial-card__meta { color: #94A3B8; font-size: 13.5px; }
.bwx-testimonial-disclaimer { font-size: 15px; color: #64748B; margin: 0; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.bwx-cta-banner { max-width: 1280px; margin: 0 auto; position: relative; border-radius: 32px; overflow: hidden; background: linear-gradient(120deg,#0369a1,#0EA5E9 55%,#0F172A); padding: 80px 56px; text-align: center; }
.bwx-cta-banner__blob { position: absolute; border-radius: 50%; filter: blur(10px); }
.bwx-cta-banner__blob--1 { top: -140px; right: -100px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(249,115,22,0.45) 0%, rgba(249,115,22,0) 70%); }
.bwx-cta-banner__blob--2 { bottom: -160px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0) 70%); }
.bwx-cta-banner__content { position: relative; z-index: 1; }
.bwx-cta-banner__title { font-family: var(--font-heading); font-size: 44px; font-weight: 700; color: #fff; margin: 0 0 18px; letter-spacing: -0.01em; }
.bwx-cta-banner__desc { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 40px; }
.bwx-cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bwx-footer { position: relative; width: 100%; background: #0B1220; padding: 80px 48px 32px; }
.bwx-footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr; gap: 48px; margin-bottom: 64px; }
.bwx-footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.bwx-footer__badge { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg,#0EA5E9,#0369a1 55%,#F97316); display: flex; align-items: center; justify-content: center; flex: none; }
.bwx-footer__blurb { color: #7B8AA3; font-size: 14px; line-height: 1.7; max-width: 320px; margin: 0 0 24px; }
.bwx-footer__socials { display: flex; gap: 10px; }
.bwx-footer__social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: #CBD5E1; font-size: 13px; font-weight: 700; text-decoration: none; }
.bwx-footer__heading { color: #F8FAFC; font-weight: 700; font-size: 14px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .04em; }
.bwx-footer__links, .bwx-footer__menu, .bwx-footer__contact { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.bwx-footer__links a, .bwx-footer__menu a, .bwx-footer__contact a { color: #94A3B8; font-size: 14.5px; text-decoration: none; }
.bwx-footer__links a:hover, .bwx-footer__menu a:hover, .bwx-footer__contact a:hover { color: var(--color-accent-orange); }
.bwx-footer__address { color: #94A3B8; font-size: 14.5px; line-height: 1.7; }
.bwx-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); }
.bwx-footer__copyright { color: #64748B; font-size: 13px; }
.bwx-footer__bottom-links { display: flex; gap: 24px; }
.bwx-footer__bottom-links a { color: #64748B; font-size: 13px; text-decoration: none; }

/* ==========================================================================
   PAGE HEADER (Services / AI Solutions / Projects / Blog / About / Contact)
   ========================================================================== */
.bwx-page-header { position: relative; width: 100%; background: var(--color-dark-navy); overflow: hidden; padding: 172px 48px 96px; }
.bwx-page-header__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.bwx-page-header__title { font-size: 52px; margin-bottom: 20px; }
.bwx-page-header__paragraph { font-size: 17px; line-height: 1.75; color: #94A3B8; max-width: 620px; margin: 0 auto 36px; }
.bwx-page-header__disclaimer { font-size: 13.5px; color: #5B6B85; margin: 0 0 36px; }
.bwx-quicknav { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.bwx-quicknav__pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: #E2E8F0; font-size: 13.5px; font-weight: 600; text-decoration: none; padding: 9px 18px; border-radius: 999px; white-space: nowrap; }
.bwx-quicknav__pill:hover { border-color: rgba(14,165,233,0.5); color: #7dd3fc; }

/* ==========================================================================
   SERVICE DETAIL ROW (Services & AI Solutions pages)
   ========================================================================== */
.bwx-service-row { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; align-items: center; }
.bwx-service-row--rev { grid-template-columns: 0.8fr 1fr; }
.bwx-service-row--rev .bwx-service-row__content { order: 2; }
.bwx-service-row--rev .bwx-service-row__visual { order: 1; }
.bwx-service-row__icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,#0EA5E9,#0369a1); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.bwx-service-row__icon--orange { background: linear-gradient(135deg,#F97316,#c2410c); }
.bwx-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.bwx-tag-pill { background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.3); color: #7dd3fc; font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.bwx-tag-pill--orange { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.3); color: #fdba74; }
.bwx-video-pill { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.25); color: #fdba74; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; cursor: pointer; outline: none; transition: all .2s ease; }
.bwx-video-pill.is-active { background: linear-gradient(135deg,#F97316,#c2410c); border-color: rgba(249,115,22,0.6); color: #fff; font-weight: 700; box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.bwx-service-row__hint { color: #5B6B85; font-size: 12px; margin-top: 12px; }
.bwx-checklist { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.bwx-checklist__item { display: flex; gap: 12px; align-items: flex-start; color: #CBD5E1; font-size: 14.5px; }
.bwx-checklist__mark { color: var(--color-primary-blue); flex: none; }
.bwx-checklist__mark--orange { color: var(--color-accent-orange); }

/* ---- AI Solutions visual types ---- */
.bwx-terminal { background: #0B1220; border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-terminal__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.bwx-terminal__body { padding: 22px 22px 24px; font-family: var(--font-heading), monospace; font-size: 12.5px; line-height: 2.1; min-height: 210px; }
.bwx-terminal__line { animation: fadeInLog 8s ease-in-out infinite; }
.bwx-terminal__time { color: #5B6B85; }
.bwx-terminal__text { color: #CBD5E1; }
.bwx-terminal__tag { float: right; padding: 1px 8px; border-radius: 6px; font-size: 10.5px; }
.bwx-terminal__tag--event { color: #7dd3fc; background: rgba(14,165,233,0.14); }
.bwx-terminal__tag--thinking { color: #38bdf8; background: rgba(14,165,233,0.14); }
.bwx-terminal__tag--decided { color: #fdba74; background: rgba(249,115,22,0.14); }
.bwx-terminal__tag--done { color: #4ade80; background: rgba(74,222,128,0.14); }
.bwx-terminal__cursor { color: #5B6B85; }
.bwx-terminal__cursor span { display: inline-block; width: 6px; height: 13px; background: var(--color-accent-orange); vertical-align: middle; margin-left: 2px; animation: blinkCursor 1s step-end infinite; }

.bwx-mcp-flow { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 36px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-mcp-flow__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bwx-mcp-flow__box { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 16px 14px; text-align: center; }
.bwx-mcp-flow__box--active { background: rgba(14,165,233,0.14); border-color: rgba(14,165,233,0.4); box-shadow: 0 0 24px rgba(14,165,233,0.15); }
.bwx-mcp-flow__box-title { font-weight: 700; color: #F8FAFC; font-size: 14px; }
.bwx-mcp-flow__box--active .bwx-mcp-flow__box-title { color: #7dd3fc; }
.bwx-mcp-flow__box-sub { color: #7B8AA3; font-size: 11.5px; margin-top: 4px; }
.bwx-mcp-flow__box--active .bwx-mcp-flow__box-sub { color: #94A3B8; }

.bwx-chat-mock { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 24px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-chat-mock__head { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.bwx-chat-mock__avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,#0EA5E9,#0369a1); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.bwx-chat-mock__name { font-weight: 700; color: #F8FAFC; font-size: 14px; }
.bwx-chat-mock__status { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px 2px rgba(74,222,128,.7); }
.bwx-chat-mock__body { display: flex; flex-direction: column; gap: 12px; }
.bwx-chat-bubble { font-size: 13.5px; padding: 10px 14px; border-radius: 14px 14px 14px 2px; max-width: 80%; }
.bwx-chat-bubble--user { align-self: flex-end; background: linear-gradient(135deg,#0EA5E9,#0369a1); color: #fff; border-radius: 14px 14px 2px 14px; }
.bwx-chat-bubble--bot { align-self: flex-start; background: rgba(255,255,255,0.07); color: #E2E8F0; }
.bwx-chat-mock__typing { align-self: flex-start; display: flex; gap: 4px; background: rgba(255,255,255,0.07); padding: 12px 16px; border-radius: 14px 14px 14px 2px; }
.bwx-chat-mock__typing span { width: 6px; height: 6px; border-radius: 50%; background: #94A3B8; animation: nodePulse 1.2s ease-in-out infinite; }

.bwx-model-list { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 32px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-model-list__label { font-size: 11px; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.bwx-model-list__items { display: flex; flex-direction: column; gap: 10px; }
.bwx-model-list__item { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 16px; }
.bwx-model-list__item--active { background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.35); }
.bwx-model-list__item-name { color: #F8FAFC; font-size: 14px; font-weight: 600; }
.bwx-model-list__item--active .bwx-model-list__item-name { color: #7dd3fc; }
.bwx-model-list__item-status { color: #4ade80; font-size: 12px; font-weight: 600; }

/* ==========================================================================
   FILTER TABS (Projects / Blog)
   ========================================================================== */
.bwx-filter-tabs { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.bwx-filter-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); color: #CBD5E1; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 10px 18px; border-radius: 999px; white-space: nowrap; cursor: pointer; outline: none; transition: all .2s ease; }
.bwx-filter-pill.is-active { background: linear-gradient(135deg,#0EA5E9,#0369a1); border-color: rgba(14,165,233,0.6); color: #fff; font-weight: 700; box-shadow: 0 8px 20px rgba(14,165,233,0.35); }

/* ==========================================================================
   PROJECTS GRID
   ========================================================================== */
.bwx-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bwx-project-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.bwx-project-card__media { position: relative; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.bwx-project-card__placeholder { position: absolute; inset: 0; border-radius: 0; border: none; height: auto; }
.bwx-project-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bwx-project-card__play { position: relative; z-index: 1; }
.bwx-project-card__media-label { position: absolute; bottom: 12px; left: 14px; font-family: var(--font-heading), monospace; font-size: 10.5px; color: rgba(255,255,255,0.5); letter-spacing: .04em; }
.bwx-project-card__category { position: absolute; top: 12px; left: 14px; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; background: rgba(14,165,233,0.16); color: #7dd3fc; }
.bwx-project-card__category--orange { background: rgba(249,115,22,0.16); color: #fdba74; }
.bwx-project-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bwx-project-card__title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #F8FAFC; margin: 0; }
.bwx-project-card__desc { font-size: 14px; line-height: 1.6; color: #94A3B8; margin: 0; flex: 1; }
.bwx-project-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bwx-project-card__tag { background: rgba(255,255,255,0.06); color: #94A3B8; font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.bwx-project-card__link { color: var(--color-primary-blue); font-size: 13.5px; font-weight: 600; text-decoration: none; margin-top: 4px; }
.bwx-projects-footnote { text-align: center; margin-top: 48px; color: #5B6B85; font-size: 13.5px; }
.bwx-project-detail__content { color: #CBD5E1; font-size: 16px; line-height: 1.8; }
.bwx-project-detail__content p { margin: 0 0 20px; }

/* ==========================================================================
   BLOG — featured post + post cards
   ========================================================================== */
.bwx-featured-post { display: grid; grid-template-columns: 1.1fr 1fr; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-featured-post__media { position: relative; aspect-ratio: 16/11; background: repeating-linear-gradient(45deg, rgba(14,165,233,0.1), rgba(14,165,233,0.1) 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px); overflow: hidden; }
.bwx-featured-post__placeholder { position: absolute; inset: 0; border: none; height: auto; background: transparent; }
.bwx-featured-post__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bwx-featured-post__media-label { position: absolute; bottom: 16px; left: 18px; font-family: var(--font-heading), monospace; font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: .04em; }
.bwx-featured-post__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.bwx-featured-post__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bwx-featured-post__date { color: #5B6B85; font-size: 12.5px; }
.bwx-featured-post__title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #F8FAFC; margin: 0; line-height: 1.3; }
.bwx-featured-post__excerpt { color: #94A3B8; font-size: 15px; line-height: 1.7; margin: 0; }
.bwx-featured-post__link { color: var(--color-primary-blue); font-size: 14.5px; font-weight: 700; text-decoration: none; margin-top: 8px; }
.bwx-post-card__date { color: #5B6B85; font-size: 12px; }
@media (max-width: 980px) {
	.bwx-featured-post { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.bwx-glance-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 36px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-glance-list { display: flex; flex-direction: column; gap: 18px; }
.bwx-glance-row { display: flex; align-items: center; justify-content: space-between; }
.bwx-glance-row span { color: #CBD5E1; font-size: 14.5px; }
.bwx-glance-row strong { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 16px; }
.bwx-glance-divider { height: 1px; background: rgba(255,255,255,0.08); }

.bwx-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bwx-mission-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 36px; }
.bwx-mission-card__title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: #F8FAFC; margin: 0 0 12px; }
.bwx-mission-card__desc { font-size: 15px; line-height: 1.75; color: #94A3B8; margin: 0; }

.bwx-approach-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.bwx-approach-tile { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px 16px; text-align: center; }
.bwx-approach-tile__icon { width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 11px; background: linear-gradient(135deg,#0EA5E9,#0369a1); display: flex; align-items: center; justify-content: center; }
.bwx-approach-tile__icon--orange { background: linear-gradient(135deg,#F97316,#c2410c); }
.bwx-approach-tile__title { font-weight: 700; color: #F8FAFC; font-size: 14.5px; margin-bottom: 6px; }
.bwx-approach-tile__subtitle { color: #94A3B8; font-size: 12.5px; line-height: 1.5; }

.bwx-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.bwx-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bwx-team-member { text-align: center; }
.bwx-team-member__photo { width: 140px; height: 140px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 3px rgba(14,165,233,0.25); }
.bwx-team-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.bwx-team-member__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#E2E8F0,#CBD5E1); display: flex; align-items: center; justify-content: center; }
.bwx-team-member__role { font-weight: 700; color: #F8FAFC; font-size: 15px; margin-bottom: 4px; }
.bwx-team-member__dept { color: #94A3B8; font-size: 13px; }

@media (max-width: 980px) {
	.bwx-approach-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
	.bwx-approach-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.bwx-contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.bwx-contact-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 44px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); position: relative; overflow: hidden; }
.bwx-contact-form__heading { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: #F8FAFC; margin: 0 0 28px; }
.bwx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.bwx-form-field { margin-bottom: 18px; }
.bwx-form-field label { display: block; color: #CBD5E1; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.bwx-form-field input[type="text"], .bwx-form-field input[type="email"], .bwx-form-field textarea {
	width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16);
	border-radius: 10px; padding: 12px 14px; color: #F8FAFC; font-family: var(--font-body); font-size: 14.5px; outline: none; resize: vertical;
}
.bwx-form-field input::placeholder, .bwx-form-field textarea::placeholder { color: #64748B; }
.bwx-form-field input:focus, .bwx-form-field textarea:focus { border-color: rgba(14,165,233,0.5); }
.bwx-pill-radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.bwx-pill-radio { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); color: #CBD5E1; font-family: var(--font-body); font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 999px; white-space: nowrap; cursor: pointer; outline: none; transition: all .2s ease; }
.bwx-pill-radio.is-active { background: linear-gradient(135deg,#0EA5E9,#0369a1); border-color: rgba(14,165,233,0.6); color: #fff; box-shadow: 0 6px 16px rgba(14,165,233,0.35); }
.bwx-contact-form__submit { width: 100%; justify-content: center; padding: 15px; border-radius: 12px; font-size: 15.5px; box-shadow: 0 10px 26px rgba(14,165,233,0.35); margin-top: 6px; }
.bwx-contact-error { color: #fca5a5; font-size: 13px; margin-bottom: 14px; }

.bwx-contact-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; }
.bwx-contact-success__icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.4); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; animation: pulseGlow 2.5s ease-in-out infinite; }
.bwx-contact-success__title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: #F8FAFC; margin: 0 0 10px; }
.bwx-contact-success__message { color: #94A3B8; font-size: 15px; line-height: 1.7; margin: 0 0 28px; max-width: 380px; }

.bwx-contact-sidebar { display: flex; flex-direction: column; gap: 18px; }
.bwx-contact-card { position: relative; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 26px; overflow: hidden; }
.bwx-contact-card__glow { position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, rgba(14,165,233,0) 70%); filter: blur(4px); animation: pulseGlow 5s ease-in-out infinite; }
.bwx-contact-card__row { position: relative; display: flex; align-items: center; gap: 16px; }
.bwx-contact-card__row--start { align-items: flex-start; }
.bwx-contact-card__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg,#0EA5E9,#0369a1); display: flex; align-items: center; justify-content: center; }
.bwx-contact-card__icon--orange { background: linear-gradient(135deg,#F97316,#c2410c); }
.bwx-contact-card__label { color: #94A3B8; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.bwx-contact-card__value { color: #F8FAFC; font-size: 16px; font-weight: 700; text-decoration: none; }
.bwx-contact-card__address { color: #F8FAFC; font-size: 14.5px; line-height: 1.6; }
.bwx-contact-cta-card { background: linear-gradient(135deg,#0369a1,#0EA5E9); border-radius: 20px; padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bwx-contact-cta-card__title { color: #fff; font-weight: 700; font-size: 15.5px; margin-bottom: 4px; }
.bwx-contact-cta-card__subtitle { color: rgba(255,255,255,0.85); font-size: 13px; }
.bwx-contact-cta-card__btn { flex: none; background: #fff; color: #0F172A; font-size: 14px; font-weight: 700; text-decoration: none; padding: 11px 20px; border-radius: 10px; white-space: nowrap; }

@media (max-width: 980px) {
	.bwx-contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
	.bwx-form-row { grid-template-columns: 1fr !important; }
	.bwx-contact-form-card { padding: 28px !important; }
}

.bwx-visual-card { position: relative; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 32px; backdrop-filter: blur(10px); box-shadow: 0 30px 70px rgba(0,0,0,0.4); overflow: hidden; }
.bwx-visual-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.bwx-visual-card__label { font-size: 11px; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.bwx-visual-card__live { display: flex; align-items: center; gap: 6px; color: #4ade80; font-size: 11.5px; font-weight: 600; }
.bwx-neural-stage { position: relative; width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; }
.bwx-neural-glow { position: absolute; top: 50%; left: 50%; width: 190px; height: 190px; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,0.35) 0%, rgba(14,165,233,0) 70%); filter: blur(6px); animation: pulseGlow 4s ease-in-out infinite; }
.bwx-neural-radar { position: absolute; top: 50%; left: 50%; width: 170px; height: 170px; transform: translate(-50%,-50%); border-radius: 50%; background: conic-gradient(from 0deg, rgba(14,165,233,0) 0deg, rgba(14,165,233,0.4) 25deg, rgba(14,165,233,0) 70deg); animation: spin 7s linear infinite; }
.bwx-neural-ring { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; transform: translate(-50%,-50%); border-radius: 50%; border: 1px dashed rgba(249,115,22,0.3); animation: spinReverse 30s linear infinite; }
.bwx-visual-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.bwx-visual-card__stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 10px; text-align: center; }
.bwx-visual-card__stat-num { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; }
.bwx-visual-card__stat-label { font-size: 10.5px; color: #94A3B8; margin-top: 2px; }

.bwx-code-window { background: #0B1220; border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-code-window__titlebar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.bwx-code-window__dot { width: 10px; height: 10px; border-radius: 50%; }
.bwx-code-window__tabs { display: flex; align-items: center; gap: 2px; padding: 0 14px; background: rgba(255,255,255,0.015); border-bottom: 1px solid rgba(255,255,255,0.08); }
.bwx-code-window__tab { padding: 11px 16px; font-family: var(--font-heading), monospace; font-size: 12.5px; color: #5B6B85; }
.bwx-code-window__tab--active { color: #E2E8F0; background: rgba(255,255,255,0.05); border-top: 2px solid var(--color-primary-blue); border-radius: 6px 6px 0 0; }
.bwx-code-window__body { display: flex; padding: 24px 0 24px 20px; gap: 18px; font-family: var(--font-heading), monospace; font-size: 13px; line-height: 1.9; overflow-x: auto; }
.bwx-code-window__lines { color: #3A4560; text-align: right; user-select: none; }
.bwx-code-window__code { white-space: pre; }
.bwx-code-window__cursor { display: inline-block; width: 7px; height: 15px; background: var(--color-accent-orange); vertical-align: middle; margin-left: 4px; animation: blinkCursor 1s step-end infinite; }
.bwx-code-window__status { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.bwx-code-window__status-ok { display: flex; align-items: center; gap: 8px; color: #4ade80; font-size: 12.5px; font-weight: 600; }
.bwx-code-window__status-info { color: #5B6B85; font-size: 12.5px; font-weight: 600; }

.bwx-video-placeholder { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-video-placeholder__play { width: 64px; height: 64px; border-radius: 50%; background: rgba(15,23,42,0.7); border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.bwx-video-placeholder__caption { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-heading), monospace; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: .04em; }
.bwx-video-embed { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; box-shadow: 0 30px 70px rgba(0,0,0,0.4); background: #000; }
.bwx-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.bwx-bar-chart-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 32px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.bwx-bar-chart { display: flex; align-items: flex-end; gap: 10px; height: 90px; margin: 20px 0; }
.bwx-bar-chart__bar { flex: 1; background: linear-gradient(180deg,#38bdf8,#0EA5E9); border-radius: 5px; }
.bwx-bar-chart__bar--orange { background: linear-gradient(180deg,#F97316,#fb923c); }
.bwx-bar-chart__footer { display: flex; justify-content: space-between; align-items: center; }
.bwx-bar-chart__footer-label { color: #94A3B8; font-size: 13px; }
.bwx-bar-chart__footer-value { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: #4ade80; }
