:root {
  /* Silicon Pattern theme: navy + orange, light corporate */
  --nv-primary: #1f6fb8;      /* bright engineering blue */
  --nv-primary-2: #0a2a5e;    /* deep navy */
  --nv-navy: #081f45;         /* darkest navy (hero/footer) */
  --nv-navy-2: #0d2f63;
  --nv-accent: #f26a21;       /* signature orange */
  --nv-accent-2: #ff8a3d;
  --nv-warn: #f59e0b;
  --nv-ink: #0a1f44;          /* headings */
  --nv-ink-2: #0d2f63;
  --nv-text: #16273d;
  --nv-muted: #5d7085;
  --nv-border: #d7e2ee;
  --nv-bg: #eef3f9;           /* light page background */
  --nv-surface: #ffffff;
  --nv-radius-sm: 6px;
  --nv-radius: 10px;
  --nv-radius-lg: 14px;
  --nv-shadow-sm: 0 2px 10px rgba(10, 31, 68, 0.08);
  --nv-shadow: 0 20px 60px rgba(10, 31, 68, 0.12);
  --nv-shadow-lg: 0 34px 90px rgba(10, 31, 68, 0.18);
  --nv-grad: linear-gradient(135deg, #0a2a5e 0%, #1f6fb8 60%, #f26a21 100%);
  --nv-grad-blue: linear-gradient(135deg, #0a2a5e 0%, #1f6fb8 100%);
  --nv-grad-orange: linear-gradient(135deg, #ff8a3d 0%, #f26a21 100%);
  --nv-grad-soft: linear-gradient(135deg, rgba(31, 111, 184, 0.14), rgba(10, 42, 94, 0.10), rgba(242, 106, 33, 0.08));
  --nv-glow: 0 0 42px rgba(31, 111, 184, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--nv-text);
  background: var(--nv-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
}

.nv-text-muted,
.vt-muted {
  color: var(--nv-muted) !important;
}

.nv-shadow {
  box-shadow: var(--nv-shadow);
}

.nv-radius,
.nv-radius-lg {
  border-radius: var(--nv-radius);
}

.nv-border {
  border: 1px solid var(--nv-border);
}

.nv-glass {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
}

.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
}

.nv-btn:hover {
  transform: translateY(-1px);
}

.nv-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a3d, #f26a21 70%);
  box-shadow: 0 14px 30px rgba(242, 106, 33, 0.32);
}

.nv-btn-navy {
  color: #ffffff;
  background: linear-gradient(135deg, var(--nv-primary-2), var(--nv-primary));
  box-shadow: 0 14px 30px rgba(10, 42, 94, 0.28);
}

.nv-btn-soft {
  color: var(--nv-text);
  background: #ffffff;
  border-color: var(--nv-border);
}

.nv-btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.nv-btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.nv-chip,
.vt-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 111, 184, 0.18);
  background: rgba(31, 111, 184, 0.08);
  color: #153342;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.nv-badge,
.vt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  background: rgba(255, 255, 255, 0.86);
  color: #263544;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.nv-badge-dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(16, 19, 23, 0.56);
}

.nv-section,
.vt-section {
  padding: 78px 0;
}

.nv-section-surface {
  background: #ffffff;
  border-top: 1px solid var(--nv-border);
}

.nv-section-title,
.vt-section-title {
  margin: 0;
  color: var(--nv-ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.nv-section-kicker,
.vt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b5f7d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nv-section-kicker .dot,
.vt-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nv-grad);
}

.nv-card,
.vt-card,
.admin-card {
  background: var(--nv-surface);
  border: 1px solid var(--nv-border);
  border-radius: 8px;
  box-shadow: var(--nv-shadow-sm);
}

.nv-card,
.vt-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nv-card:hover,
.vt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--nv-shadow);
  border-color: rgba(31, 111, 184, 0.36);
}

.nv-checkline,
.vt-checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nv-checkline i,
.vt-checkline i {
  color: var(--nv-accent);
  margin-top: 4px;
}

.nv-brand-badge,
.vt-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--nv-primary-2), var(--nv-primary), var(--nv-accent));
  box-shadow: 0 14px 30px rgba(2, 132, 199, 0.20);
  flex: 0 0 auto;
}

.nv-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 225, 234, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(16, 19, 23, 0.08);
}

.nv-navbar--hero {
  background: rgba(16, 19, 23, 0.70);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nv-navbar--hero .nv-nav-link {
  color: rgba(255, 255, 255, 0.86) !important;
}

.nv-navbar--hero .nv-nav-link:hover,
.nv-navbar--hero .nv-nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.10);
}

.nv-navbar--hero .navbar-toggler-icon {
  filter: invert(1);
}

.vt-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.vt-logo-frame,
.vt-admin-logo-frame,
.vt-admin-login-logo,
.vt-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 10px 26px rgba(16, 19, 23, 0.12);
}

.vt-logo-frame {
  width: 164px;
  height: 54px;
}

.vt-logo {
  width: 154px;
  height: 48px;
  object-fit: contain;
}

.vt-admin-logo-frame {
  width: 210px;
  height: 66px;
}

.vt-admin-logo {
  width: 194px;
  height: 58px;
  object-fit: contain;
}

.vt-admin-login-logo {
  width: 230px;
  height: 76px;
}

.vt-admin-login-logo img {
  width: 214px;
  height: 66px;
  object-fit: contain;
}

.vt-footer-logo {
  width: 190px;
  height: 64px;
}

.vt-footer-logo img {
  width: 176px;
  height: 56px;
  object-fit: contain;
}

.nv-nav-link {
  color: rgba(23, 32, 42, 0.78) !important;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 12px !important;
  letter-spacing: 0;
}

.nv-nav-link:hover,
.nv-nav-link.active {
  color: var(--nv-ink) !important;
  background: rgba(31, 111, 184, 0.10);
}

body.nv-has-hero {
  --nv-nav-offset: 76px;
}

body.nv-has-hero main > .nv-page-hero,
body.nv-has-hero main > header.nv-page-hero,
body.nv-has-hero main > .vt-hero {
  margin-top: calc(-1 * var(--nv-nav-offset));
  padding-top: var(--nv-nav-offset);
}

.nv-page-hero,
.vt-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #101317;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nv-hero-media,
.vt-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nv-hero-media img,
.vt-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06);
}

.nv-page-hero::after,
.vt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.94), rgba(16, 19, 23, 0.70) 54%, rgba(16, 19, 23, 0.44)),
    linear-gradient(180deg, rgba(16, 19, 23, 0.24), rgba(16, 19, 23, 0.94));
}

.nv-page-hero-inner,
.vt-hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 88px;
}

.vt-hero h1,
.nv-page-hero h1,
.nv-hero-title {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.vt-hero p,
.nv-page-hero p,
.nv-hero-sub {
  color: rgba(237, 244, 250, 0.88);
}

.vt-hero-panel {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: var(--nv-shadow-lg);
}

.vt-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.vt-metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
}

.vt-metric-value {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.vt-metric-label {
  margin-top: 7px;
  color: rgba(237, 244, 250, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.vt-band {
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.10), rgba(47, 143, 224, 0.08) 48%, rgba(245, 158, 11, 0.08)),
    #ffffff;
  border-top: 1px solid var(--nv-border);
  border-bottom: 1px solid var(--nv-border);
}

.vt-dark-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.18), rgba(47, 143, 224, 0.12), rgba(245, 158, 11, 0.10)),
    #101317;
}

.vt-service-card {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vt-service-card .vt-icon {
  width: 48px;
  height: 48px;
}

.vt-service-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.vt-service-card p {
  margin: 0;
  color: var(--nv-muted);
}

.vt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #0878a4;
  font-weight: 900;
}

.vt-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--nv-border);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.vt-process-step {
  padding: 22px;
  border-right: 1px solid var(--nv-border);
}

.vt-process-step:last-child {
  border-right: 0;
}

.vt-step-number {
  color: var(--nv-primary-2);
  font-weight: 900;
  font-size: 12px;
}

.vt-leader-img,
.vt-team-placeholder {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(31, 111, 184, 0.16), rgba(47, 143, 224, 0.14));
  border: 1px solid var(--nv-border);
}

.vt-team-placeholder {
  display: grid;
  place-items: center;
  color: #0b5f7d;
  font-size: 30px;
}

.vt-opening-card {
  border-left: 4px solid var(--nv-primary);
}

.vt-modal-head {
  background: linear-gradient(135deg, #101317, #203140);
  color: #ffffff;
}

.vt-footer {
  padding: 56px 0 28px;
  color: rgba(237, 244, 250, 0.82);
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.14), rgba(47, 143, 224, 0.08), rgba(245, 158, 11, 0.08)),
    #101317;
}

.vt-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(237, 244, 250, 0.76);
  font-weight: 700;
}

.vt-footer a:hover {
  color: #ffffff;
}

.vt-footer-title {
  color: #ffffff;
  font-weight: 900;
}

.vt-footer-copy {
  color: rgba(237, 244, 250, 0.70);
}

.vt-social {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.vt-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(237, 244, 250, 0.58);
  font-size: 13px;
}

.admin-sidebar {
  min-height: 100vh;
  color: #ffffff;
  background:
    linear-gradient(155deg, rgba(31, 111, 184, 0.18), rgba(47, 143, 224, 0.10) 38%, rgba(245, 158, 11, 0.08)),
    #101317;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(237, 244, 250, 0.76);
  font-weight: 800;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

.admin-card {
  box-shadow: var(--nv-shadow);
}

.table {
  --bs-table-color: var(--nv-text);
}

.form-control,
.form-select {
  border-radius: 8px;
  border-color: var(--nv-border);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(31, 111, 184, 0.68);
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 184, 0.14);
}

.nv-marquee {
  overflow: hidden;
}

.nv-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: nv-marquee var(--nv-marquee-duration, 28s) linear infinite;
}

.nv-marquee__group {
  display: flex;
  gap: 18px;
}

.nv-marquee--reverse .nv-marquee__track {
  animation-direction: reverse;
}

