  /* Enhanced Enterprise Styles */
    .hero-gradient {
      background: linear-gradient(165deg, 
        rgba(10, 10, 10, 0.97) 0%, 
        rgba(20, 20, 22, 0.95) 50%,
        rgba(30, 30, 32, 0.93) 100%
      );
      position: relative;
      overflow: hidden;
    }

    .hero-gradient::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 74, 0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .text-gradient-gold {
      background: linear-gradient(135deg, #c9a24a 0%, #e6c98b 50%, #d4af37 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-card {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.45);
  transition: all .35s ease;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}

.stat-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(212,175,55,0.35);
}


    .process-step {
      position: relative;
      padding-left: 4rem;
    }

    .process-step::before {
      content: '';
      position: absolute;
      left: 1.5rem;
      top: 3rem;
      bottom: -2rem;
      width: 2px;
      background: linear-gradient(180deg, rgba(201, 162, 74, 0.5), rgba(201, 162, 74, 0.1));
    }

    .process-step:last-child::before {
      display: none;
    }

    .step-number {
      position: absolute;
      left: 0;
      top: 0;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #c9a24a, #e6c98b);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.25rem;
      color: #1f2023;
      box-shadow: 0 10px 30px rgba(201, 162, 74, 0.3);
      z-index: 10;
    }

    .value-card {
      position: relative;
      overflow: hidden;
    }

    .value-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .value-card:hover::after {
      left: 100%;
    }

    .testimonial-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.90));
      border-left: 4px solid #c9a24a;
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -1rem;
      left: 1.5rem;
      font-size: 6rem;
      font-family: 'Playfair Display', serif;
      color: rgba(201, 162, 74, 0.15);
      line-height: 1;
    }

    .parallax-section {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    @keyframes fadeInUpStagger {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up-stagger {
      animation: fadeInUpStagger 0.8s ease-out forwards;
      opacity: 0;
    }

    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    .delay-500 { animation-delay: 0.5s; }

    .icon-feature {
      width: 4rem;
      height: 4rem;
      border-radius: 1rem;
      background: linear-gradient(135deg, rgba(201, 162, 74, 0.1), rgba(201, 162, 74, 0.05));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(201, 162, 74, 0.2);
      transition: all 0.3s ease;
    }

    .icon-feature:hover {
      transform: rotate(5deg) scale(1.1);
      background: linear-gradient(135deg, rgba(201, 162, 74, 0.2), rgba(201, 162, 74, 0.1));
      box-shadow: 0 10px 30px rgba(201, 162, 74, 0.2);
    }

  .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5f5f5;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.trust-badge svg {
  color: #d4af37;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,0.35);
  transition: all .25s ease;
}



    .cta-section-premium {
      background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section-premium::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(201, 162, 74, 0.1) 0%, transparent 70%);
      animation: rotate 30s linear infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    @media (max-width: 768px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }