/* --- Apex Works Hero Section (Default System Fonts Only) --- */
.apex-works-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
  background-color: #030712;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* Background Video Backdrop */
.apex-video-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.apex-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) contrast(1.2);
  transform: scale(1.04);
}

.apex-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 40%, rgba(3, 7, 18, 0.4) 0%, rgba(3, 7, 18, 0.94) 85%),
              linear-gradient(to top, #030712 0%, transparent 60%);
  z-index: 1;
}

/* Inner Centered Layout */
.apex-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: apexFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Badge */
.apex-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #818cf8;
  margin-bottom: 24px;
}

.apex-dot {
  width: 6px;
  height: 6px;
  background-color: #818cf8;
  border-radius: 50%;
  box-shadow: 0 0 10px #818cf8;
  animation: apexPulse 2s infinite;
}

@keyframes apexPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Typography */
.apex-main-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.apex-gradient-target {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.apex-subtitle {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 40px;
  max-width: 640px;
}

/* Action Buttons */
.apex-cta-container {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.apex-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

.apex-btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.55);
}

.apex-btn-solid svg {
  transition: transform 0.3s ease;
}

.apex-btn-solid:hover svg {
  transform: translateX(4px);
}

.apex-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apex-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Floating Interactive Model Pills Bar */
.apex-floating-models-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.model-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.model-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
}

.pill-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  font-size: 1rem;
}

.pill-info {
  display: flex;
  flex-direction: column;
}

.pill-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
}

.pill-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f3f4f6;
  margin-top: 1px;
}

@keyframes apexFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .apex-floating-models-bar {
    flex-direction: column;
    width: 100%;
  }
  .model-pill {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Section 2 Starts  */

/* --- DeeGenex Works Content Section (Default Light Background & Animations) --- */
.deegenex-works-content-section {
  position: relative;
  width: 100%;
  padding: 110px 6%;
  background-color: #f8fafc; /* Clean default light background */
  color: #0f172a;
  overflow: hidden;
}

.works-content-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge */
.content-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 24px;
  animation: contentFadeDown 0.8s ease forwards;
}

.badge-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  animation: lightPulseDot 2s infinite;
}

@keyframes lightPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Main Heading */
.content-main-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
  max-width: 900px;
  animation: contentFadeDown 0.8s ease 0.1s forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-fill-mode: forwards;
}

.highlight-gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Lead Paragraph */
.content-lead-paragraph {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #475569;
  max-width: 780px;
  margin-bottom: 50px;
  animation: contentFadeDown 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-fill-mode: forwards;
}

/* Services Bubble Grid */
.content-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin-bottom: 45px;
  animation: contentFadeDown 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-fill-mode: forwards;
}

.service-bubble {
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-bubble a{color: #1e293b;}
.service-bubble:hover{
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}
.service-bubble a:hover{
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.wide-bubble {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
}

.wide-bubble:hover {
  background: #1d4ed8;
  color: #ffffff;
}

/* Regional Focus Card */
.content-focus-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 850px;
  margin-bottom: 45px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: contentFadeDown 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-fill-mode: forwards;
}

.content-focus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07);
  border-color: #cbd5e1;
}

.focus-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.focus-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

.focus-text strong {
  color: #0f172a;
}

/* Footer Banner Box */
.content-footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 850px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  animation: contentFadeDown 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-fill-mode: forwards;
}

.footer-cta-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  max-width: 650px;
  line-height: 1.5;
}

.content-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-explore-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.45);
}

.content-explore-btn svg {
  transition: transform 0.3s ease;
}

.content-explore-btn:hover svg {
  transform: translateX(4px);
}

@keyframes contentFadeDown {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-focus-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .content-services-grid {
    gap: 8px;
  }
  .service-bubble {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
  .deegenex-works-content-section {
    padding: 80px 5%;
  }
}

/* Section 2 Ends  */

/* Section 3 Starts  */

/* --- Modern Image Cards Showcase (Default Light Background) --- */
.visual-cards-showcase {
  position: relative;
  width: 85%;
  padding: 120px 6%;
  background-color: #f8fafc; /* Clean default light background */
  color: #0f172a;
  overflow: hidden;
  margin: 0 auto;
}

.vcs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header */
.vcs-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.vcs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 20px;
}

