/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Navbar ── */
.nav-scrolled {
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(5, 150, 105, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #059669;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #059669 !important; }

/* ── Buttons ── */
.btn-primary {
  background: #059669;
  color: #FFFDF7;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 9999px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #059669;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 9999px;
  border: 2px solid rgba(5, 150, 105, 0.3);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: #ECFDF5;
  border-color: #059669;
  transform: translateY(-2px);
}

/* ── Badges ── */
.badge-hero {
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  backdrop-filter: blur(8px);
}
.badge-tag {
  background: #059669;
  color: #FFFDF7;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
}
.badge-tag.gift {
  background: #D97706;
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
}
.section-label-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FFF3DB;
  background: rgba(255, 243, 219, 0.15);
  border: 1px solid rgba(255, 243, 219, 0.25);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, #FFFDF7 0%, #FFF9ED 40%, #ECFDF5 100%);
  position: relative;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: #A7F3D0;
  top: -150px;
  right: -100px;
}
.blob-2 {
  width: 350px;
  height: 350px;
  background: #FFF3DB;
  bottom: -80px;
  left: -60px;
}
.blob-3 {
  width: 200px;
  height: 200px;
  background: #D1FAE5;
  top: 40%;
  left: 45%;
}
.float-card-1 { animation: floatA 4s ease-in-out infinite; }
.float-card-2 { animation: floatB 5s ease-in-out infinite; }
.float-card-3 { animation: floatC 4.5s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ── Cards ── */
.card {
  background: #FFFDF7;
  border-radius: 1.25rem;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.06);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.12);
}

/* ── Feature Cards ── */
.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

/* ── Inputs ── */
.input-field {
  background: #FFFDF7;
  border: 1.5px solid rgba(5, 150, 105, 0.15);
  border-radius: 0.75rem;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  color: #064E3B;
  font-family: 'Nunito', system-ui, sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}
.input-field::placeholder { color: rgba(6, 78, 59, 0.35); }
.input-field:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* ── Success Message ── */
.success-message {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Menu ── */
.mobile-menu {
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero h1 { font-size: 2.5rem !important; }
  .hero .relative.min-h-\[420px\] { display: none; }
  .nav-scrolled { background: rgba(255, 253, 247, 0.98); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
