:root {
  --primary-color: #2E5E3A;
  --secondary-color: #1C3D28;
  --accent-color: #6A9E74;
  --light-color: #EFF6F0;
  --dark-color: #0F2318;
  --gradient-primary: linear-gradient(135deg, #2E5E3A 0%, #4A8A56 100%);
  --hover-color: #234B2E;
  --background-color: #F6F9F4;
  --text-color: #2A3528;
  --border-color: rgba(106, 158, 116, 0.22);
  --divider-color: rgba(46, 94, 58, 0.12);
  --shadow-color: rgba(46, 94, 58, 0.11);
  --highlight-color: #F2D57F;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
}
.hamburger .line {
  width: 28px; height: 3px;
  background-color: var(--light-color);
  margin: 3px 0; transition: 0.3s; border-radius: 2px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav { max-height: 400px; opacity: 1; }
.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18); z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 1rem 0; }
.mobile-nav a {
  display: block; padding: 1.2rem 1.8rem;
  color: var(--light-color); text-decoration: none;
  border-radius: 12px; transition: all 0.3s ease;
  font-size: 1.1rem; font-weight: 500; border: 2px solid transparent;
}
.mobile-nav a:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
  transform: translateX(8px);
}

/* Feature Cards — horizontal left-icon layout */
.feature-card {
  transition: all 0.4s ease;
  border: none;
  background: white;
  border-radius: 14px;
  padding: 2rem 2rem 2rem 1.8rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  border-left: 5px solid var(--primary-color);
}
.feature-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 32px var(--shadow-color);
  border-left-color: var(--accent-color);
}
.feature-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: var(--light-color);
  border-radius: 14px;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(4deg); }
.feature-card-body { flex: 1; }

/* Testimonials */
.testimonial {
  transition: all 0.4s ease;
  background: white;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  margin: 1.5rem 0;
  border-radius: 16px;
  box-shadow: 0 6px 22px var(--shadow-color);
  border-bottom: 4px solid var(--primary-color);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; left: 20px;
  font-size: 4rem; color: var(--primary-color);
  opacity: 0.1; font-family: Georgia, serif; line-height: 1;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--shadow-color);
  border-bottom-color: var(--accent-color);
}

/* FAQ */
.faq-item {
  border: 2px solid var(--border-color);
  transition: all 0.35s ease;
  background: white;
  padding: 2.2rem 2.5rem;
  margin: 1.2rem 0;
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--shadow-color);
}
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px var(--shadow-color);
  border-color: var(--accent-color);
}

/* Inputs */
input, textarea {
  transition: all 0.35s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 10px; padding: 1.2rem;
  background-color: white; color: var(--text-color); font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--primary-color);
  box-shadow: 0 0 0 5px rgba(46, 94, 58, 0.08);
  transform: translateY(-1px);
}
input:hover, textarea:hover {
  border-color: var(--accent-color);
}

/* Buttons */
button, .btn {
  transition: all 0.35s ease; position: relative; overflow: hidden;
  background: var(--gradient-primary); color: white;
  border: none; padding: 1.2rem 2.6rem; border-radius: 10px;
  font-weight: 600; font-family: var(--alt-font); cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.95rem;
  text-decoration: none; display: inline-block; text-align: center;
  box-shadow: 0 5px 16px rgba(46, 94, 58, 0.28);
}
button::before, .btn::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: rgba(255,255,255,0.16);
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
button:hover::before, .btn:hover::before { width: 300%; height: 300%; }
button:hover, .btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 26px rgba(46, 94, 58, 0.36);
}

/* General */
html { scroll-behavior: smooth; }
.hero { position: relative; }
h1, h2, h3 {
  text-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-family: var(--main-font); font-weight: 700;
}
body {
  font-family: var(--alt-font); color: var(--text-color);
  background-color: var(--background-color); line-height: 1.74;
}

/* Stat / trust cards */
.trust-indicator {
  background: white; color: var(--primary-color);
  padding: 1.8rem; border-radius: 14px;
  box-shadow: 0 6px 18px var(--shadow-color);
  transition: all 0.35s ease; border: 2px solid var(--border-color);
}
.trust-indicator:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px var(--shadow-color);
  border-color: var(--accent-color);
}

/* Header & Footer */
header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--light-color); padding: 1.2rem 0;
  position: relative; z-index: 1000;
  box-shadow: 0 3px 14px var(--shadow-color);
}
footer {
  background-color: var(--dark-color);
  color: var(--light-color); padding: 4rem 0 1.5rem;
}
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }

a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid var(--highlight-color); outline-offset: 4px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-color); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.85s ease-out; }

/* Pattern background — crosshatch */
.pattern-bg {
  background-image:
    repeating-linear-gradient(0deg, rgba(106,158,116,0.06) 0px, rgba(106,158,116,0.06) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(90deg, rgba(106,158,116,0.06) 0px, rgba(106,158,116,0.06) 1px, transparent 1px, transparent 18px),
    linear-gradient(180deg, rgba(239,246,240,0.8) 0%, rgba(246,249,244,0.8) 100%);
}

/* Contact block */
.contact-block { width: 80%; margin: 0 auto; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .container { padding: 0 1.2rem; }
  .feature-card { flex-direction: column; }
  .feature-card, .testimonial, .faq-item, .trust-indicator { padding: 1.8rem; }
  .contact-block { width: 100%; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .feature-card, .testimonial, .faq-item { margin: 0.8rem 0; padding: 1.5rem; }
  .trust-indicator { margin: 0.8rem 0; }
  .contact-block { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media (prefers-contrast: high) {
  :root {
    --text-color: #000; --background-color: #fff;
    --border-color: #000; --primary-color: #000; --secondary-color: #000;
  }
}