/* ============================================================
   TECHNZONE VENTURES — Page CSS
   ventures.css — loaded after style.css
   ============================================================ */

/* ═══════════════════════════════════════
   SECTION 1: HERO
═══════════════════════════════════════ */
.vnt-hero {
  background: linear-gradient(150deg, #080810 0%, #110818 40%, #080c14 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vnt-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,72,95,0.13) 0%, transparent 68%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.vnt-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,238,226,0.05) 0%, transparent 70%);
  bottom: -60px; left: -80px;
  pointer-events: none;
}

.vnt-hero-grid {
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 72px;
  align-items: center;
}

/* Hero badge */
.vnt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(237,72,95,0.1);
  border: 1px solid rgba(237,72,95,0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.vnt-hero-tz {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.vnt-hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.vnt-hero-headline .accent { color: var(--primary); }

.vnt-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 500px;
  font-weight: 500;
}

.vnt-hero-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.vnt-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Hero Visual: Venture Ecosystem ── */
.vnt-hero-visual {
  position: relative;
  height: 560px;
}

.vnt-node-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.vnt-product-card {
  position: absolute;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatVnt 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 160px;
}

.vnt-product-card:nth-child(2) { animation-delay: -1.4s; animation-duration: 7s; }
.vnt-product-card:nth-child(3) { animation-delay: -2.8s; animation-duration: 5.5s; }
.vnt-product-card:nth-child(4) { animation-delay: -0.9s; animation-duration: 6.5s; }
.vnt-product-card:nth-child(5) { animation-delay: -3.5s; animation-duration: 7.5s; }
.vnt-product-card:nth-child(6) { animation-delay: -1.9s; animation-duration: 5.8s; }

@keyframes floatVnt {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

/* Per-venture hero card colors */
.vnt-pc-tajeer    { background: linear-gradient(135deg,rgba(15,76,117,0.9),rgba(27,156,252,0.6)); top:20px;  left:10px; }
.vnt-pc-menaplat  { background: linear-gradient(135deg,rgba(146,64,14,0.9),rgba(217,119,6,0.6));  top:10px;  right:5px; }
.vnt-pc-rafd      { background: linear-gradient(135deg,rgba(76,29,149,0.9),rgba(124,58,237,0.6)); top:175px; left:100px; }
.vnt-pc-sada      { background: linear-gradient(135deg,rgba(6,95,70,0.9),rgba(16,185,129,0.6));   top:200px; right:20px; }
.vnt-pc-ammni     { background: linear-gradient(135deg,rgba(30,58,138,0.9),rgba(59,130,246,0.6)); bottom:160px;left:20px; }
.vnt-pc-waslatech { background: linear-gradient(135deg,rgba(31,41,55,0.9),rgba(237,72,95,0.5));   bottom:80px; right:10px; }

.vnt-pc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vnt-pc-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}

.vnt-pc-cat {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   SECTION 2: POSITIONING
═══════════════════════════════════════ */
.vnt-positioning {
  background: var(--neutral);
  padding: 100px 0;
}

.vnt-pos-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 80px;
  align-items: center;
}

.vnt-pos-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.vnt-pos-headline .accent { color: var(--primary); }

.vnt-pos-text {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Journey steps */
.vnt-journey-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.vnt-journey-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vnt-journey-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(237,72,95,0.2);
}

.vnt-journey-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vnt-journey-step:nth-child(1) .vnt-journey-icon { background: rgba(237,72,95,0.08); color: var(--primary); }
.vnt-journey-step:nth-child(2) .vnt-journey-icon { background: rgba(124,58,237,0.08); color: #7C3AED; }
.vnt-journey-step:nth-child(3) .vnt-journey-icon { background: rgba(16,185,129,0.08); color: #10B981; }
.vnt-journey-step:nth-child(4) .vnt-journey-icon { background: rgba(217,119,6,0.08);  color: #D97706; }

.vnt-journey-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}

.vnt-journey-sub {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   SECTION 3: VENTURE CATEGORIES
═══════════════════════════════════════ */
.vnt-categories {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vnt-categories::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,72,95,0.07) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}

.vnt-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.vnt-cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.vnt-cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.vnt-cat-card:hover {
  background: rgba(237,72,95,0.06);
  border-color: rgba(237,72,95,0.25);
  transform: translateY(-4px);
}

.vnt-cat-card:hover::before { transform: scaleX(1); }

.vnt-cat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(237,72,95,0.12);
  border: 1px solid rgba(237,72,95,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.vnt-cat-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.vnt-cat-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SECTION 4: VENTURE CARDS
═══════════════════════════════════════ */
.vnt-ventures {
  background: #fff;
  padding: 100px 0;
}

.vnt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* Base venture card */
.vc {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  position: relative;
}

.vc:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.13);
}

/* Venture card header band */
.vc-header {
  position: relative;
  padding: 32px 28px 24px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vc-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.25) 100%);
}

/* Decorative background geometry */
.vc-header-geo {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: 0.12;
  transition: transform 0.5s ease;
}

.vc:hover .vc-header-geo { transform: scale(1.15); }

.vc-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Venture logo / wordmark */
.vc-wordmark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.vc-category-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.vc-header-bottom {
  position: relative;
  z-index: 1;
}

.vc-tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

.vc-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* Venture card body */
.vc-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

.vc-venture-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.vc-headline {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.45;
  margin-bottom: 14px;
}

.vc-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.vc-highlights {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vc-highlights li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vc-highlights li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-start;
  border: 2px solid transparent;
}

.vc-cta:hover {
  transform: translateX(3px);
  gap: 12px;
}

.vc-cta i { font-size: 0.8rem; transition: transform 0.2s ease; }
.vc-cta:hover i { transform: translateX(2px); }

.vc-cta-soon {
  cursor: default;
  opacity: 0.65;
}

.vc-cta-soon:hover { transform: none; gap: 8px; }

/* ═══════════════════════════════════════
   VENTURE BRAND IDENTITIES
═══════════════════════════════════════ */

/* — TAJEER — brand blue #0034AF */
.vc-tajeer .vc-header {
  background: linear-gradient(135deg, #001A5C 0%, #0026A0 50%, #0034AF 100%);
}
.vc-tajeer .vc-header-geo { background: #4D79FF; }
.vc-tajeer .vc-highlights li::before { background: #0034AF; }
.vc-tajeer .vc-cta {
  background: rgba(0,52,175,0.07);
  color: #0034AF;
  border-color: rgba(0,52,175,0.22);
}
.vc-tajeer .vc-cta:hover {
  background: #0034AF;
  color: #fff;
  border-color: #0034AF;
}

/* — MENAPLAT — purple #500BFF + teal #00CFB1 */
.vc-menaplat .vc-header {
  background: linear-gradient(135deg, #1A0070 0%, #3A08CC 50%, #500BFF 100%);
}
.vc-menaplat .vc-header-geo { background: #00CFB1; }
.vc-menaplat .vc-highlights li::before { background: #500BFF; }
.vc-menaplat .vc-cta {
  background: rgba(80,11,255,0.07);
  color: #500BFF;
  border-color: rgba(80,11,255,0.22);
}
.vc-menaplat .vc-cta:hover {
  background: #500BFF;
  color: #fff;
  border-color: #500BFF;
}

/* — RAFD AI — orange #F05522, warm cream body #F5EEE1 */
.vc-rafd .vc-header {
  background: linear-gradient(135deg, #2A0E00 0%, #8C2E08 50%, #F05522 100%);
}
.vc-rafd .vc-header-geo { background: #F5EEE1; }
.vc-rafd .vc-highlights li::before { background: #F05522; }
.vc-rafd .vc-cta {
  background: rgba(240,85,34,0.08);
  color: #B83D10;
  border-color: rgba(240,85,34,0.25);
}
.vc-rafd .vc-cta:hover {
  background: #F05522;
  color: #fff;
  border-color: #F05522;
}

/* — SADA — purple #8300C1 */
.vc-sada .vc-header {
  background: linear-gradient(135deg, #3D0060 0%, #660099 50%, #8300C1 100%);
}
.vc-sada .vc-header-geo { background: #C466FF; }
.vc-sada .vc-highlights li::before { background: #8300C1; }
.vc-sada .vc-cta {
  background: rgba(131,0,193,0.07);
  color: #8300C1;
  border-color: rgba(131,0,193,0.22);
}
.vc-sada .vc-cta:hover {
  background: #8300C1;
  color: #fff;
  border-color: #8300C1;
}

/* — AMMNI — blue #0066CC */
.vc-ammni .vc-header {
  background: linear-gradient(135deg, #002D6B 0%, #004EA8 50%, #0066CC 100%);
}
.vc-ammni .vc-header-geo { background: #4DA6FF; }
.vc-ammni .vc-highlights li::before { background: #0066CC; }
.vc-ammni .vc-cta {
  background: rgba(0,102,204,0.07);
  color: #0066CC;
  border-color: rgba(0,102,204,0.22);
}
.vc-ammni .vc-cta:hover {
  background: #0066CC;
  color: #fff;
  border-color: #0066CC;
}

/* — WASLATECH — deep purple #4A2364 */
.vc-waslatech .vc-header {
  background: linear-gradient(135deg, #1A0A28 0%, #361852 50%, #4A2364 100%);
}
.vc-waslatech .vc-header-geo { background: #9B5DE5; }
.vc-waslatech .vc-highlights li::before { background: #4A2364; }
.vc-waslatech .vc-cta {
  background: rgba(74,35,100,0.07);
  color: #4A2364;
  border-color: rgba(74,35,100,0.22);
}
.vc-waslatech .vc-cta:hover {
  background: #4A2364;
  color: #fff;
  border-color: #4A2364;
}

/* — PROCURE — enterprise green #059669 */
.vc-procure .vc-header {
  background: linear-gradient(135deg, #022C22 0%, #064E3B 50%, #065F46 100%);
}
.vc-procure .vc-header-geo { background: #34D399; }
.vc-procure .vc-highlights li::before { background: #059669; }
.vc-procure .vc-cta {
  background: rgba(5,150,105,0.07);
  color: #047857;
  border-color: rgba(5,150,105,0.22);
}
.vc-procure .vc-cta:hover {
  background: #059669;
  color: #fff;
  border-color: #059669;
}

/* Venture logo image inside card header */
.vc-logo-img {
  height: 28px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTION 5: VENTURE-BUILDING PROCESS
═══════════════════════════════════════ */
.vnt-process {
  background: var(--neutral);
  padding: 100px 0;
  overflow: hidden;
}

.vnt-process-intro {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.vnt-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding-top: 60px;
}

/* Connecting line */
.vnt-process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(237,72,95,0.2));
  z-index: 0;
}

.vnt-ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.vnt-ps-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.vnt-ps.active .vnt-ps-dot,
.vnt-ps:hover .vnt-ps-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(237,72,95,0.12);
  transform: scale(1.1);
}

.vnt-ps-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.vnt-ps-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.vnt-ps-text {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Animated process line */
.vnt-process-line-wrap {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  border-radius: 2px;
}

.vnt-process-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), rgba(237,72,95,0.4));
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════
   SECTION 6: PRODUCT PHILOSOPHY
═══════════════════════════════════════ */
.vnt-philosophy {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vnt-philosophy::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,72,95,0.09) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}

.vnt-phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.vnt-phil-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.vnt-phil-card:hover {
  background: rgba(237,72,95,0.06);
  border-color: rgba(237,72,95,0.22);
  transform: translateY(-4px);
}

.vnt-phil-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(237,72,95,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.vnt-phil-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.vnt-phil-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SECTION 7: PARTNER CTA
═══════════════════════════════════════ */
.vnt-partner {
  background: linear-gradient(135deg, #0F0A1E 0%, #1A0A12 50%, #0A0F1E 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.vnt-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(237,72,95,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.vnt-partner-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vnt-partner-headline {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.vnt-partner-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 36px;
}

.vnt-partner-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Partner audience pills */
.vnt-partner-audience {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vnt-audience-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.vnt-audience-card:hover {
  background: rgba(237,72,95,0.08);
  border-color: rgba(237,72,95,0.25);
}

.vnt-audience-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(237,72,95,0.12);
  border: 1px solid rgba(237,72,95,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vnt-audience-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.vnt-audience-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   SECTION 8: FINAL CTA
═══════════════════════════════════════ */
.vnt-final-cta {
  background: var(--secondary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vnt-final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.vnt-final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.vnt-final-cta-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.vnt-final-cta-text {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ═══════════════════════════════════════
   UTILITIES & OVERRIDES
═══════════════════════════════════════ */
.vnt-ventures .section-eyebrow,
.vnt-positioning .section-eyebrow { color: var(--primary); }

.vnt-categories .section-title,
.vnt-philosophy .section-title { color: #fff; }

.vnt-categories .section-desc,
.vnt-philosophy .section-desc { color: rgba(255,255,255,0.52); }

/* Venture count badge */
.vnt-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 5px 14px;
  margin-top: 16px;
}

.vnt-count-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Dark section overrides */
.vnt-categories .section-eyebrow { color: var(--primary); }
.vnt-philosophy .section-eyebrow { color: var(--primary); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .vnt-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .vnt-hero-visual { height: 380px; }
  .vnt-pos-grid { grid-template-columns: 1fr; gap: 48px; }
  .vnt-grid { grid-template-columns: repeat(2, 1fr); }
  .vnt-process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .vnt-process-steps::before,
  .vnt-process-line-wrap { display: none; }
  .vnt-partner-grid { grid-template-columns: 1fr; gap: 48px; }
  .vnt-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vnt-hero { min-height: auto; padding: 140px 0 80px; }
  .vnt-hero-visual { height: 300px; }
  .vnt-product-card.vnt-pc-rafd,
  .vnt-product-card.vnt-pc-waslatech { display: none; }
  .vnt-grid { grid-template-columns: 1fr; }
  .vnt-phil-grid { grid-template-columns: repeat(2, 1fr); }
  .vnt-process-steps { grid-template-columns: 1fr; padding-top: 0; }
  .vnt-journey-steps { grid-template-columns: 1fr; }
  .vc-header { min-height: 140px; }
}

@media (max-width: 540px) {
  .vnt-cat-grid { grid-template-columns: 1fr; }
  .vnt-phil-grid { grid-template-columns: 1fr; }
  .vnt-hero-visual { display: none; }
  .vnt-process-steps { grid-template-columns: 1fr; }
}
