@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #6DA433;
  --primary-green-dark: #5A8D2A;
  --dark-text: #231F20;
  --gray-text: #7F7F7F;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s ease;
  --container-max: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: none;
}

.header.scrolled {
  height: calc(var(--header-height) * 0.85);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-green);
}

.logo svg {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a.active {
  color: var(--primary-green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--dark-text);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.mobile-nav-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-nav-actions a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
}

/* Hero Section */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Primary CTA Button */
.primary-cta {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: var(--transition);
}

.primary-cta:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary CTA Button */
.secondary-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary-green);
  border-radius: 6px;
  transition: var(--transition);
}

.secondary-cta:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-text);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Introduction Section */
.intro {
  background: var(--white);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}

.intro p {
  font-size: 1.125rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* Core Services Section */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 164, 51, 0.1);
  border-radius: 50%;
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card a {
  color: var(--primary-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card a:hover {
  color: var(--primary-green-dark);
}

/* Why Choose Section */
.why-choose {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-block {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-green);
}

.feature-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.partners {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.partners h4 {
  font-size: 0.875rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  max-width: 120px;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials {
  background: var(--light-bg);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--dark-text);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
}

.testimonial-location {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-green);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav button:hover {
  background: var(--primary-green);
}

.testimonial-nav button:hover svg {
  color: var(--white);
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
}

/* CTA Section */
.cta-section {
  background: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-green);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.newsletter h4 {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-green-dark);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 1.5rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.breadcrumbs a {
  color: var(--primary-green);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 0.5rem;
}

/* Page Hero */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* Panel Types Section */
.panel-types {
  background: var(--white);
}

.panel-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.panel-type-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.panel-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.panel-type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.panel-type-content {
  padding: 1.5rem;
}

.panel-type-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.panel-type-content p {
  color: var(--gray-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.panel-type-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--gray-text);
}

.panel-type-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* System Components Section */
.system-components {
  background: var(--light-bg);
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.component-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.component-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.component-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 164, 51, 0.1);
  border-radius: 10px;
}

.component-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
}

.component-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.component-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* Vetting Process Section */
.vetting {
  background: var(--white);
}

.vetting-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.vetting-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.vetting-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.vetting-step p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* Companies Grid */
.companies-section {
  background: var(--light-bg);
}

.companies-search {
  max-width: 400px;
  margin: 0 auto 3rem;
}

.companies-search input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.companies-search input:focus {
  outline: none;
  border-color: var(--primary-green);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.company-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.company-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.company-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-card a {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Timeline Section */
.timeline {
  background: var(--white);
}

.timeline-list {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--primary-green);
  opacity: 0.3;
}

.timeline-number {
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Cost Section */
.cost-section {
  background: var(--light-bg);
}

.cost-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cost-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cost-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cost-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(109, 164, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-green);
}

.cost-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.cost-feature p {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* Support Section */
.support-section {
  background: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.support-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.support-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.support-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-green);
}

.support-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.support-card p {
  color: var(--gray-text);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Mission Vision Section */
.mission-vision {
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.mv-block {
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 12px;
}

.mv-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.mv-block p {
  color: var(--gray-text);
  line-height: 1.8;
}

/* Values Section */
.values-section {
  background: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(109, 164, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray-text);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.25rem;
}

.team-info .title {
  color: var(--primary-green);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.team-info p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form label {
  display: block;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  padding: 1rem 2rem;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.submit-btn:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.contact-info-block p {
  color: var(--gray-text);
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info-block svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .nav-desktop,
  .header-cta-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vetting-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .panel-types-grid {
    grid-template-columns: 1fr;
  }

  .components-grid {
    grid-template-columns: 1fr;
  }

  .vetting-steps {
    grid-template-columns: 1fr;
  }

  .companies-grid {
    grid-template-columns: 1fr;
  }

  .cost-features {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 0.75rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 40vh;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-item:not(:last-child)::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .primary-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}