@keyframes nv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991.98px) {
  .nv-navbar .navbar-collapse {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--nv-border);
    box-shadow: var(--nv-shadow);
  }

  .nv-navbar--hero .navbar-collapse {
    background: rgba(16, 19, 23, 0.94);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .vt-logo-frame {
    width: 146px;
    height: 50px;
  }

  .vt-logo {
    width: 136px;
    height: 44px;
  }

  .nv-page-hero-inner,
  .vt-hero-inner {
    padding: 104px 0 64px;
  }

  .vt-metric-grid,
  .vt-process {
    grid-template-columns: 1fr;
  }

  .vt-process-step {
    border-right: 0;
    border-bottom: 1px solid var(--nv-border);
  }

  .vt-process-step:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .nv-section,
  .vt-section {
    padding: 52px 0;
  }

  .vt-footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nv-btn,
  .nv-card,
  .vt-card,
  .nv-marquee__track {
    transition: none;
    animation: none;
  }
}

/* Premium frontend refresh */
:root {
  --vt-black: #05070b;
  --vt-graphite: #0d1219;
  --vt-steel: #182331;
  --vt-cyan: #1f6fb8;
  --vt-blue: #0879c7;
  --vt-green: #f26a21;
  --vt-gold: #ff8a3d;
  --vt-silver: #d8e7ef;
  --vt-panel: rgba(255, 255, 255, 0.86);
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f9fcff 0%, #eef6fa 44%, #ffffff 100%);
}

.nv-navbar {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(166, 185, 200, 0.30);
  box-shadow: 0 14px 40px rgba(10, 18, 28, 0.08);
}

.nv-navbar--hero {
  background: rgba(5, 7, 11, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.nv-navbar--scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.vt-logo-frame {
  width: 158px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(5, 7, 11, 0.16);
}

.vt-logo {
  width: 146px;
  height: 46px;
}

.nv-nav-link {
  font-size: 14px;
  color: rgba(17, 27, 38, 0.72) !important;
}

.nv-navbar--hero .vt-logo-frame {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.82);
}

.nv-navbar--hero .nv-btn-primary {
  box-shadow: 0 16px 40px rgba(31, 111, 184, 0.30);
}

.nv-btn {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
}

.nv-btn-primary {
  background:
    linear-gradient(135deg, #ff8a3d 0%, #f26a21 70%);
  box-shadow: 0 18px 42px rgba(242, 106, 33, 0.30);
}

.nv-btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.vt-hero {
  background: var(--vt-black);
}

.vt-hero:not(.vt-hero-premium) {
  min-height: 430px;
}

.vt-hero:not(.vt-hero-premium)::before,
.vt-hero-premium .vt-circuit-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(31, 111, 184, 0.16) 36% 36.4%, transparent 36.4% 100%),
    linear-gradient(64deg, transparent 0 60%, rgba(47, 143, 224, 0.16) 60% 60.35%, transparent 60.35% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px);
}

.vt-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.76) 50%, rgba(5, 7, 11, 0.56)),
    linear-gradient(180deg, rgba(5, 7, 11, 0.24), rgba(5, 7, 11, 0.98));
}

.vt-hero-premium {
  min-height: 590px;
  display: flex;
  align-items: center;
  border-bottom: 0;
}

.vt-hero-premium .vt-hero-media img {
  opacity: 0.72;
  filter: saturate(1.16) contrast(1.16) brightness(0.82);
}

.vt-hero-premium .vt-hero-inner {
  padding: 72px 0 28px;
}

.vt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: rgba(236, 248, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.vt-signal-mark {
  width: 24px;
  height: 10px;
  display: inline-block;
  border-top: 2px solid var(--vt-cyan);
  border-bottom: 2px solid var(--vt-green);
}

.vt-hero-title {
  max-width: 820px;
  color: #ffffff;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.vt-hero-copy {
  max-width: 760px;
  color: rgba(236, 248, 255, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.vt-hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nv-badge-dark {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(236, 248, 255, 0.88);
  backdrop-filter: blur(10px);
}

.vt-chip-console {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 14px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, rgba(31, 111, 184, 0.20), rgba(47, 143, 224, 0.11) 46%, rgba(255, 138, 61, 0.12)),
    rgba(8, 13, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  max-width: 430px;
  margin-left: auto;
}

.vt-chip-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 54px);
  opacity: 0.34;
  pointer-events: none;
}

.vt-console-bar,
.vt-chip-board,
.vt-hero-proof-grid,
.vt-signal-list {
  position: relative;
  z-index: 2;
}

.vt-console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vt-console-bar span {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.vt-console-bar span:nth-child(1) {
  background: var(--vt-cyan);
}

.vt-console-bar span:nth-child(2) {
  background: var(--vt-green);
}

.vt-console-bar span:nth-child(3) {
  background: var(--vt-gold);
}

.vt-console-bar strong {
  margin-left: auto;
  color: rgba(236, 248, 255, 0.64);
  font-size: 11px;
  letter-spacing: 0;
}

.vt-chip-board {
  min-height: 198px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.12), transparent 34%),
    linear-gradient(45deg, transparent 0 58%, rgba(47, 143, 224, 0.12) 58% 100%),
    rgba(2, 7, 13, 0.48);
}

.vt-board-rail {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vt-cyan), var(--vt-green), transparent);
  opacity: 0.84;
}

.vt-board-rail-a {
  top: 44px;
  left: 28px;
  right: 56px;
}

.vt-board-rail-b {
  top: 98px;
  left: 52px;
  right: 28px;
}

.vt-board-rail-c {
  bottom: 44px;
  left: 36px;
  right: 44px;
}

.vt-chip-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(31, 111, 184, 0.62);
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.28), rgba(47, 143, 224, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    #08131d;
  box-shadow:
    inset 0 0 28px rgba(31, 111, 184, 0.18),
    0 28px 64px rgba(0, 0, 0, 0.38);
}

.vt-chip-name {
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.vt-chip-sub {
  margin-top: -30px;
  color: rgba(236, 248, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
}

.vt-chip-pin {
  position: absolute;
  background: rgba(236, 248, 255, 0.46);
}

.vt-pin-top,
.vt-pin-bottom {
  left: 24px;
  right: 24px;
  height: 4px;
}

.vt-pin-top {
  top: -10px;
}

.vt-pin-bottom {
  bottom: -10px;
}

.vt-pin-left,
.vt-pin-right {
  top: 24px;
  bottom: 24px;
  width: 4px;
}

.vt-pin-left {
  left: -10px;
}

.vt-pin-right {
  right: -10px;
}

.vt-chip-label {
  position: absolute;
  min-width: 56px;
  padding: 7px 10px;
  color: rgba(236, 248, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.vt-label-rtl {
  left: 20px;
  top: 18px;
}

.vt-label-uvm {
  right: 20px;
  top: 54px;
}

.vt-label-sta {
  left: 28px;
  bottom: 42px;
}

.vt-label-dft {
  right: 30px;
  bottom: 16px;
}

.vt-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.vt-proof-cell {
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.07);
}

.vt-proof-value {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.vt-proof-label {
  margin-top: 6px;
  color: rgba(236, 248, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.vt-signal-list {
  display: none;
  gap: 8px;
  margin-top: 14px;
}

.vt-signal-list div {
  display: flex;
  gap: 10px;
  color: rgba(236, 248, 255, 0.82);
  font-size: 13px;
}

.vt-signal-list i {
  color: var(--vt-green);
  margin-top: 4px;
}

.vt-section-title {
  font-size: 42px;
  line-height: 1.12;
}

.vt-services-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fbfe 100%);
}

.vt-services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 62%, rgba(31, 111, 184, 0.10) 62% 62.3%, transparent 62.3% 100%),
    repeating-linear-gradient(90deg, rgba(31, 111, 184, 0.06) 0 1px, transparent 1px 92px);
}

.vt-services-showcase .container {
  position: relative;
  z-index: 1;
}

.vt-card,
.admin-card {
  border-color: rgba(178, 195, 208, 0.70);
}

.vt-premium-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.92));
  box-shadow: 0 18px 44px rgba(8, 22, 34, 0.08);
}

.vt-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vt-blue), var(--vt-cyan), var(--vt-green), var(--vt-gold));
}

.vt-service-card {
  min-height: 326px;
  height: 100%;
}

.vt-service-card h3 {
  color: #0a1620;
  font-size: 21px;
}

.vt-service-card p {
  color: #5e7081;
}

.vt-chip,
.nv-chip {
  border-color: rgba(31, 111, 184, 0.22);
  background: rgba(31, 111, 184, 0.09);
}

.vt-link {
  color: #f26a21;
}

.vt-flow-section {
  background:
    linear-gradient(135deg, rgba(5, 7, 11, 0.03), rgba(31, 111, 184, 0.06)),
    #ffffff;
}

.vt-process-premium {
  background: #081019;
  border-color: rgba(8, 16, 25, 0.92);
  box-shadow: 0 30px 74px rgba(8, 16, 25, 0.18);
}

.vt-process-premium .vt-process-step {
  position: relative;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.vt-process-premium h3 {
  color: #ffffff;
}

.vt-process-premium p {
  color: rgba(236, 248, 255, 0.66) !important;
}

.vt-process-premium .vt-step-number {
  color: var(--vt-cyan);
}

.vt-dark-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.16), rgba(47, 143, 224, 0.10) 46%, rgba(255, 138, 61, 0.08)),
    #05070b;
}

.vt-dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 78px);
}

.vt-dark-band .container {
  position: relative;
  z-index: 1;
}

.vt-band {
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.09), rgba(47, 143, 224, 0.06) 46%, rgba(255, 138, 61, 0.07)),
    #ffffff;
}

.vt-footer {
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.13), rgba(47, 143, 224, 0.08), rgba(255, 138, 61, 0.08)),
    #05070b;
}

