* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f2e9;
  font-family: Inter, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

/* Custom Cursor */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 163, 93, 0.15) 0%, rgba(54, 163, 93, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: rgba(9, 42, 22, 0.75);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 20;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 56px;
  height: 56px;
}

.nav-title {
  font-size: 1.3rem;
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  color: #ffffff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 40px;
  background: #36a35d;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(54, 163, 93, 0.2);
  text-decoration: none;
  display: inline-block;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, #0b3a1a, #1d723c);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  opacity: 0;
  animation: heroFade 1.4s ease-out forwards;
}

.hero-title {
  font-size: 4rem;
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
}

.w-glow {
  color: #c8f7d3;
  display: inline-block;
  text-align: center;
}

.slot-word {
  display: inline-block;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.25rem;
  opacity: 0.85;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 32px;
  padding: 14px 32px;
  border: #c8f7d3 solid 0.15em;
  border-radius: 0.25em;
  color: #c8f7d3;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: border 300ms, color 300ms;
  user-select: none;
  text-decoration: none;
  box-sizing: border-box;
}

.cta-btn:hover {
  color: #0b3a1a;
}

.cta-btn:active {
  border-color: #78ffab;
}

.cta-btn::after,
.cta-btn::before {
  content: "";
  position: absolute;
  width: 9em;
  aspect-ratio: 1;
  background: #c8f7d3;
  opacity: 50%;
  border-radius: 50%;
  transition: transform 500ms, background 300ms;
  z-index: 0;
}

.cta-btn::before {
  left: 0;
  transform: translateX(-8em);
}

.cta-btn::after {
  right: 0;
  transform: translateX(8em);
}

.cta-btn:hover:before {
  transform: translateX(-1em);
}

.cta-btn:hover:after {
  transform: translateX(1em);
}

.cta-btn:active:before,
.cta-btn:active:after {
  background: #78ffab;
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 130px;
  background: #f4f2e9;
  border-top-left-radius: 60% 100%;
  border-top-right-radius: 60% 100%;
  z-index: 2;
}

/* About Section */
.about-section {
  position: relative;
  padding: 120px 40px;
  background: #f4f2e9;
  overflow: hidden;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #36a35d;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease 0.2s;
}

.about-content.visible .section-label {
  opacity: 1;
  transform: translateX(0);
}

.about-title {
  font-size: 3.5rem;
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  color: #0b3a1a;
  margin-bottom: 30px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.3s;
}

.about-content.visible .about-title {
  opacity: 1;
  transform: translateY(0);
}

.about-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #2d5a3a;
  max-width: 800px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.4s;
}

.about-content.visible .about-description {
  opacity: 1;
  transform: translateY(0);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(54, 163, 93, 0.08), rgba(29, 114, 60, 0.05));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(54, 163, 93, 0.15);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
  transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(54, 163, 93, 0.2);
  border-color: rgba(54, 163, 93, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(54, 163, 93, 0.15), rgba(29, 114, 60, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-icon.icon-placeholder {
  border: 2px dashed rgba(54, 163, 93, 0.3);
  background: transparent;
  font-size: 0.85rem;
  color: #36a35d;
  text-align: center;
  padding: 8px;
  line-height: 1.3;
}

.feature-title {
  font-size: 1.5rem;
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  color: #0b3a1a;
  margin-bottom: 15px;
}

.feature-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d5a3a;
  opacity: 0.9;
}

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

@media (max-width: 768px) {
  .nav-logo {
    width: 44px;
    height: 44px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
