.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.2rem;
  background: #47a358;
  color: #fff;
  border-radius: 6.25rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 0.375rem 0.9375rem rgba(71, 163, 88, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.cta-btn:hover {
  background: #2f7c3a;
  transform: translateY(-0.125rem) scale(1.05);
  box-shadow: 0 0.5rem 1.25rem rgba(47, 124, 58, 0.4);
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 10%;
  max-width: 75rem;
  margin: 0 auto;
  gap: 3rem;
  border-radius: 1.5rem;
}

.hero-text {
  position: relative;
  flex: 1;
  margin-top: -5rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #10824c;
  line-height: 1.3;
  max-width: 40.625rem;
  opacity: 0;
  transform: translateX(-1.875rem);
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.2s;
  font-family: 'Poppins', sans-serif;
}

.hero-text h1 span {
  color: #4cbb6a;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2f3e2f;
  margin-top: 1rem;
  max-width: 31.25rem;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.6s;
  font-family: 'Inter', sans-serif;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 100%;
  margin-top: -7rem;
}

.flower-wrapper {
  position: relative;
  display: inline-block;
}

#seedle-flower.sway {
  animation: floatSway 6s ease-in-out infinite;
  transform-origin: bottom center;
}

.flower-wrapper img#seedle-flower {
  width: 100%;
  max-width: 39rem;
  height: auto;
  position: relative;
  z-index: 2;
}

.flower-wrapper img.hero-blob {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 120%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.72) 0%, rgba(255, 200, 50, 0) 75%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: blur(2.5rem);
}

.how-it-works, .why-seedle {
  padding: 4rem 10%;
  max-width: 75rem;
  margin: 0 auto;
  margin-top: 5rem;
  text-align: center;
}

.how-it-works h2, .why-seedle h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #10824c;
  margin-bottom: 2.5rem;
  font-family: 'Poppins', sans-serif;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.step {
  position: relative;
  width: 16.25rem;
  height: 16.25rem;
  background: white;
  border-radius: 50%;
  padding: 2rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.step.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease-out;
}

.step-number {
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #b08963;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.15);
}

.step i {
  font-size: 2rem;
  color: #47a358;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #10824c;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #2f3e2f;
  font-family: 'Inter', sans-serif;
  max-width: 11.25rem;
  text-align: center;
}

.why-seedle .benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit {
  flex: 1 1 17.5rem;
  max-width: 20rem;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
}

.benefit.show {
  animation: benefitFadeUp 0.9s ease-out forwards;
}

@keyframes benefitFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.benefit i {
  font-size: 2rem;
  color: #47a358;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #10824c;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.benefit p {
  font-size: 1rem;
  line-height: 1.5;
  color: black;
  font-family: 'Inter', sans-serif;
}

.working-with {
  text-align: center;
  padding: 40px 20px;
}

.working-with h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #10824c;
  margin-bottom: 2.5rem;
  font-family: 'Poppins', sans-serif;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.partner-logo {
  max-height: 80px;
  width: auto;
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-0.5rem) rotate(2deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-0.5rem) rotate(-2deg); }
}
