/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-left: 6vw;
  padding-right: 4vw;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 50%, #fff9e6 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(76,175,80,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249,168,37,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--green-light);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(76,175,80,0.15);
}

.dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span { color: var(--green); }

.hero-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat span {
  font-size: 12px;
  color: var(--text-light);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* HERO RIGHT SIDE */
.hero-image {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-illustration {
  font-size: clamp(120px, 18vw, 200px);
  filter: drop-shadow(0 20px 40px rgba(45,106,45,0.2));
  animation: float 4s ease-in-out infinite;
  user-select: none;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: floatCard 5s ease-in-out infinite;
}

.hero-card-float i { font-size: 18px; }

.card1 { top: 15%; left: 0; animation-delay: 0s; }
.card1 i { color: var(--yellow); }
.card2 { bottom: 20%; left: 5%; animation-delay: 1.5s; }
.card2 i { color: var(--green); }
.card3 { top: 20%; right: 5%; animation-delay: 0.8s; }
.card3 i { color: #e53935; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── FEATURES ── */
.features {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
  background: var(--white);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-icon.green  { background: var(--green-pale); color: var(--green); }
.feature-icon.yellow { background: var(--yellow-pale); color: var(--yellow); }
.feature-icon.red    { background: #ffebee; color: #e53935; }
.feature-icon.blue   { background: #e3f2fd; color: #1976d2; }
.feature-icon.sky    { background: #e1f5fe; color: #0288d1; }
.feature-icon.orange { background: #fff3e0; color: #f57c00; }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.feature-card:hover .card-link { gap: 10px; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f5f0 0%, #f1f8e9 100%);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
}

.step:hover { transform: translateY(-4px); }

.step-num {
  position: absolute;
  top: -16px; left: 24px;
  background: var(--green);
  color: var(--white);
  font-family: 'Baloo 2', cursive;
  font-size: 18px;
  font-weight: 800;
  padding: 2px 12px;
  border-radius: 20px;
}

.step-icon {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

.step-arrow {
  font-size: 20px;
  color: var(--green-light);
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
  }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-sub     { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-image    { display: none; }
}