/* =============================================
   PARKAR.IN - Vector Overview Page Styles
   css/vector.css
   ============================================= */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #060914;
  color: #ffffff;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Variables ─── */
:root {
  --vec-bg:        #060914;
  --vec-bg-2:      #0a0f1e;
  --vec-bg-3:      #0d1428;
  --vec-blue:      #3A5BD9;
  --vec-blue-2:    #4F72FF;
  --vec-purple:    #6B4FBB;
  --vec-teal:      #1BAE9F;
  --vec-teal-dark: #13877b;
  --vec-white:     #ffffff;
  --vec-gray:      rgba(255,255,255,0.62);
  --vec-gray-dim:  rgba(255,255,255,0.35);
  --vec-border:    rgba(255,255,255,0.08);
  --font-head:     'Montserrat', 'Inter', sans-serif;
  --font-body:     'Open Sans', sans-serif;
}

/* ─── Utilities ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.vec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vec-teal);
  margin-bottom: 18px;
}

.vec-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vec-teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
}
.vec-btn-primary:hover { background: var(--vec-teal-dark); transform: translateY(-1px); }

.vec-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.vec-btn-outline:hover { border-color: var(--vec-teal); background: rgba(27,174,159,0.1); }

/* Scroll-reveal */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-up.visible, .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Float keyframe */
@keyframes vecFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes vecFloatSlow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
/* Hero active line pulse */
@keyframes vecLinePulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.8; }
}

/* ═══════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════ */
.vec-hero {
  position: relative;
  z-index: 5;
  padding-top: 160px;
  padding-bottom: 0;
  overflow: hidden;
  background-image: url('https://cdn.prod.website-files.com/66fa50f0631f1401a2a41200/6790fc6ec0077c88fae7cf66_bg-gradient.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

.vec-hero-inner {
  width: 90%;
  max-width: 1313px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.vec-hero-content {
  max-width: 800px;
  margin-bottom: 0;
}
.vec-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 22px;
}
.vec-hero-content p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.vec-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual wrapper — provides position:relative context for the lines overlay */
.vec-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
}

/* Hero visual — clean 3-column grid, no absolutely-positioned children */
.vec-hero-visual {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 24px;
  align-items: center;
}

.vec-hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.vec-hero-side.right { align-items: flex-end; }

.vec-hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  width: fit-content;
  animation: vecFloat 4s ease-in-out infinite;
}
.vec-hero-badge:nth-child(2) { animation-delay: -1.5s; }
.vec-hero-badge img.badge-icon { width: 40px; height: 40px; }
.vec-hero-badge img.badge-host {
  width: 160px;
  height: auto;
  border-radius: 6px;
}
.vec-hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.vec-hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}

.vec-hero-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: vecFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(79,114,255,0.4));
}

/* Line decorators */
.vec-lines-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.vec-line-svg { width: 100%; height: 100%; position: absolute; inset: 0; }

/* Full-width overlay for line connectors — absolute inside vec-hero-visual-wrap, not inside the grid */
.vec-lines-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.vec-line-full {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.5;
}

.vec-line {
  position: absolute;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}

.vec-line-left {
  left: 0;
  width: 50%;
}

.vec-line-right {
  right: 0;
  width: 50%;
}

.vec-line-right-2 {
  top: calc(50% + 40px);
}

.vec-line-active {
  animation: vecLinePulse 2s ease-in-out infinite;
}

/* Also ensure side badges render above lines */
.vec-hero-side { z-index: 2; }

/* Scroll indicator */
.vec-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin: 8px auto 0;
}
.vec-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
}
.vec-scroll-pill {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.vec-scroll-dot {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.65);
  border-radius: 3px;
  animation: vecScrollDot 2.2s ease-in-out infinite;
}
@keyframes vecScrollDot {
  0%       { transform: translateX(-50%) translateY(0);    opacity: 1;   }
  60%      { transform: translateX(-50%) translateY(12px); opacity: 0.2; }
  100%     { transform: translateX(-50%) translateY(0);    opacity: 1;   }
}

/* ── Floating Cards (shown first, then disappear) ── */
.vec-float-cards {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
  animation: vecFloatOut 0.8s 3.8s ease-in forwards;
}

.vec-float-card {
  flex: 1;
  border-radius: 12px;
  overflow: visible;
  background: #0c1222;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  position: relative;
}

.vec-fc-bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Host images overlaid on each card */
.vec-fc-host {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
}

.vec-fc-host-infra {
  width: 55%;
  bottom: -8%;
  right: -10%;
  animation: vecHostFloat 4s ease-in-out infinite;
}

.vec-fc-host-mouse {
  width: 20%;
  bottom: 25%;
  right: 20%;
  animation: vecHostFloat 3.5s ease-in-out infinite;
  animation-delay: -1s;
  border-radius: 0;
  box-shadow: none;
}

