:root {
  --primary-color: #5A9F77;
  --secondary-color: #2ECC71;
  --accent-color: #C0E0B1;
  --light-color: #F4F9F6;
  --dark-color: #2C5F2D;
  --gradient-primary: linear-gradient(135deg, #5A9F77 0%, #2ECC71 100%);
  --hover-color: #4A8A64;
  --background-color: #FAFCFB;
  --text-color: #2C3E50;
  --border-color: rgba(192, 224, 177, 0.35);
  --divider-color: rgba(90, 159, 119, 0.15);
  --shadow-color: rgba(90, 159, 119, 0.25);
  --highlight-color: #FF6F61;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Base styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: linear-gradient(135deg, #FAFCFB 0%, var(--light-color) 100%);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.hamburger .line {
  width: 22px;
  height: 2px;
  background: var(--primary-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: rgba(255, 255, 255, 0.99);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 2.2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 1.2rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-color);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 25px var(--shadow-color);
  backdrop-filter: blur(18px);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 3.2rem;
  width: auto;
}

/* Navigation */
.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.08rem;
}

.navigation a:hover {
  color: var(--primary-color);
}

/* Grid layouts */
.grid {
  display: grid;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.2rem 2.5rem;
  box-shadow: 0 8px 35px var(--shadow-color);
  transition: all 0.4s ease;
  text-align: center;
  backdrop-filter: blur(12px);
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 3.5rem;
  margin: 0 auto 2rem auto;
  color: var(--primary-color);
  width: 95px;
  height: 95px;
  background: rgba(90, 159, 119, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

/* Testimonials */
.testimonial {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.8rem;
  margin: 1.2rem 0;
  box-shadow: 0 6px 30px var(--shadow-color);
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  width: 100%;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

/* FAQ Items */
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin: 1.2rem 0;
  box-shadow: 0 5px 25px var(--shadow-color);
  transition: all 0.4s ease;
  padding: 2.5rem 2.8rem;
  backdrop-filter: blur(12px);
  width: 100%;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-color);
  border-color: var(--primary-color);
}

/* Form Styles */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-color);
  font-size: 1.02rem;
  width: 100%;
  backdrop-filter: blur(12px);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(90, 159, 119, 0.18);
  background: white;
}

/* Buttons */
.btn,
button {
  transition: all 0.4s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.3rem 2.8rem;
  border-radius: 14px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1.08rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 30px rgba(90, 159, 119, 0.45);
}

.btn:hover,
button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(90, 159, 119, 0.55);
}

/* Statistics Cards */
.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 30px var(--shadow-color);
  transition: all 0.4s ease;
  backdrop-filter: blur(18px);
  width: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px var(--shadow-color);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}

.stat-text {
  font-size: 1.08rem;
  color: var(--text-color);
  margin-top: 0.7rem;
  font-weight: 600;
}

/* Trust Indicators */
.trust-indicator {
  background: rgba(255, 255, 255, 0.88);
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 28px var(--shadow-color);
  transition: all 0.4s ease;
  text-align: center;
  backdrop-filter: blur(18px);
  width: 100%;
}

.trust-indicator:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 38px var(--shadow-color);
}

/* Footer */
footer {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0 1.5rem;
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}

/* Pattern Background */
.pattern-bg {
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(90, 159, 119, 0.06) 2px, transparent 2px),
    radial-gradient(circle at 70% 30%, rgba(46, 204, 113, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 10% 90%, rgba(192, 224, 177, 0.05) 3px, transparent 3px),
    linear-gradient(135deg, rgba(255, 111, 97, 0.02) 0%, transparent 70%);
  background-size: 90px 90px, 60px 60px, 140px 140px, 100% 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    padding: 2.5rem 2rem;
  }
  
  .stat-card {
    padding: 2rem;
  }
  
  .trust-indicator {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    padding: 2rem 1.5rem;
  }
  
  .stat-card {
    padding: 1.6rem;
  }
  
  .trust-indicator {
    padding: 1.2rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 2.6rem;
  }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}