/* ==========================================================================
   FIELD INTELLIGENCE SHOWCASE
   Field Intelligence Showcase section with gradient background
   ========================================================================== */

  /* Field Intelligence Showcase Section */
  .field-intelligence-showcase {
    background: var(--gradient-mesh), var(--gradient-dark);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }

  .field-intelligence-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }

  .showcase-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 1024px) {
    .showcase-content {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  .showcase-text {
    text-align: left;
  }

  .showcase-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .showcase-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
  }

  .showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,255,255,.2);
  }

  .showcase-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(255,255,255,.3);
  }

  .showcase-video {
    position: relative;
  }

  @media (max-width: 1023px) {
    .showcase-text {
      text-align: center;
    }

    .showcase-cta {
      display: inline-flex;
    }
  }