@media (max-width: 1199.98px) {
  .vt-hero-title {
    font-size: 56px;
  }

  .vt-hero-copy {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .vt-hero-premium {
    min-height: auto;
  }

  .vt-hero-premium .vt-hero-inner {
    padding: 116px 0 54px;
  }

  .vt-hero-title {
    font-size: 44px;
  }

  .vt-section-title {
    font-size: 34px;
  }

  .vt-chip-console {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .vt-hero-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .vt-hero-copy {
    font-size: 16px;
  }

  .vt-hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .vt-chip-core {
    width: 150px;
    height: 150px;
  }

  .vt-chip-name {
    font-size: 38px;
  }

  .vt-chip-label {
    min-width: 48px;
  }

  .vt-label-rtl {
    left: 16px;
    top: 28px;
  }

  .vt-label-uvm {
    right: 18px;
    top: 82px;
  }

  .vt-label-sta {
    left: 20px;
    bottom: 66px;
  }

  .vt-label-dft {
    right: 24px;
    bottom: 28px;
  }

  .vt-section-title {
    font-size: 29px;
  }
}

/* Modern section and form polish */
.vt-page-hero-modern {
  min-height: 470px;
  display: flex;
  align-items: center;
}

.vt-page-hero-modern .vt-hero-inner {
  padding: 108px 0 72px;
}

.vt-page-hero-modern h1 {
  max-width: 860px;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 900;
}

.vt-page-hero-modern p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.7;
}

.vt-page-hero-modern::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.78) 48%, rgba(5, 7, 11, 0.48)),
    linear-gradient(180deg, rgba(5, 7, 11, 0.14), rgba(5, 7, 11, 0.94));
}

.vt-filter-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(178, 195, 208, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 254, 0.90)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(8, 22, 34, 0.10);
}

.vt-filter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.46;
  background:
    linear-gradient(120deg, transparent 0 70%, rgba(31, 111, 184, 0.16) 70% 70.4%, transparent 70.4% 100%),
    repeating-linear-gradient(90deg, rgba(31, 111, 184, 0.05) 0 1px, transparent 1px 74px);
}

.vt-filter-panel .row {
  position: relative;
  z-index: 1;
}

.form-label {
  color: #203142;
  font-size: 13px;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 8px;
  border-color: rgba(166, 185, 200, 0.72);
  background-color: rgba(255, 255, 255, 0.94);
}

textarea.form-control {
  min-height: 126px;
}

.vt-domain-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(178, 195, 208, 0.62);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
}

.vt-chip.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--vt-blue), var(--vt-cyan), var(--vt-green));
  box-shadow: 0 12px 28px rgba(8, 121, 199, 0.22);
}

.vt-services-index-section,
.vt-detail-section,
.vt-careers-section,
.vt-contact-section {
  position: relative;
  overflow: hidden;
}

.vt-services-index-section::before,
.vt-detail-section::before,
.vt-careers-section::before,
.vt-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(118deg, transparent 0 28%, rgba(31, 111, 184, 0.12) 28% 28.2%, transparent 28.2% 100%),
    linear-gradient(62deg, transparent 0 64%, rgba(47, 143, 224, 0.10) 64% 64.2%, transparent 64.2% 100%),
    repeating-linear-gradient(90deg, rgba(15, 28, 42, 0.035) 0 1px, transparent 1px 86px);
}

.vt-services-index-section .container,
.vt-detail-section .container,
.vt-careers-section .container,
.vt-contact-section .container {
  position: relative;
  z-index: 1;
}

.vt-service-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 54px 0 18px;
}

.vt-group-title {
  margin: 8px 0 0;
  color: #07131d;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}

.vt-premium-card {
  position: relative;
  overflow: hidden;
}

.vt-premium-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(31, 111, 184, 0.09), rgba(47, 143, 224, 0.08), rgba(255, 138, 61, 0.06));
  transform: skewY(-4deg);
}

.vt-premium-card > * {
  position: relative;
  z-index: 1;
}

.vt-detail-card {
  box-shadow: 0 24px 70px rgba(8, 22, 34, 0.10);
}

.vt-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.vt-accordion .accordion-item {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(178, 195, 208, 0.62);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 28px rgba(8, 22, 34, 0.05);
}

.vt-accordion .accordion-button {
  min-height: 58px;
  color: #091622;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 253, 0.82));
  box-shadow: none;
}

.vt-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 121, 199, 0.98), rgba(31, 111, 184, 0.96), rgba(47, 143, 224, 0.92));
}

.vt-accordion .accordion-button::after {
  filter: saturate(0.2);
}

.vt-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.vt-accordion .accordion-body {
  background: #ffffff;
}

.vt-deliverable {
  display: flex;
  gap: 14px;
  height: 100%;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(178, 195, 208, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 254, 0.88));
  box-shadow: 0 16px 36px rgba(8, 22, 34, 0.06);
}

.vt-engage-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(31, 111, 184, 0.18), rgba(47, 143, 224, 0.10)),
    #07111b;
  box-shadow: 0 28px 74px rgba(7, 17, 27, 0.26);
}

.vt-engage-card .vt-kicker,
.vt-engage-card .vt-muted,
.vt-engage-card .form-label {
  color: rgba(236, 248, 255, 0.78) !important;
}

.vt-engage-card .form-control {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.vt-engage-card .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
}

.vt-side-card {
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.10), rgba(47, 143, 224, 0.08)),
    #ffffff;
}

.vt-job-card {
  border-left: 0;
  box-shadow: 0 22px 64px rgba(8, 22, 34, 0.09);
}

.vt-job-card h3 {
  color: #08131d;
}

.vt-job-card .nv-btn {
  width: 100%;
}

.vt-modal-premium {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(5, 7, 11, 0.30);
}

.vt-modal-head {
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.18), rgba(47, 143, 224, 0.10)),
    #05070b;
}

.vt-contact-panel,
.vt-contact-form-card {
  box-shadow: 0 24px 70px rgba(8, 22, 34, 0.10);
}

.vt-contact-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 253, 0.88));
}

.vt-contact-form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.92));
}

.vt-leader-card {
  box-shadow: 0 20px 54px rgba(8, 22, 34, 0.08);
}

.vt-leader-card .vt-team-placeholder,
.vt-leader-card .vt-leader-img {
  box-shadow: 0 16px 34px rgba(8, 121, 199, 0.16);
}

.pagination {
  gap: 8px;
}

.page-link {
  border-radius: 8px !important;
  border-color: rgba(178, 195, 208, 0.72);
  color: #0a6f9e;
  font-weight: 800;
}

.active > .page-link,
.page-link.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--vt-blue), var(--vt-cyan), var(--vt-green));
}

@media (max-width: 991.98px) {
  .vt-page-hero-modern {
    min-height: 390px;
  }

  .vt-page-hero-modern .vt-hero-inner {
    padding: 106px 0 56px;
  }

  .vt-page-hero-modern h1 {
    font-size: 40px;
  }

  .vt-service-group-head {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .vt-page-hero-modern h1 {
    font-size: 32px;
  }

  .vt-page-hero-modern p {
    font-size: 16px;
  }

  .vt-filter-panel {
    padding: 16px;
  }

  .vt-group-title {
    font-size: 26px;
  }
}

/* Vikarna premium cinematic homepage */
.vtx-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 28%, rgba(31, 111, 184, 0.36), transparent 24%),
    radial-gradient(circle at 76% 48%, rgba(242, 106, 33, 0.26), transparent 28%),
    radial-gradient(circle at 56% 68%, rgba(47, 143, 224, 0.18), transparent 30%),
    linear-gradient(145deg, #050912 0%, #071427 42%, #02050a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vtx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.66;
  background:
    linear-gradient(120deg, transparent 0 20%, rgba(86, 209, 255, 0.16) 20.1% 20.35%, transparent 20.45% 100%),
    linear-gradient(38deg, transparent 0 49%, rgba(236, 79, 150, 0.16) 49.1% 49.38%, transparent 49.5% 100%),
    linear-gradient(70deg, transparent 0 63%, rgba(86, 209, 255, 0.20) 63.1% 63.34%, transparent 63.45% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 104px);
  pointer-events: none;
}

.vtx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.18), rgba(2, 5, 10, 0.96)),
    linear-gradient(90deg, rgba(2, 5, 10, 0.92), rgba(2, 5, 10, 0.52) 54%, rgba(2, 5, 10, 0.78));
  pointer-events: none;
}

.vtx-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vtx-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.2) contrast(1.14) brightness(0.76);
}

.vtx-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.vtx-network span {
  position: absolute;
  height: 2px;
  width: 54vw;
  min-width: 520px;
  background: linear-gradient(90deg, transparent, rgba(79, 210, 255, 0.96), rgba(236, 79, 150, 0.72), transparent);
  box-shadow: 0 0 24px rgba(79, 210, 255, 0.42);
  transform-origin: left center;
}

.vtx-network span:nth-child(1) { left: 4%; top: 31%; transform: rotate(-15deg); }
.vtx-network span:nth-child(2) { left: 22%; top: 47%; transform: rotate(18deg); }
.vtx-network span:nth-child(3) { left: 40%; top: 66%; transform: rotate(-8deg); }
.vtx-network span:nth-child(4) { left: 8%; top: 70%; transform: rotate(10deg); opacity: 0.62; }
.vtx-network span:nth-child(5) { left: 55%; top: 34%; transform: rotate(25deg); opacity: 0.58; }
.vtx-network span:nth-child(6) { left: 68%; top: 60%; transform: rotate(-24deg); opacity: 0.58; }

.vtx-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 86px 0 34px;
}

.vtx-top-bars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 32px;
}

.vtx-top-bars span {
  height: 8px;
  display: block;
  background: rgba(255, 255, 255, 0.36);
}

.vtx-top-bars span:nth-child(1) {
  background: rgba(19, 88, 159, 0.72);
}

.vtx-top-bars span:nth-child(2) {
  background: rgba(75, 188, 225, 0.82);
}

.vtx-top-bars span:nth-child(3) {
  background: rgba(198, 211, 219, 0.74);
}

