:root {
  --vy-forest-dark: #1a3622;
  --vy-forest-mid: #2d5a27;
  --vy-earth-light: #f4f9f4;
  --vy-sage: #e2ede1;
  --vy-accent-gold: #d4af37;
  --vy-text-main: #333333;
  --vy-font-head: 'Playfair Display', serif;
  --vy-font-body: 'Lora', serif;
}

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

body {
  font-family: var(--vy-font-body);
  color: var(--vy-text-main);
  background-color: var(--vy-earth-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { width: 100%; height: auto; object-fit: cover; }

h1, h2, h3, h4 { font-family: var(--vy-font-head); color: var(--vy-forest-dark); }

.vy-header-global {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 249, 244, 0.95);
  backdrop-filter: blur(8px);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--vy-sage);
}

.vy-brand-mark { display: flex; align-items: center; gap: 0.75rem; }
.vy-initials {
  background: var(--vy-forest-mid); color: #fff;
  font-family: var(--vy-font-head); font-weight: 700;
  padding: 0.5rem; border-radius: 4px; font-size: 1.2rem;
}
.vy-brand-name { font-family: var(--vy-font-head); font-size: 1.5rem; font-weight: 700; color: var(--vy-forest-dark); }

.vy-nav-links { display: flex; gap: 2rem; }
.vy-nav-links a {
  text-decoration: none; color: var(--vy-forest-dark);
  font-weight: 600; font-size: 0.95rem; transition: color 0.3s;
}
.vy-nav-links a:hover { color: var(--vy-accent-gold); }

.vy-eco-hero {
  display: flex; min-height: 80vh;
  align-items: center; background: var(--vy-earth-light);
}
.vy-hero-text { flex: 1; padding: 5% 5% 5% 8%; }
.vy-hero-media { flex: 1; height: 80vh; }
.vy-hero-media img { height: 100%; object-position: center; border-bottom-left-radius: 40px; }

.vy-cert-badge {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--vy-sage); color: var(--vy-forest-mid);
  font-size: 0.85rem; font-weight: 600; border-radius: 20px;
  margin-bottom: 1.5rem; letter-spacing: 0.5px; text-transform: uppercase;
}
.vy-hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.vy-hero-sub { font-size: 1.25rem; margin-bottom: 2.5rem; color: #555; max-width: 90%; }

.vy-action-btn {
  display: inline-block; background: var(--vy-forest-mid); color: #fff;
  padding: 1rem 2rem; text-decoration: none; font-weight: 600;
  border: none; cursor: pointer; transition: background 0.3s;
  border-radius: 4px; font-family: var(--vy-font-body);
}
.vy-action-btn:hover { background: var(--vy-forest-dark); }

.vy-benefits-tier { padding: 4rem 5%; background: var(--vy-forest-mid); color: #fff; }
.vy-benefits-inner { max-width: 900px; margin: 0 auto; }
.vy-benefits-tier .vy-section-heading { color: var(--vy-accent-gold); margin-bottom: 2rem; }
.vy-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.vy-benefit-list li { position: relative; padding-left: 2rem; font-size: 1.1rem; }
.vy-benefit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--vy-accent-gold); font-weight: bold; }

.vy-capabilities-grid { padding: 6rem 5%; background: var(--vy-earth-light); }
.vy-center-text { text-align: center; margin-bottom: 4rem; }
.vy-cards-container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem; max-width: 1200px; margin: 0 auto;
}
.vy-agri-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s;
}
.vy-agri-card:hover { transform: translateY(-10px); }
.vy-agri-card img { height: 200px; }
.vy-card-body { padding: 2rem; }
.vy-card-body h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.vy-card-body p { font-size: 0.95rem; color: #555; }

.vy-legacy-section { padding: 8rem 10%; background: #fff; }
.vy-legacy-content { max-width: 800px; margin: 0 auto; }
.vy-legacy-section .vy-section-heading { font-size: 2.5rem; margin-bottom: 2rem; }
.vy-legacy-content p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.vy-inline-link { color: var(--vy-forest-mid); text-decoration: underline; text-decoration-color: var(--vy-accent-gold); text-underline-offset: 4px; }

.vy-metric-wrapper {
  margin-top: 3rem; padding: 2rem; border-left: 4px solid var(--vy-accent-gold);
  background: var(--vy-earth-light);
}
.vy-metric-number { font-family: var(--vy-font-head); font-size: 3.5rem; font-weight: 700; color: var(--vy-forest-dark); display: block; line-height: 1; }
.vy-metric-label { font-size: 1.1rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }

.vy-feedback-carousel { padding: 8rem 5%; background: var(--vy-forest-dark); color: #fff; }
.vy-feedback-carousel .vy-section-heading { color: var(--vy-accent-gold); text-align: center; margin-bottom: 4rem; }
.vy-testimonials-wrap {
  display: flex; flex-wrap: wrap; gap: 3rem; justify-content: center; max-width: 1000px; margin: 0 auto;
}
.vy-testimonial-block {
  flex: 1; min-width: 300px; background: rgba(255,255,255,0.05);
  padding: 3rem 2rem; border-radius: 8px; position: relative;
}
.vy-quote { font-size: 1.2rem; font-style: italic; margin-bottom: 2rem; }
.vy-author-info { display: flex; align-items: center; gap: 1rem; }
.vy-author-info img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--vy-accent-gold); }
.vy-author-info strong { display: block; font-family: var(--vy-font-head); font-size: 1.1rem; }
.vy-author-info span { font-size: 0.85rem; color: var(--vy-sage); }

.vy-agronomy-contact { padding: 6rem 5%; background: #fff; display: flex; justify-content: center; }
.vy-contact-inner { max-width: 700px; width: 100%; }
.vy-contact-inner > p { margin-bottom: 2rem; color: #666; }
.vy-form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vy-input-group { display: flex; flex-direction: column; gap: 0.5rem; }
.vy-full-width { grid-column: 1 / -1; }
.vy-input-group label { font-weight: 600; font-size: 0.9rem; color: var(--vy-forest-dark); }
.vy-input-group input, .vy-input-group textarea {
  padding: 1rem; border: 1px solid #ccc; border-radius: 4px;
  font-family: var(--vy-font-body); font-size: 1rem; background: var(--vy-earth-light);
}
.vy-submit-btn { width: 100%; grid-column: 1 / -1; font-size: 1.1rem; padding: 1.2rem; }
.vy-disclaimer { grid-column: 1 / -1; font-size: 0.8rem; color: #888; text-align: center; }

.vy-footer-root { background: var(--vy-forest-mid); color: var(--vy-sage); padding: 4rem 5% 2rem; }
.vy-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.vy-footer-col h4 { color: #fff; margin-bottom: 1.5rem; font-family: var(--vy-font-body); font-size: 1.1rem; }
.vy-footer-col .vy-brand-name { color: #fff; display: block; margin-bottom: 1rem; }
.vy-footer-col p, .vy-footer-col a { font-size: 0.9rem; margin-bottom: 0.75rem; display: block; color: var(--vy-sage); text-decoration: none; }
.vy-footer-col a:hover { color: var(--vy-accent-gold); }
.vy-footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.85rem; }

@media (max-width: 900px) {
  .vy-eco-hero { flex-direction: column; }
  .vy-hero-media { width: 100%; height: 50vh; }
  .vy-hero-media img { border-radius: 0; }
  .vy-hero-text { padding: 10% 5%; }
  .vy-hero-title { font-size: 2.5rem; }
  .vy-nav-links { display: none; }
  .vy-form-layout { grid-template-columns: 1fr; }
}