.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 5rem 0 6rem;
  position: relative;
  text-align: center;
}

.hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.hero__title {
  font-size: var(--font-hero-title);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero__cta {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  gap: 0.4rem;
}

.chat-icon {
  position: absolute;
  top: 1.5rem;
  inset-inline-end: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-green);
  border: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  color: var(--color-white);
  font-weight: 700;
}

.chat-icon:hover { transform: scale(1.1); }

/* ── Mobile ── */
@media (max-width: 767px) {
  .hero {
    padding: 4rem 1rem 6rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a5a 100%);
  }

  .hero__title {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    padding: 0 0.5rem;
  }

  .hero__cta {
    font-size: 1rem;
    padding: 0.8rem 2.2rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
[dir="ltr"] .hero__cta-arrow {
  transform: scaleX(-1);
}