.vtx-brand-title {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.vtx-tagline {
  display: inline-flex;
  color: #8fc7ff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.vtx-hero-copy {
  max-width: 760px;
  color: rgba(236, 248, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.vtx-command-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(5, 13, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
}

.vtx-command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 48px);
  pointer-events: none;
}

.vtx-command-head,
.vtx-chip-map,
.vtx-console-list {
  position: relative;
  z-index: 1;
}

.vtx-command-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.vtx-command-head span {
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.vtx-command-head span:nth-child(1) { background: #7cc4ff; }
.vtx-command-head span:nth-child(2) { background: #4aa3e6; }
.vtx-command-head span:nth-child(3) { background: #e6af56; }

.vtx-command-head strong {
  margin-left: auto;
  color: rgba(236, 248, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
}

.vtx-chip-map {
  min-height: 168px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 196, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(124, 196, 255, 0.12), rgba(242, 106, 33, 0.08)),
    rgba(2, 6, 12, 0.52);
}

.vtx-trace {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7cc4ff, #4aa3e6, transparent);
  box-shadow: 0 0 16px rgba(124, 196, 255, 0.42);
}

.vtx-trace-a { left: 32px; right: 42px; top: 62px; transform: rotate(8deg); }
.vtx-trace-b { left: 46px; right: 30px; top: 138px; transform: rotate(-18deg); }
.vtx-trace-c { left: 38px; right: 38px; bottom: 70px; transform: rotate(14deg); }

.vtx-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(124, 196, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(124, 196, 255, 0.30), rgba(47, 143, 224, 0.14)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    #08131d;
  box-shadow: inset 0 0 34px rgba(124, 196, 255, 0.16), 0 28px 80px rgba(0, 0, 0, 0.38);
}

.vtx-core img {
  width: 72px;
  height: 54px;
  object-fit: contain;
  padding: 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.vtx-node {
  position: absolute;
  min-width: 50px;
  padding: 6px 8px;
  color: rgba(236, 248, 255, 0.92);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
}

.vtx-node-1 { left: 22px; top: 22px; }
.vtx-node-2 { right: 24px; top: 58px; }
.vtx-node-3 { left: 28px; bottom: 40px; }
.vtx-node-4 { right: 28px; bottom: 20px; }

.vtx-console-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.vtx-console-list div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.vtx-console-list span {
  color: rgba(236, 248, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.vtx-console-list strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.vtx-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.vtx-hero-metrics div {
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.vtx-hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.vtx-hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(236, 248, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.vtx-proof-strip {
  position: relative;
  z-index: 5;
  margin-top: -190px;
  padding-bottom: 28px;
}

.vtx-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(166, 185, 200, 0.42);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 80px rgba(5, 14, 24, 0.16);
  backdrop-filter: blur(22px);
}

.vtx-proof-item {
  padding: 20px;
  border-right: 1px solid rgba(166, 185, 200, 0.36);
}

.vtx-proof-item:last-child {
  border-right: 0;
}

.vtx-proof-item strong {
  display: block;
  color: #07131d;
  font-size: 18px;
  font-weight: 900;
}

.vtx-proof-item span {
  display: block;
  margin-top: 6px;
  color: #5e7081;
  font-size: 13px;
  font-weight: 700;
}

.vtx-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.vtx-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(31, 111, 184, 0.10) 58.05% 58.28%, transparent 58.35% 100%),
    repeating-linear-gradient(90deg, rgba(15, 28, 42, 0.035) 0 1px, transparent 1px 92px);
}

.vtx-section .container {
  position: relative;
  z-index: 1;
}

.vtx-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vtx-service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(166, 185, 200, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 254, 0.92));
  box-shadow: 0 22px 64px rgba(8, 22, 34, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vtx-service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -46% -20%;
  height: 180px;
  background: linear-gradient(90deg, rgba(31, 111, 184, 0.12), rgba(47, 143, 224, 0.09), rgba(255, 138, 61, 0.06));
  transform: skewY(-5deg);
  pointer-events: none;
}

.vtx-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 111, 184, 0.46);
  box-shadow: 0 32px 90px rgba(8, 22, 34, 0.14);
}

.vtx-service-card > * {
  position: relative;
  z-index: 1;
}

.vtx-service-num {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 0;
  color: rgba(8, 121, 199, 0.12);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}

.vtx-service-card h3 {
  margin: 0;
  color: #07131d;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 900;
}

.vtx-service-card p {
  margin: 10px 0 0;
  color: #5e7081;
}

.vtx-process-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(31, 111, 184, 0.12), transparent 28%),
    #ffffff;
}

.vtx-process-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(5, 14, 24, 0.22);
}

.vtx-process-step {
  min-height: 210px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    #07111b;
}

.vtx-process-step span {
  display: inline-flex;
  color: #7cc4ff;
  font-size: 13px;
  font-weight: 900;
}

.vtx-process-step h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.vtx-process-step p {
  margin: 0;
  color: rgba(236, 248, 255, 0.68);
}

.vtx-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.vtx-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vtx-industry-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(166, 185, 200, 0.54);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(8, 22, 34, 0.07);
}

.vtx-industry-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #0879c7, #1f6fb8, #f26a21);
  box-shadow: 0 14px 32px rgba(8, 121, 199, 0.18);
}

.vtx-industry-card h3 {
  margin: 18px 0 10px;
  color: #07131d;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}

.vtx-industry-card p {
  margin: 0;
  color: #5e7081;
}

.vtx-dark-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 111, 184, 0.26), transparent 28%),
    radial-gradient(circle at 84% 64%, rgba(242, 106, 33, 0.20), transparent 28%),
    linear-gradient(135deg, #05070b, #071427 54%, #02050a);
}

.vtx-dark-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.46;
  background:
    linear-gradient(120deg, transparent 0 26%, rgba(124, 196, 255, 0.16) 26.1% 26.3%, transparent 26.4% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 86px);
}

.vtx-dark-stage .container {
  position: relative;
  z-index: 1;
}

.vtx-why-stack {
  display: grid;
  gap: 12px;
}

.vtx-why-stack article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.vtx-why-stack span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #7cc4ff;
  font-weight: 900;
  border-radius: 8px;
  border: 1px solid rgba(124, 196, 255, 0.34);
  background: rgba(124, 196, 255, 0.10);
}

.vtx-why-stack h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.vtx-why-stack p {
  margin: 0;
  color: rgba(236, 248, 255, 0.68);
}

.vtx-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.vtx-tech-tile {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(166, 185, 200, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 254, 0.90));
  box-shadow: 0 16px 40px rgba(8, 22, 34, 0.06);
}

.vtx-tech-tile strong {
  color: #07131d;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.vtx-tech-tile span {
  color: #0879c7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vtx-careers {
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.10), rgba(47, 143, 224, 0.06)),
    #fff;
}

.vtx-career-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(166, 185, 200, 0.54);
  background: #07111b;
  box-shadow: 0 28px 80px rgba(5, 14, 24, 0.20);
}

.vtx-career-panel article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.vtx-career-panel article:last-child {
  border-bottom: 0;
}

.vtx-career-panel span {
  color: #7cc4ff;
  font-size: 12px;
  font-weight: 900;
}

.vtx-career-panel h3 {
  margin: 6px 0 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.vtx-career-panel p {
  margin: 0;
  color: rgba(236, 248, 255, 0.62);
  font-size: 13px;
}

.vtx-career-panel a {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: #fff;
  font-weight: 900;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.vtx-final-cta {
  background: #fff;
}

.vtx-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 8%, rgba(124, 196, 255, 0.30), transparent 26%),
    radial-gradient(circle at 92% 72%, rgba(242, 106, 33, 0.18), transparent 30%),
    linear-gradient(135deg, #05070b, #0b1a2e 58%, #07111b);
  box-shadow: 0 34px 100px rgba(5, 14, 24, 0.22);
}

.vtx-cta-panel h2 {
  max-width: 780px;
  margin: 12px 0 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
}

.vtx-cta-panel p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(236, 248, 255, 0.72);
}

.vtx-cta-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.vtx-cta-steps span {
  padding: 8px 11px;
  color: rgba(236, 248, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.vtx-generic-section {
  padding: 34px;
  border-radius: 8px;
  border: 1px solid rgba(166, 185, 200, 0.54);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 56px rgba(8, 22, 34, 0.08);
}

@media (max-width: 1199.98px) {
  .vtx-brand-title {
    font-size: 58px;
  }

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

@media (max-width: 991.98px) {
  .vtx-hero {
    min-height: auto;
  }

  .vtx-hero-inner {
    padding: 118px 0 58px;
  }

  .vtx-top-bars {
    margin-bottom: 42px;
  }

  .vtx-brand-title {
    font-size: 44px;
  }

  .vtx-tagline {
    font-size: 20px;
  }

  .vtx-command-panel {
    max-width: 520px;
  }

  .vtx-hero-metrics,
  .vtx-proof-grid,
  .vtx-service-grid,
  .vtx-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vtx-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vtx-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .vtx-network {
    display: none;
  }

  .vtx-hero-inner {
    padding: 90px 0 24px;
  }

  .vtx-top-bars {
    display: none;
  }

  .vtx-brand-title {
    font-size: 30px;
  }

  .vtx-tagline {
    font-size: 17px;
  }

  .vtx-hero-copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .vtx-command-panel {
    display: none;
  }

  .vtx-proof-grid,
  .vtx-service-grid,
  .vtx-process-board,
  .vtx-industry-grid,
  .vtx-tech-grid {
    grid-template-columns: 1fr;
  }

  .vtx-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .vtx-hero-metrics div {
    padding: 10px 9px;
  }

  .vtx-hero-metrics strong {
    font-size: 18px;
  }

  .vtx-hero-metrics span {
    font-size: 10px;
    line-height: 1.25;
  }

  .vtx-proof-strip {
    margin-top: -220px;
  }

  .vtx-proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(166, 185, 200, 0.36);
  }

  .vtx-proof-item:last-child {
    border-bottom: 0;
  }

  .vtx-service-card {
    min-height: 300px;
  }

  .vtx-process-step {
    min-height: 170px;
  }

  .vtx-why-stack article {
    grid-template-columns: 1fr;
  }

  .vtx-career-panel article {
    align-items: flex-start;
    flex-direction: column;
  }

  .vtx-career-panel a {
    width: 100%;
    text-align: center;
  }

  .vtx-cta-panel {
    padding: 26px;
  }

  .vtx-cta-panel h2 {
    font-size: 30px;
  }
}

/* ---------------------------------------------------------------------------
   VIKARNA NEXT-LEVEL REDESIGN: CINEMATIC EFFECTS, ANIMATIONS & GLAMOUR
   -------------------------------------------------------------------------*/

/* --- 1. Floating Particle Background for Hero --- */
@keyframes vt-particle-float {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-30px) translateX(15px) rotate(10deg); opacity: 0.8; }
}

