/* =============================================
   PRIZMABRIXX — Home Page Specific Styles (Neon)
   ============================================= */

/* ========== HERO ========== */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: var(--nav-height);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg-animated-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: floatOrb 20s infinite ease-in-out;
  pointer-events: none;
}

.orb-1 {
  width: 45vw;
  height: 45vw;
  background: rgba(245, 145, 40, 0.4);
  /* Gold */
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.orb-2 {
  width: 55vw;
  height: 55vw;
  background: rgba(0, 119, 182, 0.3);
  /* Cyan */
  bottom: -20%;
  right: -10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 35vw;
  height: 35vw;
  background: rgba(245, 165, 40, 0.3);
  /* Gold/Orange */
  top: 30%;
  left: 40%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(4vw, -6vh) scale(1.05);
  }

  66% {
    transform: translate(-3vw, 4vh) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(249, 247, 243, 0.92) 0%, rgba(249, 247, 243, 0.6) 50%, rgba(249, 247, 243, 0.3) 100%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-section .container.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: clamp(6px, 1.2vh, 20px);
  padding-bottom: clamp(6px, 1.2vh, 20px);
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  max-width: 920px;
  width: 100%;
  margin: auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content .pill-label {
  margin-bottom: clamp(6px, 1vh, 12px);
  animation: float-badge 4s ease-in-out infinite;
}

.hero-content .display-heading {
  color: var(--text-dark);
  margin-bottom: clamp(6px, 1.2vh, 14px);
  font-size: clamp(1.75rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-content .display-heading .gradient-text {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 800;
  transition: background-image 0.5s ease;
}

.hero-content .display-heading .gradient-text.color-orange {
  background-image: linear-gradient(135deg, #FF9800 0%, #E07820 100%) !important;
  filter: drop-shadow(0 2px 10px rgba(224, 120, 32, 0.3));
}

.type-cursor {
  font-weight: 300;
  color: #E07820;
  /* Orange */
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Interactive Spotlight */
.hero-spotlight {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.15) 0%, transparent 70%);
  /* Cyan */
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hero-content .body-lg {
  color: var(--text-dark-sub);
  max-width: 640px;
  margin: 0 auto clamp(10px, 1.6vh, 20px);
  font-size: clamp(0.85rem, 1.15vw, 1.05rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(10px, 1.6vh, 22px);
}

/* Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface-dark);
  border: none;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 840px;
  padding: clamp(8px, 1.2vh, 14px) clamp(14px, 1.8vw, 24px);
  box-sizing: border-box;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 145, 40, 0.3), transparent);
}

.hero-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.stat-item {
  padding: clamp(4px, 0.8vh, 10px) clamp(6px, 0.8vw, 12px);
  text-align: center;
}

.stat-number {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary);
}

.stat-label {
  font-size: clamp(10px, 0.85vw, 12px);
  margin-top: 2px;
  color: var(--text-dark-sub);
}

/* ========== SERVICES STRIP ========== */
.services-strip {
  padding: clamp(16px, 2vh, 24px) 0;
  position: relative;
  z-index: 3;
  border-top: none;
  border-bottom: none;
  width: 100%;
}

.strip-label {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: clamp(4px, 0.8vh, 10px);
  text-shadow: none;
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
  overflow: hidden;
  position: relative;
}

.about-teaser::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 145, 40, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-heading {
  margin: 12px 0 20px;
  color: var(--text-dark);
}

.about-text .body-lg {
  margin-top: 32px;
  color: var(--text-muted);
}

/* ---- Stat Counter Row ---- */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-stat-item {
  flex: 1;
  text-align: center;
}

.about-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(245, 145, 40, 0.3), transparent);
  flex-shrink: 0;
}

/* ---- Highlight Cards ---- */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-warm);
  opacity: 0;
  transition: var(--transition-base);
}

.highlight-item:hover {
  background: rgba(245, 145, 40, 0.04);
  border-color: rgba(245, 145, 40, 0.15);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(245, 145, 40, 0.06);
}

.highlight-item:hover::before {
  opacity: 1;
}

.highlight-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 145, 40, 0.25);
}

.highlight-icon-wrap svg {
  stroke: #fff;
}

