:root {
  --primary-color: #3D6B45;
  --secondary-color: #2C5234;
  --accent-color: #6A9E5E;
  --light-color: #EEF5EC;
  --dark-color: #162B1A;
  --gradient-primary: linear-gradient(135deg, #3D6B45 0%, #6A9E5E 100%);
  --hover-color: #2C5234;
  --background-color: #F5FAF4;
  --text-color: #253028;
  --border-color: rgba(61, 107, 69, 0.18);
  --divider-color: rgba(44, 82, 52, 0.13);
  --shadow-color: rgba(61, 107, 69, 0.1);
  --highlight-color: #E8A838;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav { max-height: 350px; opacity: 1; }
.mobile-nav {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 0.8rem 0; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.mobile-nav a:hover { color: var(--primary-color); border-bottom-color: var(--primary-color); }

/* Feature Cards — horizontal pill with left accent bar */
.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem 2rem 2rem 2.4rem;
  box-shadow: 0 3px 16px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.4rem;
  height: 100%;
  border-left: 5px solid var(--primary-color);
  position: relative;
}
.feature-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 30px var(--shadow-color);
  border-left-color: var(--accent-color);
}
.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
}
.feature-card-text { flex: 1; }

/* Testimonials */
.testimonial {
  background: white;
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  margin: 1rem 0;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--accent-color);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px; right: 20px;
  font-size: 5rem;
  color: var(--accent-color);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-bottom-color: var(--primary-color);
}

/* FAQ Items */
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin: 1.2rem 0;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2.2rem;
  position: relative;
}
.faq-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.faq-item:hover::after { opacity: 1; }
.faq-item:hover { box-shadow: 0 6px 26px var(--shadow-color); }
.faq-item h3 { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.8rem; }
.faq-item h3::before {
  content: '▸';
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Form */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.1rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(61, 107, 69, 0.1);
}
input:hover, textarea:hover { border-color: var(--secondary-color); }

/* Buttons */
button, .btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 14px rgba(61, 107, 69, 0.3);
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(61, 107, 69, 0.4);
}

/* Base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  max-width: 100vw;
  overflow-x: hidden;
}
* { box-sizing: border-box; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}
h1, h2, h3 { font-family: var(--main-font); font-weight: 700; color: var(--primary-color); }

/* Header / Footer */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 18px var(--shadow-color);
}
footer { background: var(--dark-color); color: var(--light-color); padding: 3.5rem 0 1.5rem; }

/* Focus */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

/* Pattern bg */
.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 15%, rgba(61, 107, 69, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 75% 85%, rgba(106, 158, 94, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 60% 40%, rgba(232, 168, 56, 0.04) 0%, transparent 50%);
}

/* Random block: comparison table style */
.compare-block {
  width: 100%;
  background: linear-gradient(135deg, #162B1A 0%, #2C5234 100%);
  color: white;
  padding: 4rem 0;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.compare-col {
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.compare-col.bad { background: rgba(180, 40, 40, 0.18); border-color: rgba(220, 80, 80, 0.3); }
.compare-col.good { background: rgba(61, 107, 69, 0.28); border-color: rgba(106, 158, 94, 0.4); }
.compare-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col ul li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.compare-col ul li:last-child { border-bottom: none; }
.compare-col ul li::before { flex-shrink: 0; }
.compare-col.bad ul li::before { content: '✗'; color: #f08080; font-weight: bold; }
.compare-col.good ul li::before { content: '✓'; color: #7DC97A; font-weight: bold; }

/* Contact */
.contact-inner { width: 80%; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.5rem; line-height: 1.2; padding: 0 1rem; }
  .container { padding: 0 1rem; max-width: 100vw; }
  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-card { padding: 1.8rem 1.5rem; }
  .compare-grid { grid-template-columns: 1fr; }
  .contact-inner { width: 100%; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; padding: 0 0.5rem; }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }
  .feature-card, .testimonial, .faq-item { padding: 1.5rem 1rem; }
  .container { padding: 0 0.5rem; }
  input, textarea { font-size: 16px; padding: 1rem; }
  .btn { padding: 1rem 2rem; font-size: 0.95rem; }
}