﻿/* ==========================================================================
   BRAND PALETTE & DESIGN TOKENS
   Derived from the Xunaris Core Logo Blueprint
   ========================================================================== */
:root {
  /* Surface & Canvas Background System */
  --c-bg:           #040C42;   /* Main canvas depth - deep navy black */
  --c-bg-2:         #0A1158;   /* Structural card/section alternative container */
  --c-bg-3:         #1A2770;   /* Light structural panels near core Deep Navy */
  --c-bg-dark:      #020810;   /* Deepest terminal shade reserved for system footers */
  
  /* Semi-Transparent UI Borders & Micro-Dividers */
  --c-border:       rgba(0, 180, 216, 0.08);
  --c-border-hi:    rgba(0, 180, 216, 0.30);

  /* Functional Branding System Tokens */
  --c-primary:      #1A5F96;   /* Primary Tech Blue - structural theme base */
  --c-navy:         #0A2540;   /* Deep Navy Shadow - depth overlays and text pairings */
  --c-cyan:         #00B4D8;   /* Electric Cyan Accent - main brand action color */
  --c-orange:       #FFFFFF;   /* Clean Secondary Surface Neutral */
  --c-gold:         #EAD0B3;   /* Champagne Gold - secondary highlight tier */
  --c-bronze:       #8C5A3C;   /* Deep Earth Bronze - specialized border metrics */

  /* Text Contrast & Readability Layer */
  --c-white:        #FFFFFF;
  --c-text:         #E8EAF0;
  --c-muted:        rgba(248, 248, 249, 0.85);
  --c-dim:          rgba(255, 255, 255, 0.45);

  /* Standardized Typography Assets */
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Poppins', sans-serif;

  /* Layout Smoothness Tokens */
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  /* Global Interface Metrics */
  --container:      1200px;
  --nav-h:          72px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --t:              0.25s;
}

/* ==========================================================================
   GLOBAL UTILITY CORE & ARCHITECTURAL RESET
   ========================================================================== */
*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
  font-size: 17px; 
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { 
  max-width: 100%; 
  display: block; 
  object-fit: cover; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

ul { 
  list-style: none; 
}

button { 
  cursor: pointer; 
  font-family: var(--font-body); 
  border: none; 
  background: none; 
}

/* ==========================================================================
   STRUCTURAL PAGE CONTAINERS
   ========================================================================== */
.container { 
  max-width: var(--container); 
  margin: 0 auto; 
  padding: 0 48px; 
}

@media (max-width: 768px) { 
  .container { 
    padding: 0 20px; 
  } 
}

/* ==========================================================================
   CORE SYSTEM TYPOGRAPHY ELEMENTS
   ========================================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px; 
  height: 2px;
  background: var(--c-cyan);
  border-radius: 2px;
}

.section-tag.center { 
  display: flex; 
  justify-content: center; 
}

.section-tag.center::before { 
  display: none; 
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--c-white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--c-cyan);
}

.section-title.center { 
  text-align: center; 
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ==========================================================================
   INTERACTIVE COMPONENT SYSTEM: INTERACTION BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: all var(--t) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg { padding: 10px 36px; font-size: 15px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* Action Level 1: Primary Electric Cyan */
.btn-primary {
  background: var(--c-cyan);
  color: #000000;
  border-color: var(--c-cyan);
}

.btn-primary:hover {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  filter: brightness(1.14);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 180, 216, 0.5);
}

/* Action Level 2: Secondary Light Accent Base */
.btn-orange {
  background: var(--c-orange);
  color: var(--c-navy);      
  border-color: var(--c-orange);
}

.btn-orange:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-navy);      
  transform: translateY(-2px);
}

/* Action Level 3: Structural Outline Variations */
.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.btn-ghost-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
  font-size: 13px;
  padding: 10px 20px;
}

.btn-outline-light:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

/* Action Level 4: Contextual Navigation Elements */
.btn-nav {
  background: var(--c-cyan);
  color: #000000;
  border-color: var(--c-cyan);
  font-size: 13px;
  padding: 8px 22px;
}

.btn-nav:hover {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  filter: brightness(1.14);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.45);
}

/* ==========================================================================
   APP HEADER MECHANICS
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t) var(--ease), border-color var(--t);
}

.navbar.scrolled {
  background: rgba(4, 13, 66, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity .25s ease, filter .25s ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: .85;
  filter: drop-shadow(0 2px 10px rgba(0, 180, 216, 0.4));
}

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 36px; 
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  transition: color var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; 
  left: 0;
  width: 0%; 
  height: 1.5px;
  background: var(--c-cyan);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--c-cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav links */
.nav-links { display:flex; align-items:center; gap:36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0%; height:1.5px;
  background: var(--c-cyan);
  transition: width .3s var(--ease);
  border-radius:2px;
}
.nav-links a:hover,
.nav-links a.active { color:var(--c-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }

/* Hamburger */
.nav-hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  padding:10px;           /* bigger tap target — 44×44px minimum on mobile */
  cursor:pointer;
  touch-action:manipulation; /* remove 300ms tap delay on iOS/Android */
  -webkit-tap-highlight-color:transparent;
}
.nav-hamburger span {
  display:block;
  width:22px; height:2px;
  background:var(--c-white);
  border-radius:2px;
  transition: var(--t) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── Dropdown nav ── */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: flex; align-items: center; gap: 5px; }
.nav-chevron {
  width: 12px; height: 12px;
  transition: transform .25s var(--ease);
  opacity: .6;
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron,
.nav-item.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Invisible hover bridge to prevent dropdown disappearing on mouse move */
.nav-item:hover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  z-index: 150;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--c-bg-2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-md);
  padding: 10px 0;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--c-bg-2);
  border-left: 1px solid var(--c-border-hi);
  border-top: 1px solid var(--c-border-hi);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text) !important;
  transition: color .2s var(--ease), background .2s var(--ease);
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  color: var(--c-cyan) !important;
  background: rgba(0, 180, 216, 0.1);
}
.nav-dropdown .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 6px 0;
}

/* ── Mega Menu ── */
.nav-mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(6,20,40,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--c-cyan);
  border-radius: var(--radius-md);
  padding: 20px 20px 16px;
  width: 620px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 200;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.nav-item:hover .nav-mega,
.nav-item.open .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-col { display: flex; flex-direction: column; gap: 2px; }
.nav-mega-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--c-cyan);
  padding: 4px 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 4px;
}
.nav-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.7) !important;
  transition: background .15s, color .15s;
}
.nav-mega-item:hover {
  background: rgba(0,210,255,.06);
  color: var(--c-white) !important;
}
.nav-mega-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,210,255,.07);
  border: 1px solid rgba(0,210,255,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-cyan);
}
.nav-mega-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-mega-text span {
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.3;
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}
.nav-mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 12px 4px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-mega-footer a {
  font-size: 12.5px !important;
  font-weight: 600;
  color: var(--c-cyan) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
  background: none !important;
  white-space: nowrap;
}
.nav-mega-footer a:hover { color: var(--c-white) !important; background: none !important; }

/* ── Mobile nav backdrop ── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── Mobile nav drawer ── */
.nav-mobile {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(540px, 100vw);
    background: #04101f;
    flex-direction: column;
    z-index: 1000;
    transform: translateX(102%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    border-left: 1px solid rgba(0, 210, 255, .1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
}
.nav-mobile.open { transform: translateX(0); }

/* Drawer header */
.mob-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  gap: 12px;
}

.mob-nav-head a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mob-nav-head img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.mob-nav-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .15s;
  flex-shrink: 0;
}
.mob-nav-close:hover { background: rgba(255,255,255,.12); }

/* Scrollable link area */
.mob-nav-links {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: color .2s ease;
}
.mob-nav-item:hover, .mob-nav-item.active { color: var(--c-cyan); }
.mob-chev { transition: transform .25s ease, opacity .2s ease; opacity: .4; flex-shrink: 0; color: rgba(255,255,255,.5); }
.mob-nav-item:hover .mob-chev, .mob-nav-item.active .mob-chev { opacity: 1; color: var(--c-cyan); }
.mob-nav-item.mob-open .mob-chev { transform: rotate(180deg); opacity: 1; color: var(--c-cyan); }

/* Accordion sub-menu */
.mob-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
  background: rgba(0,0,0,.25);
}
.mob-nav-sub.mob-open { max-height: 600px; }
.mob-nav-sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 32px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.03);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s ease, background .2s ease;
}
.mob-nav-sub a:hover, .mob-nav-sub a:active { color: var(--c-cyan); background: rgba(0,210,255,.06); }
.mob-sub-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(0,210,255,.35); flex-shrink: 0; }
.mob-sub-all { color: rgba(0,210,255,.75) !important; font-weight: 600 !important; }