@keyframes vt-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 196, 255, 0.3); }
  50% { box-shadow: 0 0 60px rgba(124, 196, 255, 0.8), 0 0 100px rgba(242, 106, 33, 0.4); }
}

@keyframes vt-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes vt-stagger-in {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes vt-tilt-3d {
  0%, 100% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg); }
  25% { transform: perspective(1000px) rotateX(2deg) rotateY(-2deg); }
  75% { transform: perspective(1000px) rotateX(-2deg) rotateY(2deg); }
}

.vt-particle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.vt-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 196, 255, 0.8), rgba(242, 106, 33, 0.4), transparent);
  animation: vt-particle-float 8s ease-in-out infinite;
  filter: blur(2px);
}
.vt-particle:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 12%; animation-delay: 0s; }
.vt-particle:nth-child(2) { width: 120px; height: 120px; top: 60%; left: 70%; animation-delay: -2s; }
.vt-particle:nth-child(3) { width: 60px; height: 60px; top: 30%; right: 15%; animation-delay: -4s; }
.vt-particle:nth-child(4) { width: 100px; height: 100px; bottom: 15%; left: 25%; animation-delay: -1s; }
.vt-particle:nth-child(5) { width: 70px; height: 70px; top: 75%; right: 30%; animation-delay: -3s; }

/* --- 2. Enhanced Cinematic Hero --- */
.vt-hero-premium .vtx-hero {
  background:
    radial-gradient(circle at 10% 15%, rgba(31, 111, 184, 0.5), transparent 30%),
    radial-gradient(circle at 80% 35%, rgba(242, 106, 33, 0.4), transparent 28%),
    radial-gradient(circle at 45% 85%, rgba(47, 143, 224, 0.35), transparent 30%),
    linear-gradient(120deg, #02050a 0%, #040b16 30%, #071427 55%, #040b16 80%, #02050a 100%);
  background-size: 200% 200%;
  animation: vt-gradient-shift 12s ease infinite;
}

.vt-hero-premium .vtx-hero::after {
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.1), rgba(2, 5, 10, 0.95)),
    linear-gradient(90deg, rgba(2, 5, 10, 0.9), rgba(2, 5, 10, 0.3) 50%, rgba(2, 5, 10, 0.8));
}

.vt-hero-premium .vtx-brand-title {
  animation: vt-stagger-in 1s ease-out 0.2s both;
  text-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 60px rgba(124, 196, 255, 0.3);
}
.vt-hero-premium .vtx-tagline { animation: vt-stagger-in 1s ease-out 0.4s both; }
.vt-hero-premium .vtx-hero-copy { animation: vt-stagger-in 1s ease-out 0.6s both; }
.vt-hero-premium .vtx-command-panel { animation: vt-stagger-in 1s ease-out 0.8s both; }

.vt-hero-premium .vtx-core { animation: vt-tilt-3d 6s ease-in-out infinite; }
.vt-hero-premium .vtx-core:hover { animation: vt-pulse-glow 2s ease-in-out infinite; }

/* --- 3. Glassmorphism Navigation Upgrade --- */
.nv-navbar {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}
.nv-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.12);
  border-bottom-color: rgba(10, 31, 68, 0.08);
}
.vt-brand {
  transition: all 0.3s ease;
}
.vt-brand:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 16px rgba(31, 111, 184, 0.4));
}
.nv-nav-link {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(236, 244, 255, 0.86);
  transition: color 0.2s ease, transform 0.2s ease;
}
.nv-navbar.scrolled .nv-nav-link {
  color: #234;
}
.nv-navbar.scrolled .nv-nav-link:hover,
.nv-navbar.scrolled .nv-nav-link.active {
  color: var(--nv-primary);
}
.nv-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--nv-grad);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.nv-nav-link:hover, .nv-nav-link.active {
  color: #fff;
  transform: translateY(-2px);
}
.nv-nav-link:hover::after, .nv-nav-link.active::after {
  width: 100%;
}
.nv-btn-primary {
  position: relative;
  overflow: hidden;
  border: none;
}
.nv-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.15));
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: 0;
}
.nv-btn-primary:hover::before {
  transform: translateX(100%);
}
.nv-btn-primary > * { position: relative; z-index: 1; }

/* --- 4. Staggered Reveal for Sections --- */
.vt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.vt-reveal.vt-visible {
  opacity: 1;
  transform: translateY(0);
}
.vt-reveal-delay-1 { transition-delay: 0.1s; }
.vt-reveal-delay-2 { transition-delay: 0.2s; }
.vt-reveal-delay-3 { transition-delay: 0.3s; }
.vt-reveal-delay-4 { transition-delay: 0.4s; }

/* --- 5. 3D Interactive Service Cards --- */
.vtx-service-card {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.vtx-service-card:hover {
  transform: translateY(-12px) perspective(1000px) rotateX(4deg) rotateY(-5deg);
  box-shadow: 0 36px 120px rgba(8, 22, 34, 0.22), 0 0 60px rgba(31, 111, 184, 0.15);
  border-color: rgba(124, 196, 255, 0.5);
}
.vtx-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124, 196, 255, 0.12), rgba(47, 143, 224, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.vtx-service-card:hover::before {
  opacity: 1;
}

/* --- 6. Glowing Industry Cards --- */
.vtx-industry-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vtx-industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 111, 184, 0.6);
  box-shadow: 0 28px 80px rgba(8, 22, 34, 0.18), 0 0 50px rgba(31, 111, 184, 0.15);
}
.vtx-industry-card i {
  transition: all 0.35s ease;
}
.vtx-industry-card:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(8, 121, 199, 0.35);
}

/* --- 7. Premium Tech Tiles with Hover Effect --- */
.vtx-tech-tile {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.vtx-tech-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nv-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.vtx-tech-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(8, 22, 34, 0.2);
  border-color: transparent;
}
.vtx-tech-tile:hover::after {
  opacity: 0.08;
}
.vtx-tech-tile > * { position: relative; z-index: 1; }
.vtx-tech-tile:hover strong {
  background: var(--nv-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- 8. Immersive CTA Section Upgrade --- */
.vtx-cta-panel {
  position: relative;
  overflow: hidden;
}
.vtx-cta-panel::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(124, 196, 255, 0.3), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(242, 106, 33, 0.25), transparent 40%);
  animation: vt-gradient-shift 18s linear infinite;
  z-index: 0;
}
.vtx-cta-panel > * { position: relative; z-index: 1; }

/* --- 9. Premium Footer Upgrade --- */
.vt-footer {
  position: relative;
  background: linear-gradient(135deg, #02050a, #040b16, #071427);
  border-top: 1px solid rgba(124, 196, 255, 0.2);
  overflow: hidden;
}
.vt-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(31, 111, 184, 0.18), transparent 40%),
              radial-gradient(circle at 80% 100%, rgba(47, 143, 224, 0.12), transparent 40%);
  opacity: 0.8;
  pointer-events: none;
}
.vt-footer > .container { position: relative; z-index: 1; }
.vt-footer-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 14px;
}
.vt-footer a {
  display: block;
  color: rgba(236, 248, 255, 0.75);
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}
.vt-footer a:hover {
  color: #7cc4ff;
  transform: translateX(4px);
}
.vt-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(236,248,255,0.9);
  font-size: 18px;
  transition: all 0.3s ease;
}
.vt-social:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 196, 255, 0.6);
  background: rgba(124, 196, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 40px rgba(124, 196, 255, 0.25);
}
.vt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(236, 248, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
}

/* --- 10. Scroll Progress Indicator --- */
.vt-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--nv-grad);
  z-index: 1050;
  transition: width 0.1s linear;
  box-shadow: 0 0 20px rgba(124, 196, 255, 0.5);
}

/* ===========================================================================
   HERO REDESIGN v2 — cinematic silicon hero
   ======================================================================== */
.vt-hero-premium.vtx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #061a3d;
  border-bottom: 1px solid rgba(124, 196, 255, 0.14);
  animation: none;
}

/* layered background: svg circuit + moving gradient wash */
.vtx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1200px 700px at 80% 40%, rgba(242, 106, 33, 0.14), transparent 60%),
    radial-gradient(1000px 640px at 12% 22%, rgba(47, 143, 224, 0.24), transparent 60%),
    url('/assets/hero-bg.svg');
  background-size: cover, cover, cover;
  background-position: center, center, center right;
  background-repeat: no-repeat;
}
.vtx-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  mix-blend-mode: screen;
  filter: saturate(1.15) contrast(1.1);
}

.vtx-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

/* soft aurora blobs drifting behind the content */
.vtx-hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.vtx-hero-aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: vtx-drift 16s ease-in-out infinite;
}
.vtx-hero-aurora span:nth-child(1) { width: 480px; height: 480px; top: -80px; left: -60px; background: radial-gradient(circle, rgba(47,143,224,0.55), transparent 70%); }
.vtx-hero-aurora span:nth-child(2) { width: 560px; height: 560px; bottom: -160px; right: -80px; background: radial-gradient(circle, rgba(242,106,33,0.38), transparent 70%); animation-delay: -5s; }
.vtx-hero-aurora span:nth-child(3) { width: 420px; height: 420px; top: 40%; left: 42%; background: radial-gradient(circle, rgba(31,111,184,0.40), transparent 70%); animation-delay: -9s; }

@keyframes vtx-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 24px) scale(0.95); }
}

/* thin animated scan line sweeping down the hero */
.vtx-hero-scanline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(124,196,255,0.10), transparent);
  border-top: 1px solid rgba(124,196,255,0.18);
  animation: vtx-scan 7s linear infinite;
}
@keyframes vtx-scan {
  0% { transform: translateY(-160px); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

.vt-hero-premium .vtx-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 132px 0 72px;
}

.vtx-hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2,5,10,0.85));
}

/* ---- Left column copy ---- */
.vtx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 196, 255, 0.30);
  background: rgba(124, 196, 255, 0.09);
  color: #d5eaff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  animation: vt-stagger-in 0.9s ease-out 0.05s both;
}
.vtx-live-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ff8a3d;
  box-shadow: 0 0 0 0 rgba(242, 106, 33, 0.6);
  animation: vtx-ping 2s ease-out infinite;
}
@keyframes vtx-ping {
  0% { box-shadow: 0 0 0 0 rgba(242, 106, 33, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(242, 106, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 106, 33, 0); }
}

.vt-hero-premium .vtx-brand-title {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #f4fbff;
  background: linear-gradient(100deg, #ffffff 0%, #dcefff 42%, #8fc7ff 75%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 14px 40px rgba(4, 18, 43, 0.6));
  animation: vt-stagger-in 0.9s ease-out 0.15s both, vtx-title-sheen 9s ease-in-out infinite 1s;
}
@keyframes vtx-title-sheen {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.vt-hero-premium .vtx-tagline {
  display: inline-flex;
  margin-top: 16px;
  color: #ff9a4d;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: 3px;
  animation: vt-stagger-in 0.9s ease-out 0.3s both;
}

.vt-hero-premium .vtx-hero-lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: #eaf5ff;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  font-weight: 600;
  animation: vt-stagger-in 0.9s ease-out 0.42s both;
}
.vt-hero-premium .vtx-hero-copy {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(214, 232, 245, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
  animation: vt-stagger-in 0.9s ease-out 0.52s both;
}

.vtx-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: vt-stagger-in 0.9s ease-out 0.62s both;
}
.vtx-btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #ff8a3d, #f26a21 70%);
  box-shadow: 0 16px 40px rgba(242, 106, 33, 0.36), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.vtx-btn-glow::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: vtx-shine 4.5s ease-in-out infinite;
}
@keyframes vtx-shine {
  0%, 62% { left: -120%; }
  100% { left: 140%; }
}
.vt-hero-premium .nv-btn-outline {
  color: #eaf9ff;
  background: rgba(255,255,255,0.05);
  border-color: rgba(140, 196, 255, 0.34);
  backdrop-filter: blur(8px);
}
.vt-hero-premium .nv-btn-outline:hover {
  background: rgba(140, 196, 255, 0.12);
  border-color: rgba(140, 196, 255, 0.6);
}

.vtx-hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  animation: vt-stagger-in 0.9s ease-out 0.72s both;
}
.vtx-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #d7ecf7;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
}
.vtx-feature-chip i {
  font-size: 9px;
  color: #ff9a4d;
}

/* ---- Right column: animated silicon core ---- */
.vtx-core-stage {
  position: relative;
  height: 480px;
  display: grid;
  place-items: center;
  animation: vt-stagger-in 1s ease-out 0.5s both;
}
.vtx-core-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,143,224,0.44), rgba(242,106,33,0.16) 55%, transparent 72%);
  filter: blur(10px);
  animation: vtx-core-pulse 5s ease-in-out infinite;
}
@keyframes vtx-core-pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 1; }
}

.vtx-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(140, 200, 255, 0.16);
}
.vtx-orbit-1 { width: 220px; height: 220px; animation: vtx-spin 14s linear infinite; }
.vtx-orbit-2 { width: 330px; height: 330px; border-color: rgba(255,154,77,0.18); animation: vtx-spin 22s linear infinite reverse; }
.vtx-orbit-3 { width: 440px; height: 440px; border-style: dashed; border-color: rgba(140,200,255,0.12); animation: vtx-spin 34s linear infinite; }
.vtx-orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #7cc4ff;
  box-shadow: 0 0 14px 2px rgba(124,196,255,0.85);
}
.vtx-orbit-2 .vtx-orbit-dot { background: #ff9a4d; box-shadow: 0 0 14px 2px rgba(255,154,77,0.85); }
.vtx-orbit-3 .vtx-orbit-dot { background: #4aa3e6; box-shadow: 0 0 14px 2px rgba(74,163,230,0.85); }
@keyframes vtx-spin { to { transform: rotate(360deg); } }

.vtx-core-chip {
  position: relative;
  z-index: 2;
  width: 148px; height: 148px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(140, 200, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(140,200,255,0.18), rgba(242,106,33,0.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 16px),
    #08234b;
  box-shadow: inset 0 0 40px rgba(124,196,255,0.18), 0 30px 80px rgba(0,0,0,0.5);
  animation: vt-tilt-3d 8s ease-in-out infinite;
}
.vtx-core-chip img {
  width: 96px;
  height: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
}
.vtx-core-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(124,196,255,0.30), transparent);
  animation: vtx-chip-scan 3s ease-in-out infinite;
}
@keyframes vtx-chip-scan {
  0%, 100% { transform: translateY(-40%); opacity: 0.2; }
  50% { transform: translateY(300%); opacity: 0.9; }
}

.vtx-core-tag {
  position: absolute;
  z-index: 3;
  padding: 6px 11px;
  border-radius: 8px;
  border: 1px solid rgba(140,200,255,0.26);
  background: rgba(8, 27, 58, 0.82);
  color: #dfefff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  animation: vtx-float 6s ease-in-out infinite;
}
.vtx-core-tag-1 { top: 12%; left: 8%; }
.vtx-core-tag-2 { top: 6%; right: 14%; animation-delay: -1s; }
.vtx-core-tag-3 { top: 44%; right: 2%; animation-delay: -2s; }
.vtx-core-tag-4 { bottom: 20%; right: 12%; animation-delay: -3s; }
.vtx-core-tag-5 { bottom: 12%; left: 14%; animation-delay: -4s; }
.vtx-core-tag-6 { top: 40%; left: 0%; animation-delay: -2.5s; }
@keyframes vtx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.vtx-core-hud {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  width: min(100%, 420px);
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(4, 12, 22, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.vtx-core-hud div { display: flex; flex-direction: column; gap: 5px; }
.vtx-core-hud span { color: rgba(200,224,240,0.6); font-size: 10px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase; }
.vtx-core-hud strong { color: #fff; font-size: 12.5px; font-weight: 800; line-height: 1.15; }

/* ---- metrics row restyle ---- */
.vt-hero-premium .vtx-hero-metrics {
  margin-top: 64px;
  max-width: 100%;
  gap: 1px;
  border-radius: 16px;
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.08);
  animation: vt-stagger-in 0.9s ease-out 0.8s both;
}
.vt-hero-premium .vtx-hero-metrics div {
  padding: 20px 22px;
  background: rgba(6, 15, 26, 0.6);
}
.vt-hero-premium .vtx-hero-metrics strong {
  font-size: 30px;
  background: linear-gradient(120deg, #ffffff, #8fc7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- responsive ---- */
@media (max-width: 991.98px) {
  .vt-hero-premium.vtx-hero { min-height: auto; }
  .vt-hero-premium .vtx-hero-inner { padding: 118px 0 64px; }
  .vtx-core-stage { height: 420px; margin-top: 12px; }
  .vt-hero-premium .vtx-hero-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 44px; }
}
@media (max-width: 767.98px) {
  .vt-hero-premium .vtx-hero-inner { padding: 104px 0 44px; }
  .vtx-core-stage { height: 360px; }
  .vtx-orbit-3 { width: 340px; height: 340px; }
  .vtx-orbit-2 { width: 270px; height: 270px; }
  .vtx-core-tag-3, .vtx-core-tag-6 { display: none; }
  .vtx-core-hud { position: static; transform: none; width: 100%; margin-top: 20px; }
  .vt-hero-premium .vtx-hero-metrics strong { font-size: 20px; }
}
@media (max-width: 575.98px) {
  .vtx-core-tag { font-size: 10px; padding: 5px 8px; }
  .vtx-hero-scanline { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .vtx-hero-aurora span, .vtx-hero-scanline, .vtx-orbit, .vtx-core-glow,
  .vtx-core-scan, .vtx-core-chip, .vtx-core-tag, .vtx-btn-glow::after,
  .vt-hero-premium .vtx-brand-title, .vtx-live-dot {
    animation: none !important;
  }
}

/* ---------------------------------------------------------------------------
   July 2026 UI refinements: tighter heroes, cleaner header merge, proof/process
   redesigns, career polish, and recruitment detail cards.
   ------------------------------------------------------------------------- */
body.nv-has-hero main > .nv-page-hero,
body.nv-has-hero main > header.nv-page-hero,
body.nv-has-hero main > .vt-hero {
  padding-top: 0;
}

.nv-navbar {
  padding: 8px 0;
}

.nv-navbar--hero {
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.90) 0%, rgba(2, 5, 10, 0.58) 58%, rgba(2, 5, 10, 0) 100%);
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.nv-navbar--scrolled,
.nv-navbar.scrolled,
body:not(.nv-hero-top) .nv-navbar {
  background: linear-gradient(135deg, rgba(3, 10, 18, 0.96), rgba(7, 20, 39, 0.96) 46%, rgba(2, 132, 199, 0.62) 100%);
  border-bottom-color: rgba(140, 196, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
}

.nv-nav-link,
.nv-navbar--hero .nv-nav-link,
.nv-navbar--scrolled .nv-nav-link,
.nv-navbar.scrolled .nv-nav-link,
body:not(.nv-hero-top) .nv-navbar .nv-nav-link {
  color: rgba(237, 244, 250, 0.88) !important;
}

.nv-nav-link:hover,
.nv-nav-link.active,
.nv-navbar--hero .nv-nav-link:hover,
.nv-navbar--hero .nv-nav-link.active,
.nv-navbar--scrolled .nv-nav-link:hover,
.nv-navbar--scrolled .nv-nav-link.active,
.nv-navbar.scrolled .nv-nav-link:hover,
.nv-navbar.scrolled .nv-nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
}

.nv-navbar .navbar-toggler-icon,
.nv-navbar--hero .navbar-toggler-icon,
.nv-navbar--scrolled .navbar-toggler-icon,
.nv-navbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.nv-page-hero,
.vt-hero {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.vt-page-hero-modern {
  min-height: 340px;
}

.vt-page-hero-modern .vt-hero-inner,
.nv-page-hero-inner {
  padding: calc(var(--nv-nav-offset, 76px) + 18px) 0 44px;
}

.vt-page-hero-modern h1 {
  font-size: 44px;
}

.vt-page-hero-modern p {
  font-size: 17px;
  line-height: 1.6;
}

.vtx-hero {
  min-height: 520px;
}

.vtx-hero-inner {
  padding: calc(var(--nv-nav-offset, 76px) + 26px) 0 26px;
}

.vtx-top-bars {
  margin-bottom: 18px;
}

.vtx-proof-strip {
  margin-top: 0;
  padding: 8px 0 18px;
  background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
}

.vtx-proof-grid {
  margin-top: 0;
  gap: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vtx-proof-item {
  position: relative;
  display: flex;
  gap: 16px;
  min-height: 0;
  padding: 18px 20px;
  border-right: 0;
  border-radius: 24px;
  border: 1px solid rgba(166, 185, 200, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 253, 0.90)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(5, 14, 24, 0.12);
}

.vtx-proof-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  right: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 111, 184, 0.88), rgba(47, 143, 224, 0.78), rgba(242, 106, 33, 0.74), rgba(245, 158, 11, 0.68));
}

.vtx-proof-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #0a2a5e, #1f6fb8, #f26a21);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.24);
}

.vtx-proof-copy {
  padding-top: 8px;
}

.vtx-proof-copy small {
  display: block;
  color: #0879c7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.vtx-proof-copy strong {
  display: block;
  margin-top: 8px;
  color: #07131d;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.vtx-proof-copy span {
  display: block;
  margin-top: 8px;
  color: #5e7081;
  font-size: 13px;
  font-weight: 700;
}

.vtx-process-board {
  gap: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.vtx-process-step {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  padding: 30px 26px 24px 32px;
  border-radius: 24px;
  border: 1px solid rgba(140, 196, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(5, 13, 24, 0.96), rgba(10, 28, 47, 0.96) 52%, rgba(3, 10, 18, 0.98));
  box-shadow: 0 28px 70px rgba(5, 14, 24, 0.22);
}

.vtx-process-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(140, 196, 255, 0.94), rgba(47, 143, 224, 0.72), rgba(242, 106, 33, 0.40));
}

.vtx-process-node {
  position: absolute;
  left: 12px;
  top: 22px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.36);
  background: #8fc7ff;
  box-shadow: 0 0 0 10px rgba(140, 196, 255, 0.10);
}

.vtx-process-step span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(140, 196, 255, 0.10);
  border: 1px solid rgba(140, 196, 255, 0.22);
}

.vtx-process-step h3,
.vtx-process-step p {
  max-width: 95%;
}

.vtx-careers {
  background:
    radial-gradient(circle at 8% 12%, rgba(31, 111, 184, 0.14), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(242, 106, 33, 0.10), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.vtx-career-aside {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vtx-career-aside div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(166, 185, 200, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(5, 14, 24, 0.08);
}

.vtx-career-aside strong {
  display: block;
  color: #07131d;
  font-size: 21px;
  font-weight: 900;
}

.vtx-career-aside span {
  display: block;
  margin-top: 6px;
  color: #5e7081;
  font-size: 12px;
  font-weight: 700;
}

.vtx-career-grid {
  display: grid;
  gap: 16px;
}

.vtx-career-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(166, 185, 200, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 253, 0.88)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(5, 14, 24, 0.10);
}

.vtx-career-card span {
  color: #0879c7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vtx-career-card h3 {
  margin: 10px 0 6px;
  color: #08131d;
  font-size: 23px;
  font-weight: 900;
}

.vtx-career-card h3 a:hover {
  color: #0a2a5e;
}

.vtx-career-card p {
  margin: 0;
  color: #5e7081;
}

.vtx-career-card a {
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #0a2a5e, #1f6fb8, #f26a21);
  box-shadow: 0 16px 34px rgba(2, 132, 199, 0.24);
}

.vt-premium-card {
  padding-top: 2rem !important;
}

.vt-card-accent {
  top: 12px;
  left: 18px;
  right: 18px;
  height: 4px;
  border-radius: 999px;
}

.vt-opening-card,
.vt-contact-panel,
.vt-contact-form-card,
.vt-leader-card,
.vt-detail-card {
  padding-top: 2.9rem !important;
}

.vt-opening-card > :not(.vt-card-accent):first-child,
.vt-contact-panel > :not(.vt-card-accent):first-child,
.vt-contact-form-card > :not(.vt-card-accent):first-child,
.vt-leader-card > :not(.vt-card-accent):first-child,
.vt-detail-card > :not(.vt-card-accent):first-child {
  margin-top: 0.35rem;
}

.vt-leader-card,
.vt-job-card {
  border-radius: 22px;
}

.vt-job-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  border: 1px solid rgba(166, 185, 200, 0.34);
  background:
    radial-gradient(circle at top right, rgba(31, 111, 184, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 254, 0.92));
  box-shadow: 0 24px 70px rgba(5, 14, 24, 0.10);
}

.vt-job-title-link {
  color: #08131d;
  text-decoration: none;
  background-image: linear-gradient(90deg, #0a2a5e, #f26a21);
  background-repeat: no-repeat;
  background-size: 0 3px;
  background-position: 0 100%;
  transition: color 160ms ease, background-size 160ms ease;
}

.vt-job-title-link:hover {
  color: #0a2a5e;
  background-size: 100% 3px;
}

.vt-job-secondary {
  border-color: rgba(2, 132, 199, 0.22);
  background: rgba(2, 132, 199, 0.06);
}

.vt-job-card .accordion-item {
  border-radius: 16px;
}

.vt-modal-premium,
.modal-content.vt-modal-premium {
  position: relative;
  z-index: 1091;
}

.modal-backdrop.show {
  z-index: 1090;
  opacity: 0.62;
}

.modal.show {
  z-index: 1095;
}

.vt-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1045;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.32);
}

.vt-whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.vt-whatsapp-float i {
  font-size: 20px;
}

.vt-related-opening {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(166, 185, 200, 0.32);
  background: rgba(255, 255, 255, 0.74);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.vt-related-opening strong {
  display: block;
  color: #08131d;
  font-size: 15px;
  font-weight: 900;
}

.vt-related-opening span {
  display: block;
  margin-top: 6px;
  color: #5e7081;
  font-size: 12px;
  font-weight: 700;
}

.vt-related-opening:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 132, 199, 0.28);
  box-shadow: 0 18px 40px rgba(5, 14, 24, 0.10);
}

@media (max-width: 1199.98px) {
  .vtx-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .vt-page-hero-modern {
    min-height: 300px;
  }

  .vt-page-hero-modern .vt-hero-inner,
  .nv-page-hero-inner {
    padding: calc(var(--nv-nav-offset, 76px) + 14px) 0 34px;
  }

  .vtx-hero {
    min-height: auto;
  }

  .vtx-hero-inner {
    padding: calc(var(--nv-nav-offset, 76px) + 18px) 0 18px;
  }

  .vtx-career-aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .vt-page-hero-modern {
    min-height: 260px;
  }

  .vt-page-hero-modern h1 {
    font-size: 34px;
  }

  .vtx-proof-grid,
  .vtx-process-board {
    grid-template-columns: 1fr;
  }

  .vtx-proof-item {
    min-height: auto;
  }

  .vtx-career-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .vtx-career-card a {
    width: 100%;
    text-align: center;
  }

  .vt-whatsapp-float span {
    display: none;
  }

  .vt-whatsapp-float {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }
}

/* ---------------------------------------------------------------------------
   July 2026 refinement pass 2: hero core package, compact proof cards,
   4-up services, homepage about/life sections, and icon-only WhatsApp.
   ------------------------------------------------------------------------- */
.vt-whatsapp-float {
  width: 58px;
  height: 58px;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
}

.vt-whatsapp-float span {
  display: none !important;
}

.vtx-core-chip {
  width: 190px;
  height: 190px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(140, 196, 255, 0.45);
  background:
    radial-gradient(circle at 50% 50%, rgba(140, 196, 255, 0.10), transparent 58%),
    linear-gradient(135deg, rgba(140, 196, 255, 0.14), rgba(242, 106, 33, 0.06)),
    #06111d;
  box-shadow:
    inset 0 0 36px rgba(140, 196, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.vtx-core-chip::before,
.vtx-core-chip::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(140, 196, 255, 0.10);
  pointer-events: none;
}

.vtx-core-chip::after {
  inset: 6px;
  border-style: dashed;
  border-color: rgba(140, 196, 255, 0.16);
  opacity: 0.8;
}

.vtx-chip-core {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(140, 196, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(140, 196, 255, 0.12), rgba(242, 106, 33, 0.04)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    rgba(8, 20, 32, 0.94);
  box-shadow: inset 0 0 32px rgba(140, 196, 255, 0.10);
}

.vtx-chip-core img {
  width: 94px;
  height: auto;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.vtx-chip-pin {
  position: absolute;
  z-index: 1;
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 196, 255, 0.18), rgba(124, 196, 255, 0.72), rgba(124, 196, 255, 0.18));
  box-shadow: 0 0 16px rgba(124, 196, 255, 0.22);
}

.vtx-chip-pin-tl { top: 24px; left: -18px; transform: rotate(90deg); }
.vtx-chip-pin-tr { top: 24px; right: -18px; transform: rotate(90deg); }
.vtx-chip-pin-bl { bottom: 24px; left: -18px; transform: rotate(90deg); }
.vtx-chip-pin-br { bottom: 24px; right: -18px; transform: rotate(90deg); }

.vtx-chip-circuit {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(140, 196, 255, 0.84), rgba(242, 106, 33, 0.56), transparent);
  box-shadow: 0 0 16px rgba(140, 196, 255, 0.20);
}

.vtx-chip-circuit-a { left: 12px; right: 22px; top: 42px; transform: rotate(-20deg); }
.vtx-chip-circuit-b { left: 20px; right: 18px; top: 96px; transform: rotate(14deg); }
.vtx-chip-circuit-c { left: 28px; right: 12px; bottom: 42px; transform: rotate(-10deg); }

