          .page-hero {
              min-height: 30vh;
              position: relative;
              display: flex;
              align-items: center;
              padding: var(--spacing-3xl) 0;
              margin-top: 80px;
          }

          .page-hero-content {
              text-align: center;
              position: relative;
              z-index: 2;
          }

          .page-title {
              font-size: clamp(2.5rem, 5vw, 4rem);
              font-weight: 700;
              line-height: 1.1;
              margin-bottom: 5rem;
          }

          .page-subtitle {
              font-size: clamp(1rem, 2vw, 1.2rem);
              color: var(--text-secondary);
              max-width: 700px;
              margin: 0 auto;
          }

          [data-animate] {
              opacity: 100%;
              transform: translateY(50px);
          }

          .tech-hero {
              position: relative;
              overflow: hidden;
          }

          .tech-particles {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              pointer-events: none;
              z-index: 1;
          }

          .particle {
              position: absolute;
              width: 4px;
              height: 4px;
              background: var(--primary-red);
              border-radius: 50%;
              opacity: 0.6;
              animation: float var(--duration, 4s) infinite linear;
              animation-delay: var(--delay, 0s);
          }

          .particle:nth-child(1) {
              top: 20%;
              left: 10%;
          }

          .particle:nth-child(2) {
              top: 60%;
              left: 80%;
          }

          .particle:nth-child(3) {
              top: 80%;
              left: 20%;
          }

          .particle:nth-child(4) {
              top: 40%;
              left: 60%;
          }

          .particle:nth-child(5) {
              top: 70%;
              left: 40%;
          }

          @keyframes float {
              0% {
                  transform: translateY(0px) scale(1);
                  opacity: 0.6;
              }

              50% {
                  transform: translateY(-20px) scale(1.2);
                  opacity: 1;
              }

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

          .tech-stats {
              display: flex;
              gap: var(--spacing-2xl);
              justify-content: center;
              margin-top: var(--spacing-2xl);
          }

          .tech-stat {
              text-align: center;
              padding: var(--spacing-lg);
              background: rgba(193, 0, 1, 0.1);
              border-radius: var(--radius-lg);
              border: 1px solid rgba(193, 0, 1, 0.2);
              backdrop-filter: blur(10px);
          }

          .tech-stat .stat-number {
              font-size: 2rem;
              font-weight: 700;
              color: var(--primary-red);
              font-family: 'JetBrains Mono', monospace;
              margin-bottom: var(--spacing-sm);
          }

          .tech-stat .stat-label {
              color: var(--text-secondary);
              font-size: 0.9rem;
              font-weight: 500;
          }

          .tech-overview {
              padding: var(--spacing-3xl) 0;
              background: var(--bg-secondary);
          }

          .tech-content {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: var(--spacing-3xl);
              align-items: center;
          }

          .tech-description h2 {
              font-size: clamp(2rem, 4vw, 2.5rem);
              margin-bottom: var(--spacing-lg);
          }

          .tech-description p {
              color: var(--text-secondary);
              margin-bottom: var(--spacing-lg);
              line-height: 1.7;
          }

          .tech-badges {
              display: flex;
              flex-wrap: wrap;
              gap: var(--spacing-sm);
              margin-top: var(--spacing-xl);
          }

          .tech-badge {
              background: var(--gradient-1);
              color: white;
              padding: var(--spacing-sm) var(--spacing-md);
              border-radius: var(--radius-full);
              font-size: 0.9rem;
              font-weight: 500;
              box-shadow: 0 4px 15px rgba(193, 0, 1, 0.3);
          }

          .tv-animation-container {
              position: relative;
              display: flex;
              justify-content: center;
              align-items: center;
              padding: var(--spacing-xl);
              min-height: 400px;
          }

          .tv-frame {
              position: relative;
              width: 450px;
              height: 320px;
              background: linear-gradient(145deg, #f8f9fa, #e9ecef);
              border-radius: 24px;
              padding: 24px;
              box-shadow:
                  0 25px 50px rgba(0, 0, 0, 0.15),
                  0 10px 20px rgba(0, 0, 0, 0.1),
                  inset 0 2px 4px rgba(255, 255, 255, 0.9),
                  inset 0 -2px 4px rgba(0, 0, 0, 0.05);
              animation: tvFloat 4s ease-in-out infinite;
          }

          .tv-screen {
              position: relative;
              width: 100%;
              height: 100%;
              background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
              border-radius: 16px;
              overflow: hidden;
              box-shadow:
                  inset 0 0 40px rgba(0, 0, 0, 0.6),
                  0 4px 20px rgba(193, 0, 1, 0.2);
              border: 3px solid rgba(0, 0, 0, 0.1);
          }

          .tv-screen::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
              pointer-events: none;
              z-index: 3;
          }

          .scan-line {
              position: absolute;
              width: 100%;
              height: 3px;
              background: linear-gradient(transparent, rgba(193, 0, 1, 0.6), transparent);
              animation: scanLine 3s linear infinite;
              z-index: 4;
              filter: blur(1px);
          }

          .video-content {
              position: relative;
              width: 100%;
              height: 100%;
              display: flex;
              align-items: center;
              justify-content: center;
              background: radial-gradient(circle at center, #1e2530, #0a0e14);
          }

          .channel-bars {
              position: absolute;
              display: flex;
              width: 85%;
              height: 65%;
              gap: 12px;
          }

          .bar {
              flex: 1;
              border-radius: 6px;
              animation: barPulse 1.8s ease-in-out infinite;
              box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
              position: relative;
              overflow: hidden;
          }

          .bar::after {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
              animation: shimmer 2s infinite;
          }

          .bar:nth-child(1) {
              animation-delay: 0s;
          }

          .bar:nth-child(2) {
              animation-delay: 0.2s;
          }

          .bar:nth-child(3) {
              animation-delay: 0.4s;
          }

          .bar:nth-child(4) {
              animation-delay: 0.6s;
          }

          .bar:nth-child(5) {
              animation-delay: 0.8s;
          }

          .play-icon {
              position: relative;
              width: 90px;
              height: 90px;
              background: linear-gradient(135deg, #c10001, #8b0000);
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              z-index: 1;
              animation: playPulse 2.5s ease-in-out infinite;
              box-shadow:
                  0 0 40px rgba(193, 0, 1, 0.7),
                  0 0 80px rgba(193, 0, 1, 0.4),
                  0 10px 30px rgba(0, 0, 0, 0.5);
              border: 4px solid rgba(255, 255, 255, 0.2);
          }

          .play-icon::before {
              content: '';
              position: absolute;
              width: 110%;
              height: 110%;
              border: 2px solid rgba(193, 0, 1, 0.4);
              border-radius: 50%;
              animation: ripple 2.5s ease-out infinite;
          }

          .play-icon svg {
              width: 45px;
              height: 45px;
              margin-left: 6px;
              filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          }

          .tv-stand {
              position: absolute;
              bottom: -35px;
              left: 50%;
              transform: translateX(-50%);
              width: 140px;
              height: 35px;
              background: linear-gradient(145deg, #e9ecef, #dee2e6);
              border-radius: 0 0 12px 12px;
              box-shadow:
                  0 5px 15px rgba(0, 0, 0, 0.1),
                  inset 0 2px 4px rgba(255, 255, 255, 0.5);
          }

          .tv-stand::before {
              content: '';
              position: absolute;
              bottom: 0;
              left: 50%;
              transform: translateX(-50%);
              width: 100px;
              height: 18px;
              background: linear-gradient(145deg, #dee2e6, #ced4da);
              border-radius: 0 0 10px 10px;
              box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          }

          .signal-waves {
              position: absolute;
              top: 15%;
              right: -60px;
              display: flex;
              flex-direction: column;
              gap: 18px;
          }

          .wave {
              height: 4px;
              background: linear-gradient(90deg, #c10001, #ff4444);
              border-radius: 3px;
              animation: waveAnimation 2.5s ease-in-out infinite;
              box-shadow: 0 2px 10px rgba(193, 0, 1, 0.4);
          }

          .wave:nth-child(1) {
              width: 45px;
              animation-delay: 0s;
          }

          .wave:nth-child(2) {
              width: 70px;
              animation-delay: 0.3s;
          }

          .wave:nth-child(3) {
              width: 95px;
              animation-delay: 0.6s;
          }

          .tv-animation-container::before,
          .tv-animation-container::after {
              content: '';
              position: absolute;
              width: 60px;
              height: 60px;
              background: linear-gradient(135deg, rgba(193, 0, 1, 0.1), rgba(193, 0, 1, 0.05));
              border-radius: 50%;
              border: 2px solid rgba(193, 0, 1, 0.2);
          }

          .tv-animation-container::before {
              top: 10%;
              left: 5%;
              animation: float1 5s ease-in-out infinite;
          }

          .tv-animation-container::after {
              bottom: 15%;
              left: 8%;
              animation: float2 6s ease-in-out infinite;
          }

          @keyframes tvFloat {

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

              50% {
                  transform: translateY(-10px);
              }
          }

          @keyframes scanLine {
              0% {
                  top: -3px;
                  opacity: 0;
              }

              10% {
                  opacity: 1;
              }

              90% {
                  opacity: 1;
              }

              100% {
                  top: 100%;
                  opacity: 0;
              }
          }

          @keyframes barPulse {

              0%,
              100% {
                  transform: scaleY(0.65);
                  opacity: 0.7;
                  filter: brightness(0.8);
              }

              50% {
                  transform: scaleY(1);
                  opacity: 1;
                  filter: brightness(1.2);
              }
          }

          @keyframes shimmer {
              0% {
                  left: -100%;
              }

              100% {
                  left: 200%;
              }
          }

          @keyframes playPulse {

              0%,
              100% {
                  transform: scale(1);
                  box-shadow:
                      0 0 40px rgba(193, 0, 1, 0.7),
                      0 0 80px rgba(193, 0, 1, 0.4),
                      0 10px 30px rgba(0, 0, 0, 0.5);
              }

              50% {
                  transform: scale(1.08);
                  box-shadow:
                      0 0 50px rgba(193, 0, 1, 0.9),
                      0 0 100px rgba(193, 0, 1, 0.5),
                      0 12px 35px rgba(0, 0, 0, 0.5);
              }
          }

          @keyframes ripple {
              0% {
                  transform: scale(1);
                  opacity: 1;
              }

              100% {
                  transform: scale(1.5);
                  opacity: 0;
              }
          }

          @keyframes waveAnimation {

              0%,
              100% {
                  opacity: 0.4;
                  transform: translateX(0) scaleX(0.9);
              }

              50% {
                  opacity: 1;
                  transform: translateX(15px) scaleX(1);
              }
          }

          @keyframes float1 {

              0%,
              100% {
                  transform: translate(0, 0) rotate(0deg);
              }

              33% {
                  transform: translate(10px, -10px) rotate(120deg);
              }

              66% {
                  transform: translate(-5px, 5px) rotate(240deg);
              }
          }

          @keyframes float2 {

              0%,
              100% {
                  transform: translate(0, 0) rotate(0deg);
              }

              33% {
                  transform: translate(-8px, 8px) rotate(-120deg);
              }

              66% {
                  transform: translate(8px, -8px) rotate(-240deg);
              }
          }

/* ========================================
   TECHNOLOGY STACK - LIGHT THEME
======================================== */

          .tech-stack {
              padding: var(--spacing-3xl) 0;
              background: var(--bg-secondary);
              position: relative;
              overflow: hidden;
          }

          .tech-stack::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background:
                  radial-gradient(circle at 20% 20%, rgba(193, 0, 1, 0.02) 0%, transparent 60%),
                  radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.015) 0%, transparent 60%);
              animation: stackBgShift 25s ease-in-out infinite;
              pointer-events: none;
          }

          @keyframes stackBgShift {

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

              50% {
                  transform: scale(1.1) rotate(1deg);
                  opacity: 0.8;
              }
          }

          .stack-visualization {
              display: flex;
              flex-direction: column;
              gap: var(--spacing-lg);
              margin-top: var(--spacing-3xl);
              max-width: 900px;
              margin-left: auto;
              margin-right: auto;
              position: relative;
          }

          .stack-visualization::before {
              content: '';
              position: absolute;
              left: 65px;
              top: 80px;
              bottom: 80px;
              width: 2px;
              background: linear-gradient(180deg,
                      var(--primary-red) 0%,
                      rgba(193, 0, 1, 0.6) 25%,
                      rgba(0, 212, 255, 0.4) 50%,
                      rgba(193, 0, 1, 0.6) 75%,
                      var(--primary-red) 100%);
              border-radius: 1px;
              opacity: 0.5;
              animation: connectionPulse 3s ease-in-out infinite;
          }

          @keyframes connectionPulse {

              0%,
              100% {
                  opacity: 0.5;
                  box-shadow: 0 0 8px rgba(193, 0, 1, 0.2);
              }

              50% {
                  opacity: 0.8;
                  box-shadow: 0 0 15px rgba(193, 0, 1, 0.3);
              }
          }

          .stack-layer {
              background: white;
              border-radius: var(--radius-xl);
              border: 1px solid rgba(193, 0, 1, 0.12);
              box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
              transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
              position: relative;
              overflow: hidden;
              cursor: pointer;
          }

          .stack-layer:nth-child(1) {
              z-index: 4;
          }

          .stack-layer:nth-child(2) {
              z-index: 3;
          }

          .stack-layer:nth-child(3) {
              z-index: 2;
          }

          .stack-layer:nth-child(4) {
              z-index: 1;
          }

          .stack-layer::before {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(90deg,
                      transparent,
                      rgba(193, 0, 1, 0.03),
                      transparent);
              transition: left 0.8s ease;
              z-index: 1;
          }

          .stack-layer::after {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              width: 4px;
              height: 0;
              background: var(--gradient-1);
              border-radius: 0 4px 4px 0;
              transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          }

          .stack-layer:hover::before {
              left: 100%;
          }

          .stack-layer:hover::after {
              height: 60%;
          }

          .stack-layer:hover {
              transform: translateX(25px) scale(1.02);
              border-color: rgba(193, 0, 1, 0.3);
              box-shadow:
                  0 15px 35px rgba(0, 0, 0, 0.12),
                  0 0 25px rgba(193, 0, 1, 0.15);
          }

          .layer-content {
              display: flex;
              align-items: center;
              gap: var(--spacing-lg);
              padding: var(--spacing-xl);
              position: relative;
              z-index: 2;
          }

          .layer-icon {
              width: 70px;
              height: 70px;
              background: var(--gradient-1);
              border-radius: var(--radius-lg);
              display: flex;
              align-items: center;
              justify-content: center;
              color: white;
              flex-shrink: 0;
              transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
              box-shadow:
                  0 6px 20px rgba(193, 0, 1, 0.25),
                  inset 0 1px 0 rgba(255, 255, 255, 0.3);
              position: relative;
              overflow: hidden;
          }

          .layer-icon::before {
              content: '';
              position: absolute;
              top: 50%;
              left: 50%;
              width: 150%;
              height: 150%;
              background: conic-gradient(from 0deg,
                      transparent 0deg,
                      rgba(255, 255, 255, 0.3) 90deg,
                      transparent 180deg,
                      rgba(255, 255, 255, 0.15) 270deg,
                      transparent 360deg);
              transform: translate(-50%, -50%) rotate(0deg);
              opacity: 0;
              transition: all 0.4s ease;
              animation: layerIconRotate 4s linear infinite;
          }

          @keyframes layerIconRotate {
              from {
                  transform: translate(-50%, -50%) rotate(0deg);
              }

              to {
                  transform: translate(-50%, -50%) rotate(360deg);
              }
          }

          .stack-layer:hover .layer-icon {
              transform: scale(1.1) rotate(-5deg);
              box-shadow:
                  0 10px 30px rgba(193, 0, 1, 0.35),
                  inset 0 1px 0 rgba(255, 255, 255, 0.4);
          }

          .stack-layer:hover .layer-icon::before {
              opacity: 1;
          }

          .layer-icon svg {
              width: 32px;
              height: 32px;
              z-index: 1;
              transition: all 0.3s ease;
          }

          .stack-layer:hover .layer-icon svg {
              filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
          }

          .layer-info {
              flex-grow: 1;
              transition: all 0.3s ease;
          }

          .layer-info h4 {
              color: var(--text-primary);
              margin-bottom: var(--spacing-sm);
              font-size: 1.4rem;
              font-weight: 600;
              transition: color 0.3s ease;
              position: relative;
          }

          .layer-info h4::after {
              content: '';
              position: absolute;
              bottom: -4px;
              left: 0;
              width: 0;
              height: 2px;
              background: var(--gradient-1);
              transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
          }

          .stack-layer:hover .layer-info h4 {
              color: var(--primary-red);
          }

          .stack-layer:hover .layer-info h4::after {
              width: 60%;
          }

          .layer-info p {
              color: var(--text-secondary);
              font-size: 0.95rem;
              line-height: 1.6;
              transition: color 0.3s ease;
          }

          .stack-layer:hover .layer-info p {
              color: var(--text-primary);
          }

          .stack-visualization::after {
              content: '';
              position: absolute;
              left: 65px;
              top: 80px;
              width: 8px;
              height: 8px;
              background: var(--primary-red);
              border-radius: 50%;
              box-shadow: 0 0 12px rgba(193, 0, 1, 0.6);
              animation: dataFlow 4s ease-in-out infinite;
          }

          @keyframes dataFlow {
              0% {
                  top: 80px;
                  opacity: 1;
                  transform: scale(1);
              }

              25% {
                  opacity: 0.8;
                  transform: scale(1.2);
              }

              50% {
                  top: 50%;
                  opacity: 0.6;
                  transform: scale(0.8);
              }

              75% {
                  opacity: 0.8;
                  transform: scale(1.2);
              }

              100% {
                  top: calc(100% - 80px);
                  opacity: 1;
                  transform: scale(1);
              }
          }

          @media (max-width: 768px) {
              .stack-visualization {
                  max-width: 100%;
                  gap: var(--spacing-md);
              }

              .stack-visualization::before {
                  left: 45px;
              }

              .stack-visualization::after {
                  left: 45px;
              }

              .layer-content {
                  padding: var(--spacing-lg);
                  gap: var(--spacing-md);
              }

              .layer-icon {
                  width: 55px;
                  height: 55px;
              }

              .layer-icon svg {
                  width: 28px;
                  height: 28px;
              }

              .layer-info h4 {
                  font-size: 1.2rem;
              }

              .layer-info p {
                  font-size: 0.85rem;
              }

              .stack-layer:hover {
                  transform: translateX(15px) scale(1.01);
              }
          }

          @media (max-width: 480px) {

              .stack-visualization::before,
              .stack-visualization::after {
                  display: none;
              }

              .layer-content {
                  padding: var(--spacing-md);
                  gap: var(--spacing-sm);
              }

              .layer-icon {
                  width: 50px;
                  height: 50px;
              }

              .layer-icon svg {
                  width: 24px;
                  height: 24px;
              }

              .layer-info h4 {
                  font-size: 1.1rem;
                  margin-bottom: 4px;
              }

              .layer-info p {
                  font-size: 0.8rem;
                  line-height: 1.5;
              }
          }

          .stack-layer:nth-child(1) {
              animation-delay: 0.1s;
          }

          .stack-layer:nth-child(2) {
              animation-delay: 0.2s;
          }

          .stack-layer:nth-child(3) {
              animation-delay: 0.3s;
          }

          .stack-layer:nth-child(4) {
              animation-delay: 0.4s;
          }

          @keyframes stackLayerSlide {
              from {
                  opacity: 0;
                  transform: translateX(-50px);
              }

              to {
                  opacity: 1;
                  transform: translateX(0);
              }
          }

          .stack-layer {
              animation: stackLayerSlide 0.8s ease forwards;
              opacity: 0;
          }

          .stack-visualization {
              transform: translateY(30px);
              transition: all 0.8s ease;
          }

          .stack-visualization.revealed {
              opacity: 1;
              transform: translateY(0);
          }

/* ========================================
   TECHNOLOGY BENEFITS - LIGHT THEME
======================================== */

          .tech-benefits {
              padding: var(--spacing-3xl) 0;
              background: var(--bg-dark);
              position: relative;
              overflow: hidden;
          }

          .tech-benefits::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background:
                  radial-gradient(circle at 15% 25%, rgba(193, 0, 1, 0.02) 0%, transparent 60%),
                  radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.015) 0%, transparent 60%);
              animation: benefitsBgFloat 28s ease-in-out infinite;
              pointer-events: none;
          }

          @keyframes benefitsBgFloat {

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

              33% {
                  transform: scale(1.1) rotate(1deg);
                  opacity: 0.8;
              }

              66% {
                  transform: scale(0.95) rotate(-1deg);
                  opacity: 0.9;
              }
          }

          /* Enhanced Grid Layout */
          .benefits-content {
              display: grid;
              grid-template-columns: 1.1fr 0.9fr;
              gap: var(--spacing-3xl);
              align-items: center;
              position: relative;
          }

          /* Modern Typography */
          .benefits-text h2 {
              font-size: clamp(2rem, 4vw, 2.5rem);
              margin-bottom: var(--spacing-lg);
              position: relative;
              font-weight: 700;
          }

          .benefits-text>p {
              color: var(--text-secondary);
              margin-bottom: var(--spacing-xl);
              line-height: 1.8;
              font-size: 1.1rem;
              transition: color 0.3s ease;
          }

          /* Enhanced Benefits List */
          .benefits-list {
              display: flex;
              flex-direction: column;
              gap: var(--spacing-lg);
          }

          /* Benefit Items - LIGHT THEME */
          .benefit-item {
              display: flex;
              gap: var(--spacing-lg);
              padding: var(--spacing-lg);
              background: white;
              border-radius: var(--radius-lg);
              border: 1px solid rgba(193, 0, 1, 0.12);
              box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
              transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
              position: relative;
              overflow: hidden;
              cursor: pointer;
          }

          /* Shimmer effect on hover - LIGHT */
          .benefit-item::before {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(90deg,
                      transparent,
                      rgba(193, 0, 1, 0.03),
                      transparent);
              transition: left 0.6s ease;
          }

          /* Side indicator */
          .benefit-item::after {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              width: 4px;
              height: 0;
              background: var(--gradient-1);
              border-radius: 0 4px 4px 0;
              transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          }

          .benefit-item:hover::before {
              left: 100%;
          }

          .benefit-item:hover::after {
              height: 70%;
          }

          .benefit-item:hover {
              border-color: rgba(193, 0, 1, 0.3);
              transform: translateX(15px) scale(1.02);
              box-shadow:
                  0 12px 30px rgba(0, 0, 0, 0.1),
                  0 0 25px rgba(193, 0, 1, 0.12);
          }

          .benefit-icon {
              width: 50px;
              height: 50px;
              background: var(--gradient-1);
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              color: white;
              flex-shrink: 0;
              transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
              box-shadow:
                  0 6px 18px rgba(193, 0, 1, 0.25),
                  inset 0 1px 0 rgba(255, 255, 255, 0.3);
              position: relative;
              overflow: hidden;
          }

          .benefit-icon::before {
              content: '';
              position: absolute;
              top: 50%;
              left: 50%;
              width: 150%;
              height: 150%;
              background: conic-gradient(from 0deg,
                      transparent 0deg,
                      rgba(255, 255, 255, 0.4) 90deg,
                      transparent 180deg,
                      rgba(255, 255, 255, 0.2) 270deg,
                      transparent 360deg);
              transform: translate(-50%, -50%) rotate(0deg);
              opacity: 0;
              transition: all 0.4s ease;
              animation: benefitIconRotate 3s linear infinite;
          }

          @keyframes benefitIconRotate {
              from {
                  transform: translate(-50%, -50%) rotate(0deg);
              }

              to {
                  transform: translate(-50%, -50%) rotate(360deg);
              }
          }

          .benefit-item:hover .benefit-icon {
              transform: scale(1.15) rotate(10deg);
              box-shadow:
                  0 10px 28px rgba(193, 0, 1, 0.35),
                  inset 0 1px 0 rgba(255, 255, 255, 0.4);
          }

          .benefit-item:hover .benefit-icon::before {
              opacity: 1;
          }

          .benefit-icon svg {
              width: 24px;
              height: 24px;
              z-index: 1;
              transition: all 0.3s ease;
          }

          .benefit-item:hover .benefit-icon svg {
              filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
          }

          /* Enhanced Benefit Content */
          .benefit-content {
              position: relative;
              z-index: 2;
          }

          .benefit-content h4 {
              color: var(--text-primary);
              margin-bottom: var(--spacing-sm);
              font-size: 1.2rem;
              font-weight: 600;
              transition: color 0.3s ease;
              position: relative;
          }

          .benefit-content h4::after {
              content: '';
              position: absolute;
              bottom: -3px;
              left: 0;
              width: 0;
              height: 2px;
              background: var(--gradient-1);
              transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          }

          .benefit-item:hover .benefit-content h4 {
              color: var(--primary-red);
          }

          .benefit-item:hover .benefit-content h4::after {
              width: 60%;
          }

          .benefit-content p {
              color: var(--text-secondary);
              font-size: 0.95rem;
              line-height: 1.6;
              transition: color 0.3s ease;
          }

          .benefit-item:hover .benefit-content p {
              color: var(--text-primary);
          }

          .tech-dashboard {
              background: white;
              border-radius: var(--radius-xl);
              border: 1px solid rgba(193, 0, 1, 0.12);
              overflow: hidden;
              box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
              position: relative;
          }

          .tech-dashboard::before {
              content: '';
              position: absolute;
              top: -50%;
              right: -50%;
              width: 200%;
              height: 200%;
              background: conic-gradient(from 45deg at center,
                      transparent 0deg,
                      rgba(193, 0, 1, 0.015) 90deg,
                      transparent 180deg,
                      rgba(0, 212, 255, 0.01) 270deg,
                      transparent 360deg);
              animation: dashboardRotate 20s linear infinite;
              pointer-events: none;
          }

          @keyframes dashboardRotate {
              from {
                  transform: rotate(0deg);
              }

              to {
                  transform: rotate(360deg);
              }
          }

          .dashboard-header {
              background: var(--bg-secondary);
              padding: var(--spacing-lg);
              display: flex;
              justify-content: space-between;
              align-items: center;
              border-bottom: 1px solid rgba(193, 0, 1, 0.1);
              position: relative;
              z-index: 1;
          }

          .dashboard-title {
              font-weight: 600;
              color: var(--text-primary);
              font-size: 1.1rem;
          }

          .dashboard-status {
              display: flex;
              align-items: center;
              gap: var(--spacing-sm);
              font-size: 0.9rem;
              color: var(--accent-green);
              font-weight: 500;
          }

          .status-dot {
              width: 10px;
              height: 10px;
              border-radius: 50%;
              background: var(--accent-green);
              animation: statusPulse 2s ease-in-out infinite;
              box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
          }

          @keyframes statusPulse {

              0%,
              100% {
                  opacity: 1;
                  transform: scale(1);
                  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
              }

              50% {
                  opacity: 0.7;
                  transform: scale(1.2);
                  box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
              }
          }

          .dashboard-content {
              padding: var(--spacing-xl);
              position: relative;
              z-index: 1;
              background: white;
          }

          .metric-row {
              margin-bottom: var(--spacing-lg);
          }

          .metric-label {
              color: var(--text-secondary);
              font-size: 0.9rem;
              margin-bottom: var(--spacing-sm);
              font-weight: 500;
              text-transform: uppercase;
              letter-spacing: 0.5px;
          }

          .metric-value {
              color: var(--primary-red);
              font-size: 1.6rem;
              font-weight: 700;
              font-family: 'JetBrains Mono', 'Courier New', monospace;
              margin-bottom: var(--spacing-sm);
              text-shadow: 0 0 10px rgba(193, 0, 1, 0.2);
              position: relative;
          }

          .metric-value::after {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background: inherit;
              filter: blur(8px);
              opacity: 0.2;
              z-index: -1;
          }

          .metric-bar {
              width: 100%;
              height: 12px;
              background: rgba(193, 0, 1, 0.08);
              border-radius: 8px;
              overflow: hidden;
              position: relative;
              box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
          }

          .metric-bar::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background: linear-gradient(90deg,
                      transparent 0%,
                      rgba(255, 255, 255, 0.3) 50%,
                      transparent 100%);
              animation: metricShimmer 3s ease-in-out infinite;
          }

          @keyframes metricShimmer {
              0% {
                  transform: translateX(-100%);
              }

              100% {
                  transform: translateX(100%);
              }
          }

          .metric-fill {
              height: 100%;
              background: var(--gradient-1);
              border-radius: 8px;
              width: 0;
              transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
              position: relative;
              overflow: hidden;
              box-shadow: 0 0 15px rgba(193, 0, 1, 0.3);
          }

          .metric-fill::after {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background: linear-gradient(90deg,
                      transparent 0%,
                      rgba(255, 255, 255, 0.5) 50%,
                      transparent 100%);
              animation: fillShine 4s ease-in-out infinite;
          }

          @keyframes fillShine {
              0% {
                  transform: translateX(-100%);
              }

              100% {
                  transform: translateX(100%);
              }
          }

          .tech-indicators {
              display: flex;
              gap: var(--spacing-lg);
              margin-top: var(--spacing-xl);
              padding-top: var(--spacing-lg);
              border-top: 1px solid rgba(193, 0, 1, 0.1);
          }

          .indicator {
              display: flex;
              align-items: center;
              gap: var(--spacing-sm);
              font-size: 0.85rem;
              color: var(--text-secondary);
              font-weight: 500;
              transition: color 0.3s ease;
          }

          .indicator:hover {
              color: var(--text-primary);
          }

          .indicator-dot {
              width: 10px;
              height: 10px;
              border-radius: 50%;
              animation: indicatorPulse 2s ease-in-out infinite;
              position: relative;
          }

          .indicator-dot::after {
              content: '';
              position: absolute;
              top: -2px;
              left: -2px;
              right: -2px;
              bottom: -2px;
              border-radius: 50%;
              border: 2px solid currentColor;
              opacity: 0;
              animation: indicatorRipple 2s ease-in-out infinite;
          }

          @keyframes indicatorPulse {

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

              50% {
                  opacity: 0.7;
                  transform: scale(1.1);
              }
          }

          @keyframes indicatorRipple {
              0% {
                  opacity: 0;
                  transform: scale(0.8);
              }

              50% {
                  opacity: 0.5;
                  transform: scale(1.3);
              }

              100% {
                  opacity: 0;
                  transform: scale(1.8);
              }
          }

          .indicator-dot.processing {
              background: #00d4ff;
              color: #00d4ff;
              box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
          }

          .indicator-dot.matching {
              background: #00ff88;
              color: #00ff88;
              box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
          }

          .indicator-dot.qc {
              background: #ff6b35;
              color: #ff6b35;
              box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
          }

          @media (max-width: 1024px) {
              .benefits-content {
                  grid-template-columns: 1fr;
                  gap: var(--spacing-xl);
              }

              .tech-dashboard {
                  max-width: 600px;
                  margin: 0 auto;
              }
          }

          @media (max-width: 768px) {
              .benefits-list {
                  gap: var(--spacing-md);
              }

              .benefit-item {
                  padding: var(--spacing-md);
                  gap: var(--spacing-md);
              }

              .benefit-icon {
                  width: 45px;
                  height: 45px;
              }

              .benefit-icon svg {
                  width: 20px;
                  height: 20px;
              }

              .dashboard-content {
                  padding: var(--spacing-lg);
              }

              .tech-indicators {
                  flex-direction: column;
                  gap: var(--spacing-md);
                  align-items: flex-start;
              }
          }

          @media (max-width: 480px) {
              .benefit-item {
                  flex-direction: column;
                  text-align: center;
                  gap: var(--spacing-sm);
              }

              .benefit-icon {
                  align-self: center;
                  width: 40px;
                  height: 40px;
              }

              .benefit-content h4 {
                  font-size: 1.1rem;
              }

              .benefit-content p {
                  font-size: 0.9rem;
              }

              .metric-value {
                  font-size: 1.4rem;
              }

              .dashboard-header {
                  flex-direction: column;
                  gap: var(--spacing-sm);
                  text-align: center;
              }
          }

          .metric-fill[data-width="99.98"] {
              width: 99%;
          }

          .metric-fill[data-width="96"] {
              width: 96%;
          }

          .metric-fill[data-width="99.9"] {
              width: 99%;
          }

          .benefit-item:nth-child(1) {
              animation-delay: 0.1s;
          }

          .benefit-item:nth-child(2) {
              animation-delay: 0.2s;
          }

          .benefit-item:nth-child(3) {
              animation-delay: 0.3s;
          }

          .benefit-item:nth-child(4) {
              animation-delay: 0.4s;
          }

          @keyframes benefitSlideIn {
              from {
                  opacity: 0;
                  transform: translateX(-30px);
              }

              to {
                  opacity: 1;
                  transform: translateX(0);
              }
          }

          .benefit-item {
              animation: benefitSlideIn 0.8s ease forwards;
              opacity: 0;
          }

    :root {
    --gradient-ai: linear-gradient(135deg, #c10001, #00d4ff);
    --shadow-ai-light: 0 5px 20px rgba(193, 0, 1, 0.1);
    --shadow-card-light: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ai-hero-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.ai-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(193, 0, 1, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.015) 0%, transparent 60%);
    animation: aiBgFloat 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aiBgFloat {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.8;
    }
}

