/* Fix 2: Features expect pseudo element */
.features-expect::before {
  width: 100% !important;
  left: 0 !important;
  transform: none !important;
}

/* Fix 3: Hero section */
.hero-bg-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-gradient-overlay {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero-headline-topright {
  max-width: 60%;
  word-wrap: break-word;
}

/* Mobile fixes for "How It Works" section */
@media (max-width: 768px) {
  .section.features {
    padding: 3rem 0 !important;
    overflow: visible !important;
  }

  .section.features .container {
    padding: 0 1rem !important;
    overflow: visible !important;
  }

  .feature-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .feature-item {
    padding: 1.25rem !important;
    margin-bottom: 0 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .feature-icon {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
    margin-right: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .feature-text {
    flex: 1 !important;
  }

  .feature-text h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--primary) !important;
  }

  .feature-text p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: var(--text) !important;
  }

  /* Why Choose 2Crew cards mobile fixes */
  .why-choose-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
    padding: 0 !important;
  }

  .why-choose-card {
    padding: 1.25rem !important;
    margin-bottom: 0 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .why-choose-icon {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
    margin-right: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .why-choose-content {
    flex: 1 !important;
  }

  .why-choose-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--primary) !important;
  }

  .why-choose-content p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: var(--text) !important;
  }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
  .feature-list {
    gap: 0.75rem !important;
  }

  .feature-item {
    padding: 1rem !important;
  }

  .feature-text h3 {
    font-size: 1rem !important;
  }

  .feature-text p {
    font-size: 0.9rem !important;
  }

  /* Why Choose 2Crew cards small screen fixes */
  .why-choose-grid {
    gap: 0.75rem !important;
  }

  .why-choose-card {
    padding: 1rem !important;
  }

  .why-choose-content h3 {
    font-size: 1rem !important;
  }

  .why-choose-content p {
    font-size: 0.9rem !important;
  }
}

