.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 4rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(122,158,142,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Text side */
.hero__text {
  animation: fadeUp .9s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--light-sage);
  color: var(--forest);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.8rem;
}

.hero__badge::before {
  content: '🐾';
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6e66;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__detail-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-top: 2rem;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96, 132, 111, 0.18);
}

.hero__detail-card h3 {
  margin-bottom: .5rem;
  font-size: 1.15rem;
  color: var(--forest);
}

.hero__detail-sub {
  margin-bottom: 1rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--sage);
}

.hero__detail-list {
  list-style: disc inside;
  margin: 0 0 1.2rem;
  color: #3d4f46;
  line-height: 1.8;
}

.hero__detail-list li {
  margin-bottom: .55rem;
}

.hero__detail-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: .95rem;
  color: var(--forest);
  font-weight: 600;
}

.hero__detail-contact a {
  color: var(--forest);
  text-decoration: none;
}

.hero__detail-contact a:hover {
  text-decoration: underline;
}

/* Image side */
.hero__image-wrap {
  position: relative;
  animation: fadeUp .9s .2s ease both;
}

.hero__img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero__card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp .9s .4s ease both;
}

.hero__card-icon {
  font-size: 2rem;
}

.hero__card-text strong {
  display: block;
  font-size: .95rem;
  color: var(--forest);
}

.hero__card-text span {
  font-size: .8rem;
  color: var(--sage);
}

.hero__stats {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,103,74,.4);
}

.hero__stats strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
}

.hero__stats span {
  font-size: .78rem;
  opacity: .85;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    gap: 2.5rem;
  }

  .hero__stats {
    top: 1rem;
    right: 1rem;
  }
}
