/* Alimentia - Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #1D9E75;
  --primary-dark: #167A5B;
  --primary-light: #E8F5EF;
  --text: #1A2B22;
  --text-muted: #6B7D74;
  --bg: #FAFBF8;
  --surface: #FFFFFF;
  --border: #E2E8E5;
  --danger: #E24B4A;
  --warning: #EF9F27;
  --info: #3B82F6;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo span { font-weight: 700; font-size: 18px; color: var(--primary); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--primary); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn {
  padding: 9px 18px !important;
  font-size: 13px !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(29,158,117,0.25);
}
.nav-links .btn:hover {
  box-shadow: 0 4px 12px rgba(29,158,117,0.35);
}

/* HERO */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* FEATURES */
.features { padding: 60px 0; }
.features h2 { text-align: center; font-size: 32px; margin-bottom: 12px; }
.features .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 16px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,158,117,0.08); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Vibrant colored icons per feature */
.feature-card:nth-child(1) .feature-icon { background: #E8F5EF; color: #1D9E75; }
.feature-card:nth-child(2) .feature-icon { background: #DBEAFE; color: #3B82F6; }
.feature-card:nth-child(3) .feature-icon { background: #FEF3C7; color: #F59E0B; }
.feature-card:nth-child(4) .feature-icon { background: #FCE7F3; color: #EC4899; }
.feature-card:nth-child(5) .feature-icon { background: #E0E7FF; color: #6366F1; }
.feature-card:nth-child(6) .feature-icon { background: #D1FAE5; color: #10B981; }

/* HERO TRUST */
.hero-trust {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust span:first-child { color: #F59E0B; font-weight: 600; }

/* SOCIAL PROOF */
.social-proof {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg) 100%);
}
.social-proof h2 { text-align: center; font-size: 32px; margin-bottom: 48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29,158,117,0.12);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* PRICING */
.pricing { padding: 60px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing h2 { text-align: center; font-size: 32px; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.pricing-card.featured { border-color: var(--primary); background: var(--primary-light); position: relative; }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.pricing-period { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-features li { padding: 6px 0; font-size: 14px; color: var(--text-muted); }
.pricing-features li::before { content: "\2713"; color: var(--primary); font-weight: 700; margin-right: 8px; }

/* TARGETS */
.targets { padding: 60px 0; }
.targets h2 { text-align: center; font-size: 32px; margin-bottom: 12px; }
.targets .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 40px; }
.targets-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.target-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FOOTER */
footer {
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
footer a { color: var(--primary); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }

/* LEGAL PAGES */
.legal { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: 32px; margin-bottom: 8px; }
.legal .date { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 20px; margin: 28px 0 12px; color: var(--primary-dark); }
.legal p, .legal li { font-size: 15px; color: var(--text-muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
