/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-mid) 100%);
  text-align: center;
  padding: 60px 90px 40px;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  top: 60px;
  border: 4px solid var(--cream);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.hero-decor--left { left: 60px; }
.hero-decor--right { right: 60px; top: 90px; }

.logo {
  font-size: 3rem;
  font-weight: 800;
  color: var(--maroon);
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.tagline, .cta-copy {
  max-width: 640px;
  margin: 0 auto 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.get-started {
  margin-top: 20px;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 12px 34px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.get-started:hover { background: var(--maroon-dark); }

.steps {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.step h3 {
  margin: 0 0 4px;
  color: var(--maroon);
  font-size: 1.1rem;
}
.step p { margin: 0; font-size: 0.9rem; }

.testimonials {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 46px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.testimonials blockquote {
  max-width: 320px;
  margin: 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.4;
}
.testimonials cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
}