.vec-fc-host-app {
  width: 25%;
  bottom: -5%;
  right: -8%;
  animation: vecHostFloat 4s ease-in-out infinite;
  animation-delay: -2s;
}

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

/* Staggered entrance + individual exit */
.vec-fc-1 { animation: vecFcIn1 0.7s 0.2s cubic-bezier(0.16,1,0.3,1) both, vecFcOut1 0.8s 3.2s cubic-bezier(0.7,0,0.3,1) forwards; }
.vec-fc-2 { animation: vecFcIn2 0.7s 0.5s cubic-bezier(0.16,1,0.3,1) both, vecFcOut2 0.8s 3.4s cubic-bezier(0.7,0,0.3,1) forwards; }
.vec-fc-3 { animation: vecFcIn3 0.7s 0.8s cubic-bezier(0.16,1,0.3,1) both, vecFcOut3 0.8s 3.2s cubic-bezier(0.7,0,0.3,1) forwards; }

/* Infrastructure enters from left */
@keyframes vecFcIn1 {
  from { opacity: 0; transform: translateX(-60px) scale(0.88) rotate(-2deg); }
  to   { opacity: 1; transform: translateX(0) scale(1) rotate(0); }
}

/* Security enters from bottom */
@keyframes vecFcIn2 {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Application enters from right */
@keyframes vecFcIn3 {
  from { opacity: 0; transform: translateX(60px) scale(0.88) rotate(2deg); }
  to   { opacity: 1; transform: translateX(0) scale(1) rotate(0); }
}

/* Infrastructure exits — rotates + flies right */
@keyframes vecFcOut1 {
  30%  { transform: scale(1.03); }
  100% { opacity: 0; transform: translateX(120px) scale(0.85) rotate(4deg); }
}

/* Security exits — shrinks + drops */
@keyframes vecFcOut2 {
  30%  { transform: scale(1.03); }
  100% { opacity: 0; transform: translateY(60px) scale(0.8); }
}

/* Application exits — rotates + flies left */
@keyframes vecFcOut3 {
  30%  { transform: scale(1.03); }
  100% { opacity: 0; transform: translateX(-120px) scale(0.85) rotate(-4deg); }
}

/* Container collapses after cards exit */
@keyframes vecFloatOut {
  0%   { max-height: 600px; }
  50%  { max-height: 600px; opacity: 0; }
  100% { max-height: 0; padding: 0; margin: 0; overflow: hidden; opacity: 0; }
}

/* ── Hero Image Composition ── */
.vec-hero-image-wp {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: vecDashReveal 0.8s 4s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes vecDashReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dashboard SVG — the full UI that sits behind */
.vec-hi-dash {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 6px;
}

/* 3 cards embedded inside dashboard content area */
.vec-hi-overlay {
  position: absolute;
  top: 15%;
  right: 1.5%;
  bottom: 1.5%;
  left: 21%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5%;
}

.vec-hi-card {
  border-radius: 6px;
  overflow: hidden;
  background: #0a0f1c;
  border: 1px solid rgba(255,255,255,0.06);
}

.vec-hi-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* Infrastructure — top left, takes more width */
.vec-hi-card-1 {
  grid-column: 1;
  grid-row: 1;
  animation: vecCardIn 0.5s 0.3s ease-out both;
}

/* Security — top right */
.vec-hi-card-2 {
  grid-column: 2;
  grid-row: 1;
  animation: vecCardIn 0.5s 0.6s ease-out both;
}

/* Application — bottom, spans full width */
.vec-hi-card-3 {
  grid-column: 1 / -1;
  grid-row: 2;
  animation: vecCardIn 0.5s 0.9s ease-out both;
}

@keyframes vecCardIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vec-dash-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--vec-bg), transparent);
  pointer-events: none;
}

/* AI badge at bottom of hero */
.vec-hero-ai-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,91,217,0.18);
  border: 1px solid rgba(79,114,255,0.3);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  margin: 0 auto 0;
  width: fit-content;
}
.vec-hero-ai-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vec-blue-2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   2. TRUSTED BY TICKER
   ═══════════════════════════════════════════ */
.vec-trusted {
  padding: 56px 0;
  background: var(--vec-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.vec-trusted-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
}

.vec-ticker-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.vec-ticker-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: vecTicker 45s linear infinite;
}
.vec-ticker-track:hover { animation-play-state: paused; }

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

.vec-ticker-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.vec-ticker-logo:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════
   3. UNIFIED SOLUTION (THREE DOMAINS)
   ═══════════════════════════════════════════ */
.vec-unified {
  padding: 100px 0;
  background: var(--vec-bg);
}

.vec-unified-head {
  text-align: center;
  margin-bottom: 64px;
}
.vec-unified-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.vec-domains-wrapper {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 520px;
}

/* Tab navigation */
.vec-tabs-nav {
  display: flex;
  flex-direction: column;
  background: var(--vec-bg-2);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.vec-tab-btn {
  padding: 36px 32px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.45);
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  position: relative;
}
.vec-tab-btn:last-child { border-bottom: none; flex: 1; }

.vec-tab-btn.active {
  background: rgba(58,91,217,0.12);
  color: #fff;
}
.vec-tab-btn.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--vec-blue-2), var(--vec-teal));
  border-radius: 0 2px 2px 0;
}

.vec-tab-btn h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.3s;
}
.vec-tab-btn.active h3 { color: #fff; }

.vec-tab-btn .tab-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, color 0.3s;
}
.vec-tab-btn.active .tab-desc {
  max-height: 80px;
  color: rgba(255,255,255,0.6);
}

/* Tab panel */
.vec-tabs-content {
  position: relative;
  background: var(--vec-bg-3);
  overflow: hidden;
}

.vec-tab-panel {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.vec-tab-panel.active { display: flex; }

.vec-tab-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  pointer-events: none;
}

.vec-tab-panel-visuals {
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.vec-tab-float-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.vec-tab-img-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  animation: vecFloatSlow 3.5s ease-in-out infinite;
  backdrop-filter: blur(6px);
}
.vec-tab-img-card:nth-child(2) { animation-delay: -1.2s; }
.vec-tab-img-card:nth-child(3) { animation-delay: -2.4s; }
.vec-tab-img-card img { max-width: 200px; height: auto; border-radius: 8px; }

/* ═══════════════════════════════════════════
   4. STATS SECTION
   ═══════════════════════════════════════════ */
.vec-stats {
  padding: 100px 0;
  background: var(--vec-bg-2);
  position: relative;
  overflow: hidden;
}

.vec-stats-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,91,217,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vec-stats-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.vec-stats-head {
  margin-bottom: 64px;
}
.vec-stats-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.vec-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.vec-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.vec-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vec-blue-2), var(--vec-teal));
  border-radius: 16px 16px 0 0;
}
.vec-stat-card:hover { border-color: rgba(255,255,255,0.18); }

.vec-stat-prefix {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.vec-stat-number {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #4F72FF 0%, #1BAE9F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.vec-stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

.vec-stats-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vec-stats-tagline {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  letter-spacing: -0.2px;
}

/* ═══════════════════════════════════════════
   5. DRIVING VALUE (BEFORE / AFTER)
   ═══════════════════════════════════════════ */
.vec-value {
  padding: 100px 0;
  background: var(--vec-bg);
}

.vec-value-head {
  text-align: center;
  margin-bottom: 56px;
}
.vec-value-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
}

/* Toggle */
.vec-toggle-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.vec-toggle-group {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.vec-tog-btn {
  padding: 12px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.vec-tog-btn.active {
  background: var(--vec-blue);
  color: #fff;
}

/* Panels */
.vec-value-panel { display: none; }
.vec-value-panel.active { display: block; }

.vec-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vec-persona-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.vec-persona-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.vec-persona-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vec-persona-icon { width: 42px; height: 42px; flex-shrink: 0; }
.vec-persona-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.vec-persona-info {}
.vec-persona-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.vec-persona-role {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.vec-persona-body {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vec-tool-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.vec-tool-chip img { width: 18px; height: 18px; }

/* After state styling */
.vec-value-after .vec-persona-card {
  border-color: rgba(27,174,159,0.15);
}
.vec-value-after .vec-persona-header {
  background: linear-gradient(135deg, rgba(58,91,217,0.1), rgba(27,174,159,0.1));
}
.vec-value-after .vec-tool-chip {
  border-color: rgba(27,174,159,0.2);
  background: rgba(27,174,159,0.06);
  color: rgba(255,255,255,0.75);
}

.vec-after-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(58,91,217,0.12), rgba(27,174,159,0.08));
  border: 1px solid rgba(79,114,255,0.2);
  border-radius: 10px;
  margin-bottom: 32px;
}
.vec-after-banner img { height: 28px; width: auto; }
.vec-after-banner span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════
   6. READINESS TEST CTA
   ═══════════════════════════════════════════ */
.vec-readiness {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(58,91,217,0.15) 0%, rgba(27,174,159,0.08) 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vec-readiness-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.vec-readiness-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 36px;
}
.vec-readiness-inner h2 span { color: var(--vec-teal); }

/* ═══════════════════════════════════════════
   7. CUSTOMER STORIES
   ═══════════════════════════════════════════ */
.vec-stories {
  padding: 100px 0;
  background: var(--vec-bg);
  overflow: hidden;
}

.vec-stories-head {
  text-align: center;
  margin-bottom: 64px;
}
.vec-stories-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
}

.vec-stories-ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.vec-stories-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: storiesTicker 32s linear infinite;
}
.vec-stories-track:hover { animation-play-state: paused; }
@keyframes storiesTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vec-story-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 24px;
  width: 270px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s ease;
}
.vec-story-card:hover { border-color: rgba(255,255,255,0.2); }