.ai-hero-section .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: stretch; /* Changed from center to stretch */
    position: relative;
    z-index: 2;
}

.ai-hero-section .hero-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
}

.ai-hero-section .hero-visual {
    position: relative;
    display: flex;
    align-items: center; /* Centers content vertically */
}

.ai-badge {
    background: var(--gradient-ai);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: var(--spacing-lg);
    animation: aiPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(193, 0, 1, 0.25);
    align-self: flex-start; /* Prevents badge from stretching */
}

@keyframes aiPulse {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(193, 0, 1, 0.25);
    }

    50% {
        box-shadow: 0 6px 20px rgba(193, 0, 1, 0.35);
    }
}

.ai-hero-section .hero-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.ai-hero-section .title-line {
    display: block;
    opacity: 100% !important;
}

.ai-hero-section .title-line.highlight {
    background: var(--gradient-ai);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero-section .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.big-coming-soon {
    text-align: center;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(193, 0, 1, 0.2);
    animation: comingSoonGlow 3s ease-in-out infinite;
}

.big-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: comingSoonSweep 4s linear infinite;
}

.coming-soon-text {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.launch-date {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

@keyframes comingSoonGlow {
    0%,
    100% {
        box-shadow: 0 8px 25px rgba(193, 0, 1, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 10px 30px rgba(193, 0, 1, 0.3);
        transform: scale(1.02);
    }
}

@keyframes comingSoonSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ai-prompt-interface {
    background: white;
    border: 2px solid rgba(193, 0, 1, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    pointer-events: none;
    box-shadow: var(--shadow-card-light);
    width: 100%; /* Ensures it fills the parent */
    display: flex;
    flex-direction: column;
}

.ai-prompt-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193, 0, 1, 0.05), transparent);
    animation: aiScan 3s linear infinite;
}

@keyframes aiScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ai-processing {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.processing-dots {
    display: flex;
    gap: 4px;
}

.processing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: processingDot 1.5s infinite;
}

.processing-dot:nth-child(1) {
    animation-delay: 0s;
}

.processing-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.processing-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes processingDot {
    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.prompt-input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid rgba(193, 0, 1, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    color: var(--text-primary);
    font-size: 0.9rem;
    resize: none;
    min-height: 100px;
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-normal);
    font-family: inherit;
    line-height: 1.5;
}

.prompt-input::placeholder {
    color: var(--text-muted);
}

.prompt-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(193, 0, 1, 0.15);
}

