:root {
  --primary-color: #3B5E3A;
  --secondary-color: #7D9B5E;
  --accent-color: #5A7D45;
  --light-color: #F2F7EE;
  --dark-color: #1C2E1B;
  --gradient-primary: linear-gradient(135deg, #3B5E3A 0%, #7D9B5E 100%);
  --hover-color: #2A4429;
  --background-color: #F5F8F2;
  --text-color: #2C3A2B;
  --border-color: rgba(59, 94, 58, 0.18);
  --divider-color: rgba(125, 155, 94, 0.15);
  --shadow-color: rgba(59, 94, 58, 0.1);
  --highlight-color: #E8B84B;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  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.15);
  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.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateX(5px);
}

/* Feature Cards — з кольоровою смугою зверху та номером */
.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 4px 18px var(--shadow-color);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
  text-align: left;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(59, 94, 58, 0.2);
  border-color: var(--secondary-color);
}
.feature-card-top {
  height: 6px;
  background: var(--gradient-primary);
}
.feature-card-body {
  padding: 1.8rem 2rem 2rem;
}
.feature-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  margin: 0 auto 1.2rem auto;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Testimonials */
.testimonial {
  background: #ffffff;
  padding: 2.2rem;
  margin: 1rem 0;
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--shadow-color);
  border-bottom: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--secondary-color);
  opacity: 0.25;
  font-family: var(--main-font);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(59, 94, 58, 0.16);
  border-bottom-color: var(--primary-color);
}

/* FAQ */
.faq-item {
  background: #ffffff;
  padding: 2rem;
  margin: 1.2rem 0;
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(59, 94, 58, 0.14);
  border-color: var(--secondary-color);
}

/* Forms */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 1.1rem;
  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 4px rgba(59, 94, 58, 0.1);
  transform: translateY(-1px);
}
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.1rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.03em;
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59, 94, 58, 0.38);
  background: linear-gradient(135deg, #2A4429 0%, #5a7a40 100%);
}

html { scroll-behavior: smooth; }
.hero { position: relative; }

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-inner {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-inner { width: 100%; }
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.1rem; }
  .container { padding: 0 1.5rem; }
  .feature-card, .testimonial, .faq-item { margin: 0.8rem 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
}

/* Header & Footer */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2A4429 100%);
  color: var(--light-color);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(28, 46, 27, 0.3);
}
footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, #0f1a0e 100%);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}
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: 2px;
}

/* Pattern — honeycomb/hex dots */
.pattern-bg {
  background-color: #EDF4E8;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(59, 94, 58, 0.07) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(125, 155, 94, 0.05) 2px, transparent 2px),
    radial-gradient(circle at 25% 75%, rgba(59, 94, 58, 0.04) 2px, transparent 2px),
    radial-gradient(circle at 75% 25%, rgba(125, 155, 94, 0.06) 2px, transparent 2px);
  background-size: 50px 50px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease-out; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-color); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }