.case-study-hero {
      padding-top: 14rem;
      padding-bottom: 6rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #light-rays-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    .case-study-hero .container {
      position: relative;
      z-index: 1;
    }

    .case-study-card {
      background: rgba(var(--card-bg-rgb), 0.6);
      /* Edge Shine / Liquid Glass Effect */
      border: 1px solid rgba(255, 255, 255, 0.08);
      background-image: radial-gradient(
        circle at var(--card-mouse-x, 50%) var(--card-mouse-y, 50%),
        rgba(255, 255, 255, 0.04) 0%,
        transparent 35%
      );
      border-radius: 32px;
      padding: 4rem;
      max-width: 1100px;
      margin: 0 auto 6rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, border-color 0.3s ease, background-position 0.2s ease;
    }

    .case-study-card:hover {
      border-color: rgba(59, 130, 246, 0.3);
    }

    .case-study-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
      background-size: 200% auto;
      animation: gradientShift 5s linear infinite;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    .case-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .case-info h2 {
      font-size: clamp(2.25rem, 5vw, 3rem);
      margin-bottom: 1rem;
      line-height: 1.1;
      font-weight: 800;
    }

    .case-tag {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(236, 72, 153, 0.2));
      color: #fff;
      padding: 0.6rem 1.4rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 2rem;
      display: inline-block;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .stat-item {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
      padding: 2.25rem 1.5rem;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 180px;
    }

    .stat-item:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(59, 130, 246, 0.4);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .stat-number {
      display: block;
      font-size: clamp(2.25rem, 4vw, 2.75rem);
      font-weight: 900;
      background: linear-gradient(135deg, #fff 30%, var(--primary-color) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .stat-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .case-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      text-align: left;
    }

    .case-body h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: #fff;
    }

    .case-body p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .business-details {
      background: rgba(255, 255, 255, 0.02);
      border-radius: 24px;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .business-details h4 {
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
    }

    .detail-row {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .detail-row:last-child {
      border-bottom: none;
    }

    .detail-label {
      color: var(--text-muted);
      font-weight: 600;
    }

    .detail-value {
      font-weight: 700;
      color: #fff;
    }

    @media (max-width: 992px) {
      .case-header, .case-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .case-study-card {
        padding: 2rem;
      }
    }

    @media (max-width: 600px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .stat-item {
        min-height: 140px;
        padding: 1.5rem 1rem;
      }
      .case-study-card {
        padding: 1.25rem;
      }
      .business-details {
        padding: 1.25rem;
      }
    }

    /* Background Enhancements */
    .bg-grid-layer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
      background-image: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(59, 130, 246, 0.1) 0%, 
        transparent 15%),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 100% 100%, 40px 40px;
    }

    .bg-noise {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
      opacity: 0.015;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    body {
      background-attachment: fixed;
    }