.vcs-pulse {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  animation: vcsPulseDot 2s infinite;
}

@keyframes vcsPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.vcs-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}

.vcs-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vcs-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #475569;
}

/* Grid Layout */
.vcs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card Style */
.vcs-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  height: auto;
}

.vcs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.vcs-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

/* Image Wrapper */
.vcs-image-wrapper {
  position: relative;
  height: 17rem;
  width: 100%;
  overflow: hidden;
  background: #e2e8f0;
}

.vcs-card-wide .vcs-image-wrapper {
  height: 100%;
  min-height: 260px;
}

.vcs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vcs-card:hover .vcs-img {
  transform: scale(1.05);
}

.vcs-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 2;
}
.vcs-image-wrapper {
  position: relative;
  overflow: hidden;
}

.vcs-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vcs-image-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Card Content */
.vcs-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vcs-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.vcs-content p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
  flex: 1;
}

/* Action Button */
.vcs-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 20px;
  background-color: #f1f5f9;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vcs-visit-link:hover {
  background-color: #2563eb;
  color: #ffffff;
  gap: 12px;
}

.vcs-visit-link svg {
  transition: transform 0.3s ease;
}

.vcs-visit-link:hover svg {
  transform: translate(2px, -2px);
}

/* Scroll Reveal Animation State */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules */
@media (max-width: 968px) {
  .vcs-grid {
    grid-template-columns: 1fr;
  }
  .vcs-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .vcs-card-wide .vcs-image-wrapper {
    height: 220px;
  }
  .visual-cards-showcase {
    padding: 80px 5%;
  }
}

/* Section 3 Ends  */

/* Section 4 Starts  */

/* --- High-Effect Stream Showcase (Default Light Theme & Native Fonts) --- */
.software-stream-section {
  position: relative;
  width: 100%;
  padding: 140px 6%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Glowing Blobs */
.stream-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-blue {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  top: 15%;
  left: -100px;
  animation: floatAmbient 12s ease-in-out infinite alternate;
}

.glow-purple {
  width: 550px;
  height: 550px;
  background: rgba(124, 58, 237, 0.06);
  bottom: 10%;
  right: -100px;
  animation: floatAmbient 14s ease-in-out infinite alternate-reverse;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -50px) scale(1.15); }
}

.stream-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

/* Header */
.stream-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 20px;
}

.stream-dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
  animation: dotBlink 2s infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.stream-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}

.stream-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stream-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #475569;
}

/* Alternating Timeline Spine */
.stream-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.timeline-center-line {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 2px;
  background: #e2e8f0;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-progress-bar {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #2563eb, #7c3aed);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
  transition: height 0.15s ease-out;
}

/* Timeline Rows */
.stream-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  perspective: 1000px;
}

.stream-item-reverse {
  direction: rtl;
}

.stream-item-reverse .stream-details {
  direction: ltr;
}

/* Center Indicator Node with Glow */
.stream-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #2563eb;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.25);
  z-index: 4;
  transition: all 0.4s ease;
}

.node-ripple {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.4);
  animation: pulseRipple 2.5s infinite ease-out;
}