/* Bottom CTA */
.mob-nav-bottom {
  padding: 28px 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.mob-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: var(--c-cyan);
  color: #000 !important;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 24px;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s ease;
}
.mob-nav-cta:active { opacity: 0.85; }
.mob-nav-contacts { display: flex; flex-direction: column; gap: 14px; }
.mob-nav-contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.5) !important;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.mob-nav-contacts a:hover { color: rgba(255,255,255,.7) !important; }

@media (max-width:900px) {
  .nav-links, .nav-right { display:none; }
  .nav-hamburger { display:flex; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  /* filter: brightness(0.6) saturate(0.8); */
}

.hero-bg-gradient {
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(26,95,150,.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(255,255,255,.12) 0%, transparent 55%);
  pointer-events:none;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 8px var(--c-cyan);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.7); }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--c-white);
  margin-bottom: 24px;
}

.word-rotate-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.2em;
  vertical-align: bottom;
}
#wordRotate {
  display: inline-block;
  color: var(--c-cyan);
  transition: transform .4s var(--ease), opacity .4s;
}
#wordRotate.exit {
  transform: translateY(-100%);
  opacity: 0;
}
#wordRotate.enter {
  transform: translateY(100%);
  opacity: 0;
}

.hero-body {
  font-size: 17px;
  color: var(--c-muted);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right */
.hero-visual { position:relative; }

/* ── Corporate Profile Panel ── */
.hero-enterprise-panel {
  position: relative;
  background: rgba(5,14,30,.95);
  border: 1px solid rgba(0,210,255,.14);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hep-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan) 0%, rgba(0,130,255,.5) 60%, transparent 100%);
  flex-shrink: 0;
}
.hep-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hep-co-info { display: flex; flex-direction: column; gap: 4px; }
.hep-co-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .02em;
}
.hep-co-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: rgba(255,255,255,.38);
}
.hep-since {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(0,210,255,.7);
  border: 1px solid rgba(0,210,255,.22);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  align-self: flex-start;
}
.hep-hero-stat {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hep-hero-num {
  display: block;
  font-family: var(--font-head);
  font-size: 68px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -.04em;
}
.hep-hero-num sup { font-size: 34px; color: var(--c-cyan); vertical-align: .2em; }
.hep-hero-lbl {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: .02em;
}
.hep-stat-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hep-stat {
  flex: 1;
  padding: 16px 0;
  text-align: center;
}
.hep-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
}
.hep-stat span {
  font-size: 10px;
  color: rgba(255,255,255,.32);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: block;
  margin-top: 3px;
}
.hep-stat-sep { width: 1px; background: rgba(255,255,255,.05); margin: 8px 0; }
.hep-services {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  flex: 1;
}
.hep-services-hd {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,210,255,.65);
  margin-bottom: 10px;
}
.hep-svc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.58);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-weight: 500;
}
.hep-svc-item:last-child { border-bottom: none; }
.hep-svc-item svg { color: var(--c-cyan); opacity: .7; flex-shrink: 0; }
.hep-partners-row { padding: 14px 28px; }
.hep-partners-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  display: block;
  margin-bottom: 7px;
}
.hep-partners-list {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.32);
  letter-spacing: .04em;
}

/* ── Hero image panel (Accenture-style) ── */
.hero-img-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 540px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.hero-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .8s ease;
}
.hero-img-panel:hover .hero-panel-img { transform: scale(1.03); }
.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,13,26,.85) 0%,
    rgba(4,13,26,.3) 45%,
    transparent 70%
  );
  pointer-events: none;
}
/* Stat bar at the bottom of the image */
.hero-panel-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  z-index: 2;
}
.hero-panel-stat {
  flex: 1;
  text-align: center;
}
.hero-panel-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-panel-stat span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.hero-panel-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

@media (max-width:900px) {
  .hero-img-panel { height: 320px; border-radius: 10px; }
  .hero-panel-stat strong { font-size: 22px; }
  .hero-panel-stats { padding: 16px 20px; }
}

/* old img (kept for backward compat, hidden) */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  transition: transform .6s var(--ease);
}

/* Floating badges */
.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5,5,20,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  white-space: nowrap;
}
.hero-badge-1 {
  bottom: -20px;
  left: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hero-badge-2 {
  top: 30px;
  right: -24px;
}
.badge-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
}
.badge-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: .04em;
}
.badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(0,210,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cyan);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  z-index: 2;
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--c-cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { width:40px; opacity:1; }
  50% { width:60px; opacity:.5; }
}

@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; gap:32px; padding:48px 0 60px; }
  .hero-img { height:280px; }
  .hero-right { order:-1; }
  .hero-badge-float { display:none; }
  .hero-scroll { display:none; }
  .hero-heading { font-size:clamp(36px,9vw,52px); }
  .hero-enterprise-panel { border-radius:10px; }
  .hep-hero-num { font-size:48px; }
  .hep-hero-num sup { font-size:24px; }
  .hep-header { padding:16px 20px 12px; }
  .hep-hero-stat { padding:16px 20px; }
  .hep-services { padding:14px 20px; }
  .hep-partners-row { padding:12px 20px; }
  .hep-stat { padding:12px 0; }
  .hep-stat strong { font-size:18px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OUR PROMISE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.promise-section {
  padding: 120px 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
}

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left */
.promise-intro {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 420px;
}

.promise-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pv-chip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,210,255,.25);
  color: rgba(0,210,255,.7);
  background: rgba(0,210,255,.06);
}
.pv-chip.highlight {
  border-color: rgba(255,255,255,.4);
  color: var(--c-orange);
  background: rgba(255,255,255,.08);
}

/* Right: promise list */
.promise-right {
  display: flex;
  flex-direction: column;
}

.promise-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t);
}
.promise-item:first-child { padding-top: 0; }
.promise-item:last-child { border-bottom: none; padding-bottom: 0; }

.promise-item:hover .promise-num { color: var(--c-cyan); }

.promise-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
  width: 28px;
  line-height: 1.6;
  transition: color var(--t);
}

.promise-body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 6px;
  line-height: 1.4;
}
.promise-body p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .promise-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHAT WE DO â€” Numbered Tabs
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.what-we-do {
  padding: 120px 0;
  background: var(--c-bg);
}
.what-we-do .section-title { max-width:520px; margin-bottom:56px; }

.wwd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Tabs */
.wwd-tabs { display:flex; flex-direction:column; gap:0; }

.wwd-tab {
  display: flex;
  gap: 24px;
  padding: 28px 24px;
  border-left: 2px solid var(--c-border);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
}
.wwd-tab::before {
  content:'';
  position:absolute;
  left:-2px; top:0; bottom:0;
  width:2px;
  background: var(--c-cyan);
  transform: scaleY(0);
  transition: transform .3s var(--ease);
  transform-origin: top;
}
.wwd-tab.active::before { transform:scaleY(1); }
.wwd-tab.active { border-left-color: transparent; }

.wwd-tab:hover { background: rgba(0,210,255,.03); }

.wwd-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  flex-shrink: 0;
  line-height: 1.4;
  transition: color var(--t);
}
.wwd-tab.active .wwd-num { color: var(--c-cyan); }

.wwd-tab-text strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  transition: color var(--t);
}
.wwd-tab.active .wwd-tab-text strong { color: var(--c-white); }
.wwd-tab-text p { font-size:15px; color:var(--c-muted); line-height:1.7; }

/* Panels */
.wwd-panels { position:relative; border-radius:var(--radius-xl); overflow:hidden; }
.wwd-panel { display:none; }
.wwd-panel.active { display:block; }

.wwd-panel img {
  width:100%;
  height:520px;
  border-radius:var(--radius-xl);
  border:1px solid var(--c-border);
  transition: transform .6s var(--ease);
}
.wwd-panel:hover img { transform:scale(1.03); }

.wwd-panel-overlay {
  position:absolute;
  bottom:24px; left:24px;
}

@media (max-width:860px) {
  .wwd-layout { grid-template-columns:1fr; gap:40px; }
  .wwd-panel img { height:300px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  padding: 120px 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
}

/* Row-style services list */
.services-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-3);
  cursor: pointer;
  transition: background var(--t) var(--ease), padding-left var(--t) var(--ease);
  text-decoration: none;
}
.svc-row:last-child { border-bottom: none; }

.svc-row:hover {
  background: rgba(0,210,255,.05);
  padding-left: 44px;
}
.svc-row:hover .svc-row-num { color: var(--c-cyan); }
.svc-row:hover .svc-row-icon { color: var(--c-cyan); }
.svc-row:hover .svc-row-arrow { transform: translateX(6px); color: var(--c-cyan); }
.svc-row:hover .svc-row-name { color: var(--c-cyan); }

.svc-row-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  width: 28px;
  transition: color var(--t);
}

.svc-row-icon {
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t);
}

