/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3399ff 100%);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}

/* Hero layout grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* Hero on desktop */
@media (min-width: 769px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    text-align: left;
  }
  .hero {
    text-align: left;
  }
}

/* Hero content */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  margin: 0 0 12px 0;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.13;
  color:#FFFFFF;
}

.hero-title-main {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.95;
}

.hero-tagline {
  margin: 8px 0 24px;
  max-width: 700px;
  font-size: 1rem;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
}

/* Hero on small screens (mobile) */
@media (max-width: 768px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin: 6px 0 20px;
  }

  .hero-ctas {
    gap: 10px;
  }
}

/* Hero on very small phones */
@media (max-width: 480px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
    margin: 4px 0 16px;
  }
}

/* Hero buttons */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Hero image */
.hero-image-container {
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px; 
}

/* Desktop image */
@media (min-width: 769px) {
  .hero-image {
    max-width: 100%;
    height: auto;
  }
}