.highlight-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.highlight-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- CTA Button ---- */
.about-cta-btn {
  transition: var(--transition-base);
}

.about-cta-btn:hover svg {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* ============================
   TECH SPHERE VISUAL
   ============================ */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  perspective: 1200px;
}

.tech-sphere-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: float-wrap 8s ease-in-out infinite;
}

@keyframes float-wrap {

  0%,
  100% {
    transform: translateY(0) rotateX(10deg);
  }

  50% {
    transform: translateY(-15px) rotateX(15deg);
  }
}

/* Ambient glow behind sphere */
.sphere-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: transparent;
  filter: blur(30px);
  animation: sphere-pulse 4s ease-in-out infinite;
}

@keyframes sphere-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Orbit rings */
.sphere-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid transparent;
  will-change: transform;
  transform-style: preserve-3d;
}

.sphere-orbit-1 {
  width: 220px;
  height: 220px;
  margin-top: -110px;
  margin-left: -110px;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: dashed;
  animation: orbit-spin-1 12s linear infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1) inset;
}

.sphere-orbit-2 {
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
  animation: orbit-spin-2 18s linear infinite reverse;
}

.sphere-orbit-3 {
  width: 370px;
  height: 370px;
  margin-top: -185px;
  margin-left: -185px;
  border-color: rgba(255, 255, 255, 0.1);
  border-style: dotted;
  animation: orbit-spin-1 25s linear infinite;
}

@keyframes orbit-spin-1 {
  from {
    transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg);
  }
}

@keyframes orbit-spin-2 {
  from {
    transform: rotateX(75deg) rotateY(-10deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(75deg) rotateY(-10deg) rotateZ(360deg);
  }
}

/* Core sphere */
.sphere-core {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: sphere-pulse-core 3s ease-in-out infinite;
}

@keyframes sphere-pulse-core {

  0%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }

  50% {
    transform: scale(1.05);
    box-shadow: none;
  }
}

.sphere-inner-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sphere-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Floating particle dots */
.dots-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: orbit-spin-1 30s linear infinite;
  transform-style: preserve-3d;
  z-index: 4;
}

.dot-counter {
  position: absolute;
  width: 0;
  height: 0;
  animation: counter-1 30s linear infinite;
}

.dot-pos-1 {
  top: 15%;
  left: 20%;
}

.dot-pos-2 {
  top: 10%;
  right: 25%;
}

.dot-pos-3 {
  bottom: 20%;
  left: 15%;
}

.dot-pos-4 {
  bottom: 15%;
  right: 18%;
}

.dot-pos-5 {
  top: 50%;
  left: 5%;
}

.dot-pos-6 {
  top: 40%;
  right: 8%;
}

.sphere-dot {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  will-change: transform, opacity;
}

.dot-float-1 {
  animation: dot-float 5s ease-in-out infinite 0s;
  background: #f59128;
  box-shadow: 0 0 10px rgba(245, 145, 40, 0.5);
}

.dot-float-2 {
  animation: dot-float 4s ease-in-out infinite 0.6s;
  width: 6px;
  height: 6px;
  top: -3px;
  left: -3px;
  background: #8b5a2b;
  box-shadow: 0 0 10px rgba(139, 90, 43, 0.5);
}

.dot-float-3 {
  animation: dot-float 6s ease-in-out infinite 1.2s;
  width: 5px;
  height: 5px;
  opacity: 0.7;
  top: -2px;
  left: -2px;
  background: #d32f2f;
  box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

.dot-float-4 {
  animation: dot-float 4.5s ease-in-out infinite 0.3s;
  background: #555555;
  box-shadow: 0 0 10px rgba(85, 85, 85, 0.5);
}

.dot-float-5 {
  animation: dot-float 5.5s ease-in-out infinite 0.9s;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  top: -2px;
  left: -2px;
  background: #ffb74d;
  box-shadow: 0 0 10px rgba(255, 183, 77, 0.5);
}

.dot-float-6 {
  animation: dot-float 4.8s ease-in-out infinite 1.5s;
  width: 7px;
  height: 7px;
  top: -3px;
  left: -3px;
  background: #795548;
  box-shadow: 0 0 10px rgba(121, 85, 72, 0.5);
}

@keyframes dot-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-14px) scale(1.3);
    opacity: 1;
  }
}

