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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fefce8;
  color: #1a1a2e;
  line-height: 1.6;
}

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

/* Header */
.header {
  background: #15803d;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(21, 128, 61, 0.25);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo span {
  color: #fefce8;
}

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

.nav a {
  color: #fefce8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.8;
}

.nav .nav-cta {
  background: #fefce8;
  color: #15803d;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fefce8;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #fefce8 0%, #f0fdf4 50%, #ecfdf5 100%);
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #15803d;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  color: #374151;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #15803d;
  color: #fff;
}

.btn-primary:hover {
  background: #166534;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(21, 128, 61, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #15803d;
  border: 2px solid #15803d;
}

.btn-secondary:hover {
  background: #15803d;
  color: #fff;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #059669;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #15803d;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

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

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(21, 128, 61, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #ecfdf5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #15803d;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 8px;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Stats Bar */
.stats-bar {
  background: #15803d;
  padding: 60px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fefce8;
}

.stat-item-label {
  font-size: 1rem;
  color: #bbf7d0;
  margin-top: 6px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(21, 128, 61, 0.1);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: #15803d;
  border-width: 2px;
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #15803d;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 4px;
}

.pricing-unit {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: #059669;
  font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e5e7eb;
}

.testimonial-text {
  font-style: italic;
  color: #374151;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 600;
  color: #15803d;
  font-size: 0.9rem;
}

.testimonial-role {
  color: #6b7280;
  font-size: 0.85rem;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #15803d;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: #059669;
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 8px 0 4px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #15803d, #059669);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-section .btn {
  background: #fefce8;
  color: #15803d;
  font-weight: 700;
}

.cta-section .btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: #14532d;
  color: #fefce8;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  color: #bbf7d0;
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fefce8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbf7d0;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #bbf7d0;
}

.footer-bottom a {
  color: #fefce8;
  text-decoration: underline;
}

/* About Page */
.page-header {
  background: linear-gradient(135deg, #15803d, #059669);
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  color: #4b5563;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: #f0fdf4;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #dcfce7;
}

.value-card h3 {
  color: #15803d;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0;
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info h2 {
  color: #15803d;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: #ecfdf5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.95rem;
  color: #15803d;
  margin-bottom: 2px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #15803d;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-form h2 {
  color: #15803d;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafafa;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group .btn {
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #15803d;
    padding: 16px 24px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .nav.open {
    display: flex;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
