/* ==================================================
   HERO — PROFESSIONAL ENTERPRISE REDESIGN
   ================================================== */

   .hero-mm {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0f172a;
    color: #ffffff;
    overflow: hidden;
  }
  
  /* Background Layer */
  .hero-mm__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 8s ease;
    z-index: 1;
  }
  
  /* Overlay */
  .hero-mm__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.75) 40%, rgba(15,23,42,0.6) 100%);
    z-index: 2;
  }
  
  .hero-mm__container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 6vw;
  }
  
  .hero-mm__content {
    max-width: 820px;
  }
  
  /* Eyebrow */
  .hero-mm__eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.75;
    margin-bottom: 1rem;
  }
  
  /* Headline */
  .hero-mm__title {
    font-size: clamp(2.4rem, 4vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  /* Lead Paragraph */
  .hero-mm__lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 1.2rem;
  }
  
  /* Supporting Paragraph */
  .hero-mm__sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2rem;
  }
  
  /* Buttons */
  .hero-mm__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  
  .hero-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }
  
  .hero-btn--primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  }
  
  .hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
  }
  
  .hero-btn--secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
  }
  
  .hero-btn--secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
  }
  
  /* Highlights */
  .hero-mm__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #e2e8f0;
    opacity: 0.9;
  }
  
  /* Scroll Fade */
  .hero-mm.is-scrolling {
    opacity: 0.9;
    transition: opacity 0.4s ease;
  }
  

  /* ===== HERO MOBILE & TABLET IMPROVEMENTS ===== */
@media (max-width: 1024px) {
  .hero-mm {
    min-height: 75vh;
    padding: 4vw 3vw;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-mm__container {
    padding: 0 4vw;
  }

  .hero-mm__content {
    max-width: 100%;
    margin-top: 6vh;
  }

  .hero-mm__eyebrow {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .hero-mm__title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-mm__lead {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-mm__sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-mm__actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-mm__highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
    font-size: 0.85rem;
  }
}