/* ============================
   3D SATELLITE ORBITS
   ============================ */
.sat-track {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  z-index: 5;
}

.sat-mover {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}

.sat-badge {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 145, 40, 0.25);
  background: rgba(20, 18, 15, 0.85);
  /* fallback if var not available */
  background: var(--surface-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 145, 40, 0.15);
  color: var(--text-dark);
  white-space: nowrap;
}

.sat-badge i {
  color: #f59128;
  margin-right: 4px;
}

/* Satellite 1 */
.sat-track-1 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  transform: rotateX(65deg) rotateY(15deg);
}

.sat-mover-1 {
  animation: revolve-3d-z 14s linear infinite;
}

.sat-badge-1 {
  animation: counter-1 14s linear infinite;
  border-color: rgba(245, 145, 40, 0.4);
}

@keyframes counter-1 {
  0% {
    transform: rotateZ(0deg) rotateY(-15deg) rotateX(-65deg);
  }

  100% {
    transform: rotateZ(-360deg) rotateY(-15deg) rotateX(-65deg);
  }
}

/* Satellite 2 */
.sat-track-2 {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  transform: rotateX(75deg) rotateY(-15deg);
}

.sat-mover-2 {
  animation: revolve-3d-z-reverse 20s linear infinite;
}

.sat-badge-2 {
  animation: counter-2 20s linear infinite;
  border-color: rgba(245, 158, 11, 0.4);
}

@keyframes counter-2 {
  0% {
    transform: rotateZ(0deg) rotateY(15deg) rotateX(-75deg);
  }

  100% {
    transform: rotateZ(360deg) rotateY(15deg) rotateX(-75deg);
  }
}

/* Satellite 3 */
.sat-track-3 {
  width: 250px;
  height: 250px;
  margin: -125px 0 0 -125px;
  transform: rotateX(55deg) rotateY(25deg);
}

.sat-mover-3 {
  animation: revolve-3d-z 10s linear infinite;
}

.sat-badge-3 {
  animation: counter-3 10s linear infinite;
  border-color: rgba(224, 120, 32, 0.4);
}

@keyframes counter-3 {
  0% {
    transform: rotateZ(0deg) rotateY(-25deg) rotateX(-55deg);
  }

  100% {
    transform: rotateZ(-360deg) rotateY(-25deg) rotateX(-55deg);
  }
}

/* Base Z rotation for orbits */
@keyframes revolve-3d-z {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes revolve-3d-z-reverse {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(-360deg);
  }
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px;
  background: var(--surface-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.5s ease;
}

.service-card-icon {
  font-size: 44px;
  margin-bottom: 8px;
  display: inline-block;
  transition: var(--transition-spring);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.service-card-icon i {
  background: linear-gradient(135deg, #f59128, #e07820);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-link {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* ========== WORK CARD IMAGES ========== */
.work-card {
  position: relative;
  overflow: hidden;
}

.work-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.6s ease, transform 6s ease;
}

.work-card:hover .work-card-img {
  opacity: 0.5;
  transform: scale(1.08);
}

/* ========== HORIZONTAL SCROLL SHOWCASE ========== */
.horizontal-showcase {
  position: relative;
  background: var(--bg-light-2);
  overflow: hidden;
  height: 100vh;
}

.horizontal-showcase-header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
}

.horizontal-track {
  display: flex;
  gap: 32px;
  padding: 160px 60px 80px;
  height: 100%;
  align-items: center;
  will-change: transform;
}

.horizontal-item {
  flex-shrink: 0;
  width: 460px;
  height: 60vh;
  max-height: 550px;
}

.horizontal-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.5s ease;
}

.horizontal-card:hover {
  border-color: rgba(245, 145, 40, 0.4);
}

.parallax-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.parallax-img-wrap img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.horizontal-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(18, 16, 14, 0.95) 0%, rgba(18, 16, 14, 0.75) 60%, transparent 100%);
  color: #ffffff;
  z-index: 2;
}