@keyframes pulseRipple {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.stream-item:hover .stream-node {
  background: #2563eb;
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

/* Media Mockup */
.stream-media {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-frame {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.stream-item:hover .browser-frame {
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.browser-top {
  height: 38px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}

.dot-group {
  display: flex;
  gap: 6px;
}

.b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.b-dot.red { background: #f87171; }
.b-dot.yellow { background: #fbbf24; }
.b-dot.green { background: #34d399; }

.browser-tab {
  font-size: 0.72rem;
  color: #64748b;
}

.image-zoom-box {
  position: relative;
  overflow: hidden;
}

.stream-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stream-item:hover .stream-img {
  transform: scale(1.04);
}

.image-gloss-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.stream-item:hover .image-gloss-effect {
  left: 150%;
}

/* Details Section */
.stream-details {
  display: flex;
  flex-direction: column;
}

.stream-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}

.stream-details h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stream-details h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 16px;
}

.stream-details p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
}

/* Features */
.stream-feature-group {
  margin-bottom: 24px;
}

.feature-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 12px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pills span {
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
}

.feature-pills span:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Impact Box */
.stream-impact-box {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.stream-item:hover .stream-impact-box {
  border-color: #2563eb;
  transform: translateX(4px);
}

.impact-indicator {
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2563eb, #7c3aed);
  flex-shrink: 0;
}

.impact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 4px;
}

.stream-impact-box p {
  font-size: 0.92rem;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
  line-height: 1.5;
}

/* --- Scroll Reveal Keyframes & Trigger States --- */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.stream-header.scroll-reveal {
  transform: translateY(40px);
}

.stream-item.scroll-reveal[data-direction="left"] {
  transform: translateX(-50px);
}

.stream-item.scroll-reveal[data-direction="right"] {
  transform: translateX(50px);
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .timeline-center-line, .stream-node {
    display: none;
  }
  .stream-item, .stream-item-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .stream-item.scroll-reveal[data-direction="left"],
  .stream-item.scroll-reveal[data-direction="right"] {
    transform: translateY(40px);
  }
  .stream-timeline {
    gap: 70px;
  }
  .software-stream-section {
    padding: 90px 5%;
  }
}

/* Section 4 Ends  */

/* Section 5 Starts  */

/* --- Meta Ads Campaign Showcase (Default Light Theme & Native Fonts) --- */
.meta-campaign-showcase {
  position: relative;
  width: 100%;
  padding: 130px 6%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Subtle Glows */
.meta-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-meta-blue {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  top: 10%;
  left: -80px;
  animation: floatMetaOrb 12s ease-in-out infinite alternate;
}

.glow-meta-pink {
  width: 550px;
  height: 550px;
  background: rgba(236, 72, 153, 0.06);
  bottom: 5%;
  right: -80px;
  animation: floatMetaOrb 14s ease-in-out infinite alternate-reverse;
}

@keyframes floatMetaOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -40px) scale(1.15); }
}

.meta-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header */
.meta-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 20px;
}

.meta-dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
  animation: metaDotPulse 2s infinite;
}

@keyframes metaDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.meta-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}

.meta-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.meta-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #475569;
}

/* Quick Strip */
.meta-quick-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px 30px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);
  flex-wrap: wrap;
  gap: 20px;
}

.quick-pill {
  display: flex;
  flex-direction: column;
}

.qp-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 2px;
}

.qp-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.strip-sep {
  width: 1px;
  height: 35px;
  background: #e2e8f0;
}

/* Campaign Journey Funnel */
.funnel-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.funnel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.funnel-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.funnel-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2563eb;
  text-transform: uppercase;
}

.funnel-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.funnel-step:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
}

.step-icon {
  font-size: 1.1rem;
}

.step-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.funnel-arrow {
  color: #94a3b8;
  font-weight: bold;
}

.step-winner {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.step-winner .step-name {
  color: #2563eb;
}

/* Strategy & Focus Grid */
.meta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.strategy-card-box, .focus-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
}

.box-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #2563eb;
  margin-bottom: 6px;
}

.box-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

/* Step Timeline */
.strategy-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strat-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
  transition: transform 0.25s ease;
}

.strat-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.strat-step:hover {
  transform: translateX(4px);
}

.strat-count {
  font-size: 0.82rem;
  font-weight: 800;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strat-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.strat-body p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Right Focus Chips */
.focus-intro-text {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.5;
}

.focus-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.focus-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.25s ease;
}

.focus-chip:hover {
  background: #ffffff;
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.chip-dot {
  width: 5px;
  height: 5px;
  background-color: #ec4899;
  border-radius: 50%;
}

/* Simulated Ad Card */
.ad-preview-simulation {
  margin-top: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #ec4899;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.sim-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sim-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563eb, #ec4899);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-meta {
  display: flex;
  flex-direction: column;
}

.sim-meta strong {
  font-size: 0.85rem;
  color: #0f172a;
}

.sim-meta span {
  font-size: 0.7rem;
  color: #64748b;
}

.sim-body {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 12px;
}

.sim-footer {
  display: flex;
  justify-content: flex-end;
}

.sim-action {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .meta-grid {
    grid-template-columns: 1fr;
  }
  .funnel-arrow {
    display: none;
  }
  .funnel-track {
    gap: 10px;
  }
  .meta-campaign-showcase {
    padding: 90px 5%;
  }
  .strip-sep {
    display: none;
  }
  .meta-quick-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Section 5 Ends  */

/* Section 6 Starts  */

/* --- Client Video Testimonials (Default Light Background & System Fonts) --- */
.video-testimonials-section {
  position: relative;
  width: 100%;
  padding: 130px 6%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Subtle Lighting */
.vt-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-blue {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  top: 10%;
  left: -80px;
}

.glow-indigo {
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.07);
  bottom: 10%;
  right: -80px;
}

.vt-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* Header */
.vt-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.vt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 20px;
}

.vt-dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
  animation: dotBlink 2s infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.vt-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}

.vt-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vt-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #475569;
}

/* Video Grid Layout */
.vt-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* Card Styling */
.vt-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.vt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.1);
}

/* Video Thumbnail Container */
.vt-video-frame {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vt-card:hover .vt-cover-img {
  transform: scale(1.05);
}

.vt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.7) 100%);
  pointer-events: none;
}

.vt-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 2;
}

/* Pulsating Play Button */
.vt-play-btn {
  position: absolute;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #2563eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.vt-play-btn svg {
  margin-left: 3px;
}

.play-pulse {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: playRipples 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes playRipples {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.vt-card:hover .vt-play-btn {
  transform: scale(1.12);
  background: #2563eb;
  color: #ffffff;
}

/* Card Body Details */
.vt-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vt-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.vt-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: auto;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.meta-label {
  font-weight: 700;
  color: #64748b;
  min-width: 60px;
}

.meta-value {
  font-weight: 600;
  color: #0f172a;
}


/* Informational Section: Why Video Testimonials Matter */
.vt-why-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #2563eb;
  margin-bottom: 8px;
}

.why-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.why-header p {
  font-size: 1rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.why-pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.25s ease;
}

.why-pillar-item:hover {
  background: #ffffff;
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
}

.pillar-icon {
  font-size: 1.15rem;
}

.pillar-highlight {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
}

/* Fullscreen Lightbox Modal */
.vt-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.vt-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vt-lightbox-modal.active .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.25s ease, color 0.25s ease;
}

.lightbox-close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  color: #60a5fa;
}

.lightbox-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Standard 16:9 Aspect Ratio */
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* Scroll Reveal Initial Animation Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules */
@media (max-width: 850px) {
  .vt-video-grid {
    grid-template-columns: 1fr;
  }
  .video-testimonials-section {
    padding: 90px 5%;
  }
  .vt-why-box {
    padding: 30px 24px;
  }
  .lightbox-close-btn {
    top: -45px;
  }
}

/* Section 6 ENds  */

/* Section 7 STarts  */

/* --- High-Physics 3D Tilt Layered Section (Compact Screen-Fit & Default Fonts) --- */
.dg-stories-section {
  position: relative;
  width: 100%;
  padding: 80px 4%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Backdrops */
.dg-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-azure {
  width: 450px;
  height: 450px;
  background: rgba(56, 189, 248, 0.12);
  top: 5%;
  left: -60px;
}

.glow-coral {
  width: 450px;
  height: 450px;
  background: rgba(251, 146, 60, 0.1);
  bottom: 8%;
  right: -60px;
}

.dg-stories-container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Header */
.dg-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.dg-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0284c7;
  margin-bottom: 15px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.7);
  animation: pulsePoint 2s infinite;
}

@keyframes pulsePoint {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.dg-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 14px;
}

.dg-gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dg-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 8px;
}

.dg-sublead {
  font-size: 0.92rem;
  color: #64748b;
  font-weight: 600;
}

/* Filter Tabs */
.dg-filter-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dg-filter-pill {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dg-filter-pill:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
}

.dg-filter-pill.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
}

/* Compact Multi-Column Grid to Fit Screen Easily */
.dg-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  perspective: 1400px;
}

/* Layered Card Container */
.dg-card-wrapper {
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform;
}

.dg-card-wrapper.hidden {
  display: none;
}

/* Offset Colored Plate Behind the Card (Matches Image Aesthetic) */
.dg-card-offset-plate {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border-radius: 24px;
  z-index: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(-20px);
}

/* Main Interactive Card */
.dg-main-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  height: 100%;
}

/* Mouse Follow Dynamic Specular Glare */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle 350px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  border-radius: 24px;
}

.dg-card-wrapper:hover .card-glare {
  opacity: 1;
}

/* Card 3D Depth Canvas */
.card-3d-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-style: preserve-3d;
}

/* 3D Depth Layering - Elements Pop Forward on Tilt */
.layer-pop {
  transform: translateZ(32px);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}

/* Theme Color Sets */
/* Blue */
.theme-blue .dg-card-offset-plate { background: #bae6fd; }
.theme-blue .dg-icon-box { background: #e0f2fe; color: #0284c7; }
.theme-blue .dg-pillar-badge { background: #e0f2fe; color: #0284c7; }
.theme-blue .dg-impact-callout { border-left-color: #0284c7; background: #f0f9ff; }
.theme-blue .dg-tag:hover { border-color: #0284c7; color: #0284c7; }
.theme-blue .dg-arrow-btn { background: #0f172a; color: #ffffff; }

/* Orange */
.theme-orange .dg-card-offset-plate { background: #fed7aa; }
.theme-orange .dg-icon-box { background: #ffedd5; color: #ea580c; }
.theme-orange .dg-pillar-badge { background: #ffedd5; color: #ea580c; }
.theme-orange .dg-impact-callout { border-left-color: #ea580c; background: #fff7ed; }
.theme-orange .dg-tag:hover { border-color: #ea580c; color: #ea580c; }
.theme-orange .dg-arrow-btn { background: #0f172a; color: #ffffff; }

/* Green */
.theme-green .dg-card-offset-plate { background: #bbf7d0; }
.theme-green .dg-icon-box { background: #dcfce7; color: #16a34a; }
.theme-green .dg-pillar-badge { background: #dcfce7; color: #16a34a; }
.theme-green .dg-impact-callout { border-left-color: #16a34a; background: #f0fdf4; }
.theme-green .dg-tag:hover { border-color: #16a34a; color: #16a34a; }
.theme-green .dg-arrow-btn { background: #0f172a; color: #ffffff; }

/* Purple */
.theme-purple .dg-card-offset-plate { background: #ddd6fe; }
.theme-purple .dg-icon-box { background: #ede9fe; color: #7c3aed; }
.theme-purple .dg-pillar-badge { background: #ede9fe; color: #7c3aed; }
.theme-purple .dg-impact-callout { border-left-color: #7c3aed; background: #faf5ff; }
.theme-purple .dg-tag:hover { border-color: #7c3aed; color: #7c3aed; }
.theme-purple .dg-arrow-btn { background: #0f172a; color: #ffffff; }

/* Coral */
.theme-coral .dg-card-offset-plate { background: #fecdd3; }
.theme-coral .dg-icon-box { background: #ffe4e6; color: #e11d48; }
.theme-coral .dg-pillar-badge { background: #ffe4e6; color: #e11d48; }
.theme-coral .dg-impact-callout { border-left-color: #e11d48; background: #fff1f2; }
.theme-coral .dg-tag:hover { border-color: #e11d48; color: #e11d48; }
.theme-coral .dg-arrow-btn { background: #0f172a; color: #ffffff; }

/* Typography & Layout Internal */
.dg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dg-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.dg-pillar-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
}

.dg-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.dg-card-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 2px;
  display: block;
}


.dg-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 18px;
}

.dg-impact-callout {
  border-left: 3px solid #0284c7;
  padding: 10px 12px;
  border-radius: 0 10px 10px 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #1e293b;
  font-weight: 500;
}

/* Compact Tags Row */
.dg-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 20px;
}

.dg-tag {
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.25s ease;
}

/* Card Action Footer */
.dg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.dg-explore-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dg-explore-link:hover {
  color: #0369a1;
}

.dg-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.dg-card-wrapper:hover .dg-arrow-btn {
  transform: scale(1.1) translateX(2px);
}

/* Representation Card */
.dg-representation-wrapper {
  position: relative;
  margin-top: 10px;
}

.dg-representation-offset {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border-radius: 26px;
  background: #e2e8f0;
  z-index: 0;
}

.dg-representation-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 38px 40px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.rep-mini-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #0284c7;
  display: inline-block;
  margin-bottom: 6px;
}

.dg-representation-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.dg-representation-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 18px;
}

.dg-representation-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 14px;
}

.rep-bold-callout {
  background: #f8fafc;
  border-left: 4px solid #0284c7;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.98rem;
  margin: 16px 0;
}

/* CTA Card */
.dg-cta-wrapper {
  position: relative;
  text-align: center;
}

.dg-cta-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: 28px;
  padding: 50px 36px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  max-width: 860px;
  margin: 0 auto;
}

.cta-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #38bdf8;
  display: block;
  margin-bottom: 10px;
}

.dg-cta-card h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 12px;
}

.cta-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.cta-callout {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.dg-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #38bdf8;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.dg-primary-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
}

/* Scroll Reveal States */
.scroll-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 820px) {
  .dg-cards-grid {
    grid-template-columns: 1fr;
  }
  .dg-stories-section {
    padding: 60px 4%;
  }
  .dg-main-card {
    padding: 24px 20px;
  }
  .dg-representation-card, .dg-cta-card {
    padding: 30px 20px;
  }
  .dg-card-offset-plate {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
  }
}

/* Section 7 Ends  */

/* Section  Starts  */

/* --- Metrics & Value Section (Light Background, Default Fonts, 3D Physics) --- */
.dg-metrics-section {
  position: relative;
  width: 100%;
  padding: 100px 5%;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Backdrops */
.metrics-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-cyan {
  width: 480px;
  height: 480px;
  background: rgba(6, 182, 212, 0.12);
  top: 10%;
  left: -80px;
}

.glow-amber {
  width: 480px;
  height: 480px;
  background: rgba(245, 158, 11, 0.08);
  bottom: 10%;
  right: -80px;
}

.metrics-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.metrics-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.metrics-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  margin-bottom: 18px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.metrics-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 16px;
}

.metrics-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metrics-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* 3D Physics Cards Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  perspective: 1400px;
}

/* Layered Card Container */
.metric-card-wrapper {
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform;
}

/* Offset Colored Plate Behind the Card */
.card-backing-plate {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border-radius: 26px;
  z-index: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(-20px);
}

/* Foreground White Card */
.metric-card-surface {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  height: 100%;
}

/* Interactive Cursor Specular Glare */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle 350px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.85), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  border-radius: 26px;
}

.metric-card-wrapper:hover .card-glare {
  opacity: 1;
}

.card-content-layer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-style: preserve-3d;
}

/* Theme Color Variants */
/* Cyan */
.theme-cyan .card-backing-plate { background: #bae6fd; }
.theme-cyan .metric-icon-box { background: #e0f2fe; color: #0284c7; }
.theme-cyan .metric-tag { background: #e0f2fe; color: #0284c7; }
.theme-cyan .count-number, .theme-cyan .count-symbol { color: #0284c7; }

/* Orange */
.theme-orange .card-backing-plate { background: #fed7aa; }
.theme-orange .metric-icon-box { background: #ffedd5; color: #ea580c; }
.theme-orange .metric-tag { background: #ffedd5; color: #ea580c; }
.theme-orange .count-number, .theme-orange .count-symbol { color: #ea580c; }

/* Purple */
.theme-purple .card-backing-plate { background: #ddd6fe; }
.theme-purple .metric-icon-box { background: #ede9fe; color: #7c3aed; }
.theme-purple .metric-tag { background: #ede9fe; color: #7c3aed; }
.theme-purple .count-number, .theme-purple .count-symbol { color: #7c3aed; }

/* Content Details */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  transform: translateZ(25px);
}

.metric-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.metric-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
}

.counter-display {
  font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  transform: translateZ(35px);
}

.count-symbol {
  font-size: 2rem;
  margin-left: 2px;
}

.metric-label {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  transform: translateZ(28px);
}

.metric-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
  flex: 1;
}

.metric-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  transform: translateZ(20px);
}

.metric-pill {
  padding: 5px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.25s ease;
}

.metric-card-wrapper:hover .metric-pill {
  border-color: #cbd5e1;
  background: #ffffff;
}

/* Trust Bar */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 50%;
  font-size: 0.75rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
}

/* Scroll Reveal Base */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .dg-metrics-section {
    padding: 70px 5%;
  }
  .trust-strip {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .trust-divider {
    display: none;
  }
}

/* Section 8 Ends  */

/* Section 9 Starst  */

/* --- Interactive Split Architecture (Default Fonts & Light Theme) --- */
.dg-capabilities-dock {
  position: relative;
  width: 100%;
  padding: 110px 5%;
  background-color: #fcfdfe;
  color: #0f172a;
  overflow: hidden;
}

/* Ambient Backdrops */
.dock-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.glow-top {
  width: 460px;
  height: 460px;
  background: rgba(2, 132, 199, 0.08);
  top: 5%;
  left: -80px;
}

.glow-bottom {
  width: 480px;
  height: 480px;
  background: rgba(124, 58, 237, 0.06);
  bottom: 5%;
  right: -80px;
}

.dock-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.dock-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.dock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 18px;
}

.dock-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.dock-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 14px;
}

.dock-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dock-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
}

/* Split Layout Wrapper */
.dock-layout-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Interactive Domain Selectors */
.dock-selector-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dock-index {
  font-size: 0.85rem;
  font-weight: 800;
  color: #94a3b8;
  background: #f1f5f9;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dock-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 3px 0;
  transition: color 0.3s ease;
}

.dock-text span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.dock-item-arrow {
  font-size: 1.2rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

/* Hover & Active States */
.dock-item:hover {
  border-color: #cbd5e1;
  transform: translateX(6px);
}

.dock-item.active {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.12);
  transform: translateX(10px);
}

.dock-item.active .dock-index {
  background: #e0f2fe;
  color: #0284c7;
}

.dock-item.active .dock-text h3 {
  color: #0284c7;
}

.dock-item.active .dock-item-arrow {
  color: #0284c7;
  transform: translateX(4px);
}

/* Right Console Box */
.dock-console-col {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
}

.console-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Animated Corner Flare */
.console-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(124, 58, 237, 0.1));
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.console-panel-content {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: consoleFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.console-panel-content.active {
  display: flex;
}

.panel-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 22px;
}

.panel-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #16a34a;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.6);
}

.panel-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.panel-summary {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 28px;
}

.panel-pill-collection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.panel-pill {
  padding: 8px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
}

.panel-pill:hover {
  background: #ffffff;
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.panel-status-bar {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.85rem;
}

.panel-status-bar span {
  color: #64748b;
  font-weight: 500;
}

.panel-status-bar strong {
  color: #0284c7;
  font-weight: 700;
}

@keyframes consoleFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal Base */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 960px) {
  .dock-layout-wrapper {
    grid-template-columns: 1fr;
  }
  .dg-capabilities-dock {
    padding: 70px 5%;
  }
  .dock-item.active {
    transform: translateX(0);
  }
}

/* Section 9 Ends  */


