:root {
  --cream: #faf7f2;
  --milk: #fffef9;
  --soft-green: #e8f0e9;
  --sage: #7a9e7e;
  --forest: #2d4a3e;
  --gold: #c9a86c;
  --charcoal: #1f2a24;
  --muted: #6b7c72;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 74, 62, 0.08);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest);
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #1f362c;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(122, 158, 126, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 168, 108, 0.12), transparent),
    var(--cream);
}

.hero-content {
  max-width: 720px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--soft-green);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--sage), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 4px 20px rgba(45, 74, 62, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 74, 62, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(45, 74, 62, 0.2);
}

.btn-ghost:hover {
  background: rgba(45, 74, 62, 0.05);
}

/* Floating milk drops decoration */
.hero-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,254,249,0.9), rgba(232,240,233,0.6));
  box-shadow: 0 20px 40px rgba(45, 74, 62, 0.08);
  opacity: 0.7;
}

.deco-1 { top: 18%; left: 8%; width: 90px; height: 90px; }
.deco-2 { top: 55%; right: 10%; width: 140px; height: 140px; }
.deco-3 { bottom: 15%; left: 15%; width: 70px; height: 70px; }

/* Features */
.section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--milk);
  border: 1px solid rgba(45, 74, 62, 0.07);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45, 74, 62, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--soft-green);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About strip */
.about {
  background: var(--forest);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(122, 158, 126, 0.3), transparent 50%);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 700px) {
  .about-inner { grid-template-columns: 1fr; }
}

.about h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about p {
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* CTA */
.cta {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream), var(--soft-green));
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer .brand {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Responsive nav */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding-top: 6rem; }
}