.ai-generate-btn {
    background: var(--gradient-ai);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    opacity: 0.8;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(193, 0, 1, 0.2);
}

.demo-report {
    background: var(--bg-secondary);
    border: 1px solid rgba(193, 0, 1, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    position: relative;
}

.demo-report::after {
    content: 'PREVIEW ONLY';
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-red);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.demo-report-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: var(--spacing-lg);
}

.demo-report-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.report-chart {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(193, 0, 1, 0.03), rgba(0, 212, 255, 0.03));
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border: 1px solid rgba(193, 0, 1, 0.08);
}

.chart-bar-ai {
    background: var(--gradient-ai);
    border-radius: var(--radius-sm);
    animation: chartGrowAI 3s ease-in-out infinite;
    width: 16px;
    box-shadow: 0 2px 8px rgba(193, 0, 1, 0.2);
}

.chart-bar-ai:nth-child(1) {
    height: 60%;
    animation-delay: 0s;
}

.chart-bar-ai:nth-child(2) {
    height: 80%;
    animation-delay: 0.3s;
}

.chart-bar-ai:nth-child(3) {
    height: 45%;
    animation-delay: 0.6s;
}

.chart-bar-ai:nth-child(4) {
    height: 90%;
    animation-delay: 0.9s;
}

.chart-bar-ai:nth-child(5) {
    height: 70%;
    animation-delay: 1.2s;
}

@keyframes chartGrowAI {
    0%,
    100% {
        transform: scaleY(0.85);
        opacity: 0.8;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .ai-hero-section .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        align-items: center; /* Reset alignment for mobile */
    }

    .ai-hero-section .hero-text {
        text-align: center;
    }

    .ai-badge {
        align-self: center; /* Center badge on mobile */
    }
}

@media (max-width: 640px) {
    .ai-hero-section {
        padding: var(--spacing-xl) 0;
    }

    .big-coming-soon {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }

    .coming-soon-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .launch-date {
        font-size: 0.9rem;
    }

    .ai-prompt-interface {
        padding: var(--spacing-lg);
    }

    .prompt-input {
        min-height: 80px;
        font-size: 0.85rem;
    }

    .report-chart {
        height: 150px;
        padding: var(--spacing-md);
    }

    .chart-bar-ai {
        width: 12px;
    }
}

@media (max-width: 480px) {
    .stat-item-ai {
        padding: var(--spacing-sm);
    }

    .stat-number-ai {
        font-size: 1.5rem;
    }

    .stat-label-ai {
        font-size: 0.75rem;
    }

    .ai-processing {
        font-size: 0.85rem;
    }

    .ai-generate-btn {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .demo-report-title {
        font-size: 1rem;
    }
}