/* ── HOME PAGE CSS ── */

/* HERO */
.hero {
  min-height: 92vh; background: linear-gradient(135deg, #d4edda 0%, #b7dfc3 40%, #e8f5e9 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.4;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.orb1 { width: 400px; height: 400px; background: #a8d5b5; top: -100px; right: 100px; animation-delay: 0s; }
.orb2 { width: 250px; height: 250px; background: #4a9463; bottom: 50px; left: 10%; animation-delay: 3s; opacity: 0.2; }
.orb3 { width: 180px; height: 180px; background: #d4edda; top: 30%; left: 40%; animation-delay: 5s; opacity: 0.3; }
@keyframes floatOrb { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-20px) scale(1.05); } }

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1; padding: 60px 24px;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.7);
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; color: var(--green-deep); margin-bottom: 24px;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.5);
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem); font-style: italic;
  color: var(--green-deep); margin-bottom: 20px; line-height: 1.1;
}
.hero-sub { font-size: 1.2rem; color: var(--text-mid); margin-bottom: 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.6rem; color: var(--green-deep); font-family: 'Playfair Display', serif; }
.stat span { font-size: 0.8rem; color: var(--text-mid); }
.stat-div { width: 1px; height: 40px; background: rgba(0,0,0,0.15); }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  position: relative;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float {
  position: absolute; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-radius: 16px;
  padding: 12px 18px; font-size: 0.85rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.6);
  animation: heroFloat 4s ease-in-out infinite;
}
.float1 { bottom: 28px; left: -20px; animation-delay: 1s; }
.float2 { top: 40px; right: -20px; animation-delay: 2.5s; }

/* TRUST BAR */
.trust-bar {
  background: var(--green-deep); color: white; padding: 14px 24px;
}
.trust-inner {
  display: flex; gap: 32px; justify-content: center;
  flex-wrap: wrap; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }

/* WHY SECTION */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.why-card {
  padding: 32px 28px; border-radius: var(--radius);
  border: 2px solid var(--green-light);
  background: white; transition: var(--transition);
}
.why-card:hover {
  border-color: var(--green-dark);
  box-shadow: var(--shadow); transform: translateY(-4px);
  background: var(--green-light);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.why-card p { color: var(--text-mid); font-size: 0.95rem; }

/* TESTIMONIALS */
.testimonial-section { background: var(--sand); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: white; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border-top: 4px solid var(--green-dark);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 12px; }
.testi-text { font-style: italic; color: var(--text-mid); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}

/* NEWSLETTER */
.newsletter-section { background: var(--green-light); }
.newsletter-box {
  max-width: 900px; margin: 0 auto;
  background: white; border-radius: 24px;
  padding: 40px 48px; box-shadow: var(--shadow);
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
}
.nl-text { flex: 1; }
.nl-text h3 { font-size: 1.5rem; margin-bottom: 8px; }
.nl-text p { color: var(--text-mid); }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 40px 16px; }
  .hero-visual { display: none; }
  .newsletter-box { flex-direction: column; padding: 28px 24px; }
}
