.hero {
  padding: 80px 20px 0 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #f4f6f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #475569;
  margin-bottom: 35px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #64748b;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 16px 10px;
  }
}