.vec-story-logo-wrap {
  display: flex;
  align-items: center;
  height: 32px;
}
.vec-story-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.vec-story-metric {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.vec-story-metric-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #4F72FF, #1BAE9F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   8. INTEGRATION GRID
   ═══════════════════════════════════════════ */
.vec-integration {
  padding: 100px 0;
  background: var(--vec-bg-2);
}

.vec-integration-head {
  text-align: center;
  margin-bottom: 64px;
}
.vec-integration-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
}

.vec-int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}

.vec-int-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 12px 20px;
  transition: all 0.3s ease;
  cursor: default;
}
.vec-int-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.vec-int-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.vec-int-item:hover .vec-int-icon { opacity: 0.85; }

.vec-int-name {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════════
   9. FINAL CTA
   ═══════════════════════════════════════════ */
.vec-final-cta {
  padding: 100px 0;
  background: var(--vec-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vec-final-cta-img-l,
.vec-final-cta-img-r {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  width: 40%;
  opacity: 0.45;
}
.vec-final-cta-img-l { left: 0; }
.vec-final-cta-img-r { right: 0; }

.vec-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.vec-final-cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.vec-final-cta-inner p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   CHALLENGES SECTION
   ═══════════════════════════════════════════ */
.vec-challenges {
  padding: 100px 0;
  background: var(--vec-bg-2);
  position: relative;
}
.vec-challenges-head {
  text-align: center;
  margin-bottom: 64px;
}
.vec-challenges-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
}

.vec-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
}

.vec-challenge-card {
  background: rgba(255,255,255,0.03);
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
  position: relative;
}
.vec-challenge-card:hover { background: rgba(255,255,255,0.06); }
.vec-challenge-card:nth-child(3),
.vec-challenge-card:nth-child(6) { border-right: none; }
.vec-challenge-card:nth-child(4),
.vec-challenge-card:nth-child(5),
.vec-challenge-card:nth-child(6) { border-bottom: none; }

.vec-challenge-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  object-fit: contain;
}
.vec-challenge-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.vec-challenge-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   THREE DOMAINS — CARD GRID (replaces tabs)
   ═══════════════════════════════════════════ */
.vec-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vec-domain-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background: var(--vec-bg-3);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.vec-domain-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.vec-domain-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
}

.vec-domain-header {
  position: relative;
  z-index: 1;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vec-domain-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.vec-domain-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.vec-domain-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vec-teal);
}
.vec-domain-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}
.vec-domain-header p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.vec-domain-visuals {
  position: relative;
  z-index: 1;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.vec-domain-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  animation: vecFloatSlow 4s ease-in-out infinite;
}
.vec-domain-img:nth-child(2) { animation-delay: -2s; max-width: 220px; }

/* ═══════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════ */
.vec-features {
  padding: 100px 0;
  background: var(--vec-bg);
}
.vec-features-head {
  text-align: center;
  margin-bottom: 64px;
}
.vec-features-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.vec-features-head p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.vec-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vec-features-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.vec-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.vec-feature-card:hover {
  border-color: rgba(79,114,255,0.3);
  background: rgba(255,255,255,0.05);
}
.vec-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vec-blue-2), var(--vec-teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.vec-feature-card:hover::before { opacity: 1; }

.vec-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(79,114,255,0.1);
  border: 1px solid rgba(79,114,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.vec-feature-icon svg { width: 22px; height: 22px; color: var(--vec-blue-2); }

.vec-feature-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.vec-feature-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}
.vec-feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.vec-feature-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vec-teal);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vec-hero-visual { grid-template-columns: 180px 1fr 180px; }
}

@media (max-width: 960px) {
  .vec-challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .vec-domains-grid { grid-template-columns: 1fr; }
  .vec-features-grid { grid-template-columns: repeat(2, 1fr); }
  .vec-features-grid-bottom { grid-template-columns: 1fr; max-width: 480px; }
  .vec-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .vec-hero-visual { grid-template-columns: 1fr; gap: 16px; }
  .vec-hero-side { display: none; }
  .vec-hero-image-wp { width: 95%; }
  .vec-hi-overlay { left: 18%; gap: 1%; }
  .vec-stats-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 60px; }
  .vec-int-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .vec-challenge-grid { grid-template-columns: 1fr; }
  .vec-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vec-hero-content h1 { font-size: 28px; }
  .vec-hero-actions { flex-direction: column; width: 100%; }
  .vec-btn-primary, .vec-btn-outline { width: 100%; justify-content: center; }
}