.horizontal-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(245, 145, 40, 0.25);
  border: 1px solid rgba(245, 145, 40, 0.4);
  color: #fa9e42;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.horizontal-card-info h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: #ffffff;
  margin-bottom: 8px;
}

.horizontal-card-info p {
  font-size: var(--text-sm);
  color: #dcd7cd;
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.5s ease;
}

.why-card:hover {
  border-color: rgba(245, 145, 40, 0.3);
  transform: translateY(-8px);
}

.why-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why-card:hover .why-card-img img {
  transform: scale(1.1);
}

/* Image Reveal Wipe */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-accent);
  transform-origin: right;
  z-index: 2;
}

.why-card-body {
  padding: 28px;
}

.why-number {
  font-family: 'General Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: 8px;
}

.why-card-body h3 {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card-body p {
  font-size: var(--text-sm);
  color: var(--text-dark-sub);
  line-height: 1.6;
}

/* ========== PROCESS SECTION ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.5s ease, transform 0.5s ease;
}

.process-step:hover {
  border-color: rgba(245, 145, 40, 0.3);
  transform: translateY(-8px);
}

.process-step-number {
  font-family: 'General Sans', sans-serif;
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), rgba(245, 145, 40, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 0 auto 20px;
}

.process-step h3 {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-dark-sub);
  line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 240, 255, 0.08) 0%, rgba(255, 0, 60, 0.05) 40%, transparent 80%);
}

.cta-banner .display-heading {
  color: var(--text-dark);
}

.cta-actions {
  gap: 24px;
  margin-top: 48px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .services-grid .service-card:last-child {
    grid-column: span 2;
  }

  .about-grid {
    gap: 64px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .horizontal-item {
    width: 360px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 350px;
    margin-top: 20px;
  }

  .tech-sphere-wrap {
    width: 280px;
    height: 280px;
  }

  .sphere-core {
    width: 100px;
    height: 100px;
  }

  .sphere-label {
    font-size: 28px;
  }

  .sphere-orbit-1 {
    width: 180px;
    height: 180px;
    margin-top: -90px;
    margin-left: -90px;
  }

  .sphere-orbit-2 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
  }

  .sphere-orbit-3 {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
  }

  .sat-track-1 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
  }

  .sat-track-2 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
  }

  .sat-track-3 {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
  }

  .sat-badge {
    font-size: 11px;
    width: max-content;
    margin: 0 auto;
    padding: 6px 10px;
    top: -12px;
  }

  .about-stats-row {
    gap: 0;
  }

  .about-stat-number {
    font-size: 32px;
  }

  .about-stat-suffix {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: span 1;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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

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

  .horizontal-item {
    width: 280px;
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about-stat-number {
    font-size: 28px;
  }

  .about-stat-suffix {
    font-size: 20px;
  }

  .about-stat-label {
    font-size: 10px;
  }

  .about-stat-divider {
    height: 36px;
  }
}

.hide-mobile {
  display: inline;
}

@media (max-width: 640px) {
  .hide-mobile {
    display: none;
  }
}


/* Floating Award Pill */
.floating-award-pill {
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 145, 40, 0.2);
  border-radius: 50px;
  padding: 8px 24px 8px 8px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(245, 145, 40, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  animation: float-badge 4s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.floating-award-pill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(245, 145, 40, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  animation-play-state: paused;
}

.award-pill-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(245, 145, 40, 0.3);
}

.award-pill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-pill-content {
  display: flex;
  flex-direction: column;
}

.award-pill-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.award-pill-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.award-pill-sparkle {
  font-size: 20px;
  animation: pulse-sparkle 2s ease-in-out infinite;
}

@keyframes pulse-sparkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .hero-content .display-heading {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .hero-content .body-lg {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-actions .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 16px;
    max-width: 95%;
    margin-bottom: 10px;
  }

  .stat-item {
    padding: 4px 6px;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 10px;
  }

  .services-strip {
    padding: 6px 0;
  }
}

/* ========== HERO SCROLL PROMPT ========== */
.hero-scroll-prompt {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.scroll-prompt-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: var(--transition-base);
  padding: 10px;
}

.scroll-prompt-link:hover {
  transform: translateY(4px);
}

.scroll-prompt-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dark-sub);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-prompt-link:hover .scroll-prompt-text {
  opacity: 1;
}

