/* Responsive hero title sizing for landing page */
.hero-title {
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* Medium screens (1024px - 1399px): keep text away from face in background */
@media (min-width: 1024px) and (max-width: 1399px) {
  .hero-content-left {
    max-width: 340px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 2.5vw, 2.2rem);
    line-height: 1.2;
  }

  .hero-grid {
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    justify-content: space-between;
  }

  .hero-chat-card {
    max-width: 320px;
    margin-left: auto;
  }
}

/* Medium-large screens (1200px - 1600px): more breathing room */
@media (min-width: 1200px) and (max-width: 1599px) {
  .container {
    max-width: 1140px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* Specific 1400-1599px range */
@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-content-left {
    max-width: 480px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 3vw, 2.7rem);
    line-height: 1.18;
  }

  .hero-grid {
    grid-template-columns: minmax(420px, 500px) 1fr;
  }
}

/* Large screens (1600px+): comfortable max-width */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 960px) {
  .hero-title {
    font-size: clamp(2.1rem, 5.8vw, 2.6rem);
    line-height: 1.2;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(1.75rem, 6.4vw, 2.2rem);
    line-height: 1.15;
  }
}
