html.lenis,
        html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .text-gradient {
            background: linear-gradient(135deg, hsl(187 92% 50%) 0%, hsl(199 89% 48%) 40%, hsl(262 83% 58%) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-dark {
            background: linear-gradient(180deg, hsl(222 47% 11%) 0%, hsl(220 26% 14%) 100%);
        }

        /* Isolated Premium Glass Card Style */
        .service-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            /* Explicit properties prevent general layout blinking */
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.5s ease,
                box-shadow 0.5s ease;
            position: relative;
            perspective: 1000px;
            will-change: transform;
            z-index: 1;
        }

        .service-card:hover {
            z-index: 10;
            border-color: hsl(199 89% 48% / 0.4);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        }

        /* Shine Effect */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(199, 89%, 48%, 0.05), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
            pointer-events: none;
        }

        .service-card:hover::before {
            transform: translateX(100%);
        }

        /* Icon Container Animation */
        .icon-box {
            transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
        }

        .service-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, hsl(199 89% 48%) 0%, hsl(262 83% 58%) 100%);
            color: white !important;
            border-color: transparent;
        }

        .step-number {
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
            color: transparent;
        }
        /* From index backgroundImage config */
  .bg-gradient-primary {
    background-image: linear-gradient(
      135deg,
      hsl(199 89% 48%) 0%,
      hsl(262 83% 58%) 100%
    );
  }

  .bg-gradient-electric {
    background-image: linear-gradient(
      90deg,
      hsl(187 92% 50%) 0%,
      hsl(199 89% 48%) 50%,
      hsl(262 83% 58%) 100%
    );
  }