.scroll-line-indicator {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line-moving {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--accent);
  animation: scrollLine 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(330%);
    opacity: 0;
  }
}

/* =============================================
   FRAME 2: 3D SIMULATION EXCELLENCE AWARD FRAME
   ============================================= */
.award-showcase-frame {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE6 50%, #FAF7F2 100%);
  color: var(--text-dark);
  overflow: hidden;
  border-top: 1px solid rgba(245, 145, 40, 0.15);
  border-bottom: 1px solid rgba(245, 145, 40, 0.15);
}

.award-ambient-glow {
  position: absolute;
  top: 40%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(245, 145, 40, 0.22) 0%, rgba(224, 120, 32, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.award-split-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.section-badge--gold {
  background: rgba(245, 145, 40, 0.14);
  color: #d97706;
  border: 1px solid rgba(245, 145, 40, 0.4);
  box-shadow: 0 0 16px rgba(245, 145, 40, 0.2);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
}

.award-text-content .section-heading {
  color: #111;
  margin: 16px 0 20px;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.award-text-content .gradient-text {
  background: linear-gradient(135deg, #f59128 0%, #d97706 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(245, 145, 40, 0.25));
}

.award-text-content .body-lg {
  color: var(--text-dark);
}

.award-text-content .body-base {
  color: var(--text-dark-sub);
}

.award-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.award-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.award-chip:hover {
  background: rgba(245, 145, 40, 0.12);
  border-color: rgba(245, 145, 40, 0.4);
  transform: translateY(-2px);
}

.chip-icon {
  font-size: 16px;
}

/* 3D Interactive Award Card */
.award-visual-column {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}

.award-card-3d-wrapper {
  width: 100%;
  max-width: 780px;
}

.award-card-3d {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(245, 145, 40, 0.4);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.12), 0 0 45px rgba(245, 145, 40, 0.22);
  backdrop-filter: blur(20px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease, border-color 0.6s ease;
  transform-style: preserve-3d;
}

.award-card-3d:hover {
  transform: rotateY(-6deg) rotateX(4deg) translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.14), 0 0 50px rgba(245, 145, 40, 0.28);
  border-color: rgba(245, 145, 40, 0.55);
}

.award-card-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.award-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.award-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.award-card-3d:hover .award-photo {
  transform: scale(1.04);
}

.award-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 19, 18, 0.8) 0%, transparent 60%);
}

.award-card-caption {
  padding: 16px 8px 8px;
  text-align: center;
}

.caption-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.caption-sub {
  font-size: 12px;
  color: var(--accent);
  margin-top: 2px;
}

/* Event Gallery Strip */
.award-gallery-strip {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.gallery-strip-header {
  margin-bottom: 20px;
  text-align: center;
}

.gallery-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.gallery-cards-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  /* space for scrollbar */
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar for cleaner look if desired, but padding allows standard scrollbar */
}

.gallery-cards-grid::-webkit-scrollbar {
  height: 6px;
}

.gallery-cards-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.gallery-cards-grid::-webkit-scrollbar-thumb {
  background: rgba(245, 145, 40, 0.5);
  border-radius: 3px;
}

.gallery-card {
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  height: 220px;
  transition: var(--transition-base);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 145, 40, 0.4);
  box-shadow: 0 15px 35px rgba(245, 145, 40, 0.15);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .award-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .award-visual-column {
    order: -1;
  }
}

@media (max-width: 600px) {
  .award-highlights-grid {
    grid-template-columns: 1fr;
  }

  .award-showcase-frame {
    padding: 60px 0;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.img-reveal-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-accent);
  transform-origin: right;
  z-index: 2;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Humanized Gallery Cards */
.human-gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(180, 130, 60, 0.18);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  display: block;
  text-decoration: none;
}

.human-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 145, 40, 0.18);
  border-color: rgba(245, 145, 40, 0.4);
}

.human-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.human-gallery-card:hover img {
  transform: scale(1.06);
}

.card-location-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.03em;
}

.card-caption-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 4;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.card-caption-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.card-caption-sub {
  font-size: 12px;
  color: rgba(245, 145, 40, 0.9);
  font-weight: 500;
}