.svc-row-content {
  flex: 1;
  min-width: 0;
}
.svc-row-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 5px;
  letter-spacing: .02em;
  transition: color var(--t);
}
.svc-row-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
}

.svc-row-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  padding: 5px 14px;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  white-space: nowrap;
}

.svc-row-arrow {
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  transition: transform var(--t) var(--ease), color var(--t);
}

@media (max-width: 768px) {
  .svc-row { flex-wrap: wrap; gap: 16px; padding: 24px 20px; }
  .svc-row:hover { padding-left: 20px; }
  .svc-row-tag, .svc-row-arrow { display: none; }
  .svc-row-num { display: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS / PROOF
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.proof-band {
  padding: 80px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-item {
  flex: 1;
  text-align: center;
  padding: 16px 40px;
}
.proof-num {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-lbl {
  font-size: 15px;
  color: var(--c-muted);
  font-weight: 500;
}
.proof-divider {
  width:1px;
  height:60px;
  background: var(--c-border);
  flex-shrink:0;
}

@media (max-width:768px) {
  .proof-grid { flex-wrap:wrap; }
  .proof-item { flex:0 0 50%; }
  .proof-divider { display:none; }
}


.cases {
  padding: 120px 0;
  background: rgba(0,0,0,.5);
  border-top: 1px solid var(--c-border);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.case-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg-3);
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,210,255,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.case-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.case-img img {
  width:100%; height:100%;
  transition: transform .6s var(--ease);
}
.case-card:hover .case-img img { transform:scale(1.06); }
.case-tag {
  position: absolute;
  top:14px; left:14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184,142,111,.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.case-body { padding: 28px; }
.case-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.case-desc {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.case-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-results span {
  font-size: 14px;
  color: rgba(0,210,255,.85);
  font-weight: 500;
}

@media (max-width:900px) { .cases-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .cases-grid { grid-template-columns:1fr; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOUNDER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.founder {
  padding: 120px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.founder-img-wrap img {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
}

/* Actual CEO photo */
.founder-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  height: 560px;
  background: var(--c-bg-2);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s var(--ease);
}
.founder-photo-wrap:hover .founder-photo { transform: scale(1.03); }
.founder-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-cyan);
  color: #000;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,210,255,.4);
}
.founder-exp-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.founder-exp-badge span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  opacity: .8;
}

.founder-content .section-tag { margin-top: 0; }
.founder-quote {
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  border-left: 3px solid var(--c-cyan);
  padding-left: 24px;
  margin: 0 0 28px;
}
.founder-body {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.founder-sig {
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}
.founder-sig strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.founder-sig span {
  font-size: 12px;
  color: var(--c-cyan);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width:900px) {
  .founder-grid { grid-template-columns:1fr; gap:48px; }
  .founder-img-wrap img { height:360px; }
  .founder-photo-wrap { height:380px; }
  .founder-exp-badge { right:0; bottom:-16px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INDUSTRIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.industries {
  padding: 120px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.industries .section-title { margin-bottom: 64px; }

/* â”€â”€ Showcase: list + image panel â”€â”€ */
.ind-showcase {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 520px;
}

/* â”€â”€ Left: interactive list â”€â”€ */
.ind-list {
  display: flex;
  flex-direction: column;
  background:#020810;
}

.ind-item {
  display: grid;
  grid-template-columns: 48px 1fr auto 28px;
  align-items: center;
  gap: 0 20px;
  padding: 26px 32px;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: pointer;
}
.ind-item:last-child { border-bottom: none; }

/* Cyan left-bar on active/hover */
.ind-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ind-item.active::before,
.ind-item:hover::before { transform: scaleY(1); }

.ind-item.active,
.ind-item:hover {
  background: rgba(0,210,255,0.04);
}

.ind-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,210,255,0.35);
  letter-spacing: .08em;
  transition: color 0.3s ease;
}
.ind-item.active .ind-num,
.ind-item:hover .ind-num { color: var(--c-cyan); }

.ind-name {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
  transition: color 0.3s ease;
}
.ind-item.active .ind-name,
.ind-item:hover .ind-name { color: var(--c-white); }

.ind-desc {
  grid-column: 2;
  font-size: 12.5px;
  color: var(--c-muted);
  margin-top: 3px;
  line-height: 1.5;
  display: block;
  grid-row: 2;
  transition: color 0.3s ease;
}
.ind-item.active .ind-desc,
.ind-item:hover .ind-desc { color: rgba(255,255,255,0.45); }

/* Re-layout item as 2-row grid */
.ind-item {
  grid-template-rows: auto auto;
  grid-template-columns: 48px 1fr 28px;
}
.ind-num  { grid-row: 1 / 3; align-self: center; }
.ind-name { grid-column: 2; grid-row: 1; }
.ind-desc { grid-column: 2; grid-row: 2; }
.ind-arrow {
  grid-column: 3; grid-row: 1 / 3; align-self: center;
  color: var(--c-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex; align-items: center;
}
.ind-item.active .ind-arrow,
.ind-item:hover .ind-arrow {
  transform: translateX(5px);
  color: var(--c-cyan);
}

/* â”€â”€ Right: image panel â”€â”€ */
.ind-visual {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-2);
}

.ind-bg-wrap {
  position: absolute;
  inset: 0;
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.55s ease;
}
.ind-bg-a { opacity: 1; z-index: 1; }
.ind-bg-b { opacity: 0; z-index: 2; }

/* Dark gradient overlay on image */
.ind-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Label overlay at bottom */
.ind-visual-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 4;
}
.ind-visual-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,210,255,0.7);
  margin-bottom: 8px;
}
.ind-visual-label {
  font-family: var(--font-head);
  font-size: clamp(20px,2.2vw,28px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  transition: opacity 0.3s ease;
}
.ind-visual-line {
  width: 40px;
  height: 2px;
  background: var(--c-cyan);
  margin-top: 14px;
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.ind-visual:hover .ind-visual-line { width: 70px; }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 900px) {
  .ind-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ind-visual {
    height: 280px;
    order: -1;
  }
}
@media (max-width: 560px) {
  .ind-item { padding: 20px 20px; }
  .ind-visual { height: 220px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BAND
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-band {
  padding: 120px 0;
  background: var(--c-bg-3);
  border-top: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:'';
  position:absolute;
  top:-100px; left:50%;
  transform:translateX(-50%);
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(26,95,150,.25) 0%, transparent 65%);
  pointer-events:none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index:1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.cta-heading em {
  font-style: normal;
  color: var(--c-cyan);
}

.cta-sub {
  font-size: 17px;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--c-muted);
  transition: color var(--t);
}
.cta-contact:hover { color: var(--c-white); }
.cta-contact svg { color: var(--c-cyan); flex-shrink:0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--c-bg-dark);
  padding: 80px 0 32px;
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  opacity: .9;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 270px;
  margin-bottom: 24px;
}
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:36px; height:36px;
  border-radius:var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border);
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.4);
  transition: var(--t) var(--ease);
}
.footer-social a:hover {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  color: #000;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--c-cyan); }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.2); }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { font-size:12px; color:rgba(255,255,255,.2); transition:color var(--t); }
.footer-bottom-links a:hover { color:var(--c-cyan); }

@media (max-width:860px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px) { .footer-grid { grid-template-columns:1fr; gap:32px; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GSAP REVEAL SETUP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gs-reveal {
  opacity: 0;
  transform: translateY(24px);
}

  
.mt-40 { margin-top:40px; }
.text-center { text-align:center; }

/* CAREERS SUBMENU - FIX HOVER ISSUE */
.careers-subnav {
  background: rgba(4,12,66,0.95);
  border-bottom: 1px solid rgba(0,180,216,.08);
  padding: 16px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.careers-subnav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.careers-subnav-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.careers-subnav-group {
  position: relative;
  display: inline-block;
}
.careers-subnav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: all var(--t);
  cursor: pointer;
}
.careers-subnav-btn:hover {
  color: var(--c-white);
  background: rgba(255,255,255,.05);
}
.careers-subnav-btn svg {
  width: 11px;
  height: 11px;
  transition: transform var(--t);
}
.careers-subnav-group:hover .careers-subnav-btn svg {
  transform: rotate(180deg);
}
.careers-subnav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(4,12,66,0.98);
  border: 1px solid rgba(0,180,216,.15);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--t);
  z-index: 100;
}
.careers-subnav-group:hover .careers-subnav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.careers-subnav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius-md);
  transition: all var(--t);
  text-decoration: none;
}
.careers-subnav-dropdown a:hover {
  color: var(--c-cyan);
  background: rgba(0,180,216,.08);
}
@media (max-width: 768px) {
  .careers-subnav-inner { padding: 0 20px; gap: 12px; }
  .careers-subnav-dropdown { min-width: 180px; }
}