.vtx-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vtx-proof-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  min-height: 178px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(144, 190, 214, 0.24);
  background:
    radial-gradient(circle at top right, rgba(31, 111, 184, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 253, 0.92));
  box-shadow: 0 22px 54px rgba(4, 17, 29, 0.10);
}

.vtx-proof-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vtx-proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffffff;
  font-size: 15px;
  background: linear-gradient(135deg, #0a2a5e, #1f6fb8, #f26a21);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.22);
}

.vtx-proof-item small {
  display: block;
  color: #0879c7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.vtx-proof-item strong {
  display: block;
  color: #07131d;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 900;
}

.vtx-proof-note {
  display: block;
  color: #5e7081;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.vtx-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vtx-service-card {
  min-height: 332px;
  padding: 28px 22px 22px;
  border-radius: 28px;
}

.vtx-service-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 104px;
  height: 92px;
  z-index: 0;
  border-bottom-right-radius: 44px;
  background:
    linear-gradient(135deg, rgba(31, 111, 184, 0.24), rgba(47, 143, 224, 0.12)),
    rgba(31, 111, 184, 0.06);
  border-right: 1px solid rgba(31, 111, 184, 0.12);
  border-bottom: 1px solid rgba(31, 111, 184, 0.12);
}

.vtx-service-card .vt-icon {
  margin-top: 8px;
}

.vtx-service-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.vtx-home-about {
  background:
    radial-gradient(circle at 10% 18%, rgba(31, 111, 184, 0.12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(242, 106, 33, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.vtx-home-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vtx-home-about-stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(166, 185, 200, 0.30);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(5, 14, 24, 0.08);
}

.vtx-home-about-stat strong {
  display: block;
  color: #07131d;
  font-size: 18px;
  font-weight: 900;
}

.vtx-home-about-stat span {
  display: block;
  margin-top: 8px;
  color: #5e7081;
  font-size: 12px;
  font-weight: 700;
}

.vtx-home-about-board {
  display: grid;
  gap: 16px;
}

.vtx-home-about-board article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(166, 185, 200, 0.32);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 253, 0.88));
  box-shadow: 0 24px 60px rgba(5, 14, 24, 0.10);
}

.vtx-home-about-board span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #0a2a5e, #1f6fb8, #f26a21);
  box-shadow: 0 16px 34px rgba(2, 132, 199, 0.22);
}

.vtx-home-about-board h3 {
  margin: 0 0 8px;
  color: #07131d;
  font-size: 21px;
  font-weight: 900;
}

.vtx-home-about-board p {
  margin: 0;
  color: #5e7081;
}

.vtx-life {
  background:
    radial-gradient(circle at 15% 18%, rgba(31, 111, 184, 0.22), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(242, 106, 33, 0.18), transparent 24%),
    linear-gradient(135deg, #07111b 0%, #0a1d30 50%, #06111d 100%);
}

.vtx-life .vt-section-title,
.vtx-life .vt-muted,
.vtx-life .vt-kicker {
  color: #ffffff;
}

.vtx-life .vt-muted {
  color: rgba(236, 248, 255, 0.74) !important;
}

.vtx-life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vtx-life-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(5, 13, 24, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.vtx-life-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 150px;
  background: linear-gradient(90deg, rgba(31, 111, 184, 0.16), rgba(47, 143, 224, 0.10), rgba(242, 106, 33, 0.08));
  transform: skewY(-6deg);
}

.vtx-life-card > * {
  position: relative;
  z-index: 1;
}

.vtx-life-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background: linear-gradient(135deg, #0a2a5e, #1f6fb8, #f26a21);
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.24);
}

.vtx-life-value {
  display: block;
  margin-top: 22px;
  color: #8fc7ff;
  font-size: 32px;
  font-weight: 900;
}

.vtx-life-card h3 {
  margin: 10px 0 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.vtx-life-card p {
  margin: 0;
  color: rgba(236, 248, 255, 0.76);
}

@media (max-width: 1199.98px) {
  .vtx-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .vtx-home-about-stats,
  .vtx-life-grid {
    grid-template-columns: 1fr;
  }

  .vtx-core-chip {
    width: 168px;
    height: 168px;
    padding: 18px;
  }
}

@media (max-width: 767.98px) {
  .vtx-proof-grid,
  .vtx-service-grid,
  .vtx-life-grid {
    grid-template-columns: 1fr;
  }

  .vtx-home-about-board article {
    grid-template-columns: 1fr;
  }

  .vtx-proof-item strong {
    font-size: 36px;
  }

  .vt-opening-card,
  .vt-contact-panel,
  .vt-contact-form-card,
  .vt-leader-card,
  .vt-detail-card {
    padding-top: 2.6rem !important;
  }
}

/* ===========================================================================
   HERO REDESIGN v3 — simple, elegant, reference-matched banner + animated chip
   ======================================================================== */
.vt-hero-premium.vtx-hero {
  min-height: 640px;
}
.vt-hero-premium .vtx-hero-inner {
  padding: 128px 0 84px;
}
.vtx-hero-canvas { opacity: 0.45; }

/* soft focal glow behind the chip side */
.vtx-hero-glow {
  position: absolute;
  z-index: 1;
  top: 50%; right: 6%;
  width: 620px; height: 620px;
  transform: translateY(-50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(47,143,224,0.28), rgba(10,42,94,0) 62%);
  filter: blur(8px);
}

/* left copy */
.vtx-hero-copy-col { position: relative; z-index: 3; }

.vt-hero-premium .vtx-hero-title {
  max-width: 560px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 12px 40px rgba(3, 14, 32, 0.55);
  animation: vt-stagger-in 0.9s ease-out 0.15s both;
}
.vt-hero-premium .vtx-hero-copy {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(217, 233, 247, 0.82);
  font-size: 16.5px;
  line-height: 1.7;
  animation: vt-stagger-in 0.9s ease-out 0.3s both;
}
.vt-hero-premium .vtx-hero-cta {
  margin-top: 30px;
  animation: vt-stagger-in 0.9s ease-out 0.45s both;
}
.vt-hero-premium .vtx-hero-cta .nv-btn { min-height: 50px; padding: 13px 26px; border-radius: 10px; font-size: 15px; }
.vt-hero-premium .nv-btn-outline {
  color: #eaf3fb;
  background: rgba(255,255,255,0.04);
  border-color: rgba(180, 214, 244, 0.5);
}
.vt-hero-premium .nv-btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(210, 232, 250, 0.85);
}

/* right chip visual */
.vtx-chip-visual {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  animation: vt-stagger-in 1s ease-out 0.4s both;
}
.vtx-chip-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  overflow: visible;
  animation: vtx-chip-float 7s ease-in-out infinite;
}
@keyframes vtx-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* chip animated parts */
.vtx-chip-svg .vtx-halo { transform-box: fill-box; transform-origin: center; animation: vtx-halo-pulse 5s ease-in-out infinite; }
@keyframes vtx-halo-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.06); }
}

.vtx-chip-svg .vtx-ring { transform-box: fill-box; transform-origin: center; opacity: 0; animation: vtx-ring-expand 4s ease-out infinite; }
.vtx-chip-svg .vtx-ring-1 { animation-delay: 0s; }
.vtx-chip-svg .vtx-ring-2 { animation-delay: 1.3s; }
.vtx-chip-svg .vtx-ring-3 { animation-delay: 2.6s; }
@keyframes vtx-ring-expand {
  0% { transform: scale(1); opacity: 0; }
  12% { opacity: 0.55; }
  100% { transform: scale(1.95); opacity: 0; }
}

.vtx-chip-svg .vtx-orbit-ring { transform-box: fill-box; transform-origin: center; animation: vtx-orbit-rotate 26s linear infinite; }
@keyframes vtx-orbit-rotate { to { transform: rotate(360deg); } }

.vtx-chip-svg .vtx-chip-core-rect { transform-box: fill-box; transform-origin: center; animation: vtx-core-glow2 3s ease-in-out infinite; }
@keyframes vtx-core-glow2 {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(63,160,255,0.5)); transform: scale(0.98); }
  50% { filter: drop-shadow(0 0 16px rgba(63,160,255,0.95)); transform: scale(1.03); }
}

/* traveling data pulses along traces */
.vtx-chip-svg .vtx-spark { opacity: 0; }
.vtx-chip-svg .vtx-spark-n { animation: vtx-spark-n 2.4s ease-in infinite; }
.vtx-chip-svg .vtx-spark-e { animation: vtx-spark-e 2.4s ease-in infinite 0.6s; }
.vtx-chip-svg .vtx-spark-s { animation: vtx-spark-s 2.4s ease-in infinite 1.2s; }
.vtx-chip-svg .vtx-spark-w { animation: vtx-spark-w 2.4s ease-in infinite 1.8s; }
@keyframes vtx-spark-n { 0%{transform:translateY(0);opacity:0} 15%{opacity:1} 100%{transform:translateY(-96px);opacity:0} }
@keyframes vtx-spark-s { 0%{transform:translateY(0);opacity:0} 15%{opacity:1} 100%{transform:translateY(96px);opacity:0} }
@keyframes vtx-spark-e { 0%{transform:translateX(0);opacity:0} 15%{opacity:1} 100%{transform:translateX(96px);opacity:0} }
@keyframes vtx-spark-w { 0%{transform:translateX(0);opacity:0} 15%{opacity:1} 100%{transform:translateX(-96px);opacity:0} }

@media (max-width: 991.98px) {
  .vt-hero-premium.vtx-hero { min-height: auto; }
  .vt-hero-premium .vtx-hero-inner { padding: 116px 0 68px; }
  .vtx-chip-visual { margin-top: 28px; }
  .vtx-chip-svg { max-width: 400px; }
  .vtx-hero-glow { display: none; }
}
@media (max-width: 575.98px) {
  .vtx-chip-svg { max-width: 320px; }
  .vt-hero-premium .vtx-hero-cta .nv-btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .vtx-chip-svg, .vtx-chip-svg * { animation: none !important; }
  .vtx-chip-svg .vtx-ring { opacity: 0; }
  .vtx-chip-svg .vtx-spark { opacity: 0; }
}
