:root {
  --sage: #6B9B7A;
  --sage-light: #E8F0EA;
  --sage-dark: #4A7A5A;
  --warm-white: #FAFAF8;
  --warm-gray: #6B6B6B;
  --text: #2D3B2F;
  --text-light: #5A6B5C;
}

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

.hidden {
  display: none !important;
}

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

h1, h2, h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
}

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

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-logo {
  max-width: 640px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.hero .tagline {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 100px;
}

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--sage);
}

.email-form button {
  padding: 16px 32px;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.email-form button:hover {
  background: var(--sage-dark);
}

.form-note {
  font-size: 0.875rem;
  color: var(--warm-gray);
  margin-top: 12px;
}

/* Benefits */
.benefits {
  padding: 80px 0;
  background: white;
}

.benefits h2 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 48px;
  color: var(--text-light);
}

.benefits-grid {
  display: grid;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sage);
}

.benefit h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit p {
  color: var(--text-light);
  font-size: 1rem;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid #E0E0E0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
}

.faq-answer {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: var(--sage-light);
  text-align: center;
}

.cta h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.cta .email-form {
  margin-bottom: 0;
}

/* Footer */
footer {
  padding: 40px 0;
  background: white;
  border-top: 1px solid #E0E0E0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--sage);
}

.footer-copy {
  color: var(--warm-gray);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-logo {
    max-width: 320px;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input[type="email"] {
    min-width: 100%;
  }

  .email-form button {
    width: 100%;
  }

  .benefit {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
