 /* DESIGN SYSTEM BURCU TRANS 2026 - ORANGE EDITION */
  :root {
    --brand-orange: #2C7A7B;
    --brand-orange-soft: rgba(255, 92, 0, 0.1);
  }

  .text-gradient {
    /* Degrade modern de la portocaliu aprins spre un roșu-portocaliu intens */
    background: linear-gradient(135deg, #2C7A7B 0%, #2C7A7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }

  .fw-extra-bold { font-weight: 800; }

  .divider-modern {
    height: 4px; 
    width: 60px; 
    background: var(--brand-orange); 
    border-radius: 2px;
  }

  /* Bento Grid & Images */
  .image-bento-grid { position: relative; }
  
  .badge-tech {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.9); padding: 8px 15px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    backdrop-filter: blur(5px); z-index: 2;
    color: #111;
  }

  .hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  }

  .glass-effect {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3) !important;
  }

  .floating-stats-card {
    position: absolute; bottom: 20px; left: -10px;
    z-index: 10; min-width: 220px;
  }

  .icon-circle {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background-color: var(--brand-orange) !important;
  }

  /* Expertise Cards Interactive */
  .card-modern-interactive {
    background: #fff; position: relative; overflow: hidden;
    transition: all 0.3s ease; border: 1px solid #f0f0f0 !important;
  }

  .expertise-number {
    font-size: 1rem; font-weight: 800; 
    color: var(--brand-orange); 
    background: var(--brand-orange-soft); 
    padding: 8px;
    border-radius: 8px; min-width: 40px; text-align: center;
  }

  .card-modern-interactive:hover {
    background: #111; transform: translateX(10px);
  }
  
  .card-modern-interactive:hover h5, 
  .card-modern-interactive:hover p,
  .card-modern-interactive:hover .expertise-number {
    color: #fff !important;
  }

  .hover-indicator {
    position: absolute; left: 0; top: 0; width: 4px; height: 100%;
    background: var(--brand-orange); 
    transform: scaleY(0); transition: transform 0.3s ease;
  }

  .card-modern-interactive:hover .hover-indicator {
    transform: scaleY(1);
  }

  .cta-box-modern {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }