* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  min-height: 200vh;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: radial-gradient(135deg, rgba(255, 255, 255, 0.15), white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.4rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #84bf0b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #84bf0b;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #84bf0b;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger svg {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 280px;
  height: calc(100vh - 60px);
  backdrop-filter: blur(12px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.2)
  );
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 0;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 1rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-link:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-nav-link:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-nav-link:nth-child(4) {
  animation-delay: 0.25s;
}
.mobile-nav-link:nth-child(5) {
  animation-delay: 0.3s;
}
.mobile-nav-link:nth-child(6) {
  animation-delay: 0.35s;
}
.mobile-nav-link:nth-child(7) {
  animation-delay: 0.35s;
}
.mobile-nav-link:nth-child(8) {
  animation-delay: 0.35s;
}

.mobile-menu:not(.open) .mobile-nav-link {
  animation: none;
}

.mobile-nav-link:hover {
  background: rgba(16, 185, 129, 0.15);
  border-left-color: #84bf0b;
  color: #84bf0b;
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, #84bf0b, #233302);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 1),
    rgba(5, 150, 105, 1)
  );
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
}

main {
  background-color: #233302;
  padding-top: 60px;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 2.5rem;
  color: white;
  display: block;
}

.hero h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .lhs {
  margin-top: 3.5rem;
}

.hero .rhs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: transparent;
  border: 2px solid white;
  border-radius: 10px;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-btn i {
  font-size: 15px;
}

.store-btn:hover {
  background: white;
  color: black;
  transform: translateY(-10px);
}

.herobutton {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#about {
  background: white;
  padding: 5rem 1.5rem;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  font-size: 2.5rem;
  color: #233302;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.about-mission {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
}

#our-story {
  background: #f9fafb;
  padding: 5rem 1.5rem;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
}

.story-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.story-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.timeline-item {
  background: white;
  border: 3px solid #84bf0b;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: #233302;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.timeline-icon i {
  font-size: 28px;
  color: #84bf0b;
}

.timeline-year {
  font-size: 2rem;
  color: #84bf0b;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-title {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.timeline-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

.timeline-connector {
  display: none;
}

.story-footer {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid #e5e7eb;
}

.story-footer h3 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-weight: 700;
}

.story-footer p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

#how-it-works {
  background: white;
  padding: 5rem 1.5rem;
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hiw-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 4rem;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.step-item {
  text-align: center;
  max-width: 250px;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: #233302;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-circle::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #84bf0b;
  border-radius: 50%;
}

.step-circle i {
  font-size: 32px;
  color: #84bf0b;
}

.step-item h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-item p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.step-line {
  display: none;
}

#why-choose {
  background: #f9fafb;
  padding: 5rem 1.5rem;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.why-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #84bf0b;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: #233302;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-icon i {
  font-size: 32px;
  color: #84bf0b;
}

.why-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

#business-model {
  background: white;
  padding: 5rem 1.5rem;
}

.business-container {
  max-width: 1200px;
  margin: 0 auto;
}

.business-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.business-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.business-card {
  background: #fffef0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0ecc8;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #84bf0b;
}

.business-icon {
  width: 70px;
  height: 70px;
  background: #84bf0b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.business-card:hover .business-icon {
  background: white;
}

.business-icon i {
  font-size: 32px;
  color: #233302;
}

.business-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.business-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

.business-note {
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  text-align: center;
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

#for-businesses {
  background: white;
  padding: 5rem 1.5rem;
}

.business-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.business-content h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-weight: 700;
}

.business-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 3rem;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.business-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.business-feature-icon {
  width: 60px;
  height: 60px;
  background: #84bf0b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-feature-icon i {
  font-size: 28px;
  color: #233302;
}

.business-feature-content h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.business-feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

.business-cta-btn {
  background: #233302;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.business-cta-btn:hover {
  background: #2d5016;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 77, 46, 0.3);
}

.business-image {
  display: flex;
  justify-content: center;
}

.business-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

#compliance {
  background: linear-gradient(135deg, #233302 0%, #0d3320 100%);
  padding: 5rem 1.5rem;
}

.compliance-container {
  max-width: 1200px;
  margin: 0 auto;
}

.compliance-container h2 {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.compliance-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 3rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.compliance-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(193, 255, 114, 0.3);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.compliance-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #84bf0b;
  transform: translateY(-5px);
}

.compliance-icon {
  width: 70px;
  height: 70px;
  background: #84bf0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.compliance-icon i {
  font-size: 32px;
  color: #233302;
}

.compliance-card h3 {
  font-size: 1.25rem;
  color: #84bf0b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.compliance-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.compliance-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.compliance-note-item {
  background: rgba(193, 255, 114, 0.1);
  border: 1px solid rgba(193, 255, 114, 0.3);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.compliance-note-icon {
  width: 50px;
  height: 50px;
  background: #84bf0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-note-icon i {
  font-size: 24px;
  color: #233302;
}

.compliance-note-content h4 {
  font-size: 1.125rem;
  color: #84bf0b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.compliance-note-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.legal-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.legal-card {
  background: rgba(193, 255, 114, 0.1);
  border: 1px solid rgba(193, 255, 114, 0.3);
  border-radius: 16px;
  padding: 2rem;
}

.legal-card h4 {
  font-size: 1.25rem;
  color: #84bf0b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card strong {
  color: white;
  font-weight: 600;
}

#team {
  background: white;
  padding: 5rem 1.5rem;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.team-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #84bf0b;
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: #233302;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-avatar i {
  font-size: 48px;
  color: #84bf0b;
}

.team-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  font-size: 1.125rem;
  color: #233302;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

.team-note {
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#testimonials {
  background: #f9fafb;
  padding: 5rem 1.5rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #84bf0b;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars i {
  color: #84bf0b;
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: #6b7280;
}

#mission-vision {
  background: #233302;
  padding: 5rem 1.5rem;
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.mv-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mv-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: #84fb0b;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mv-icon i {
  font-size: 36px;
  color: #233302;
}

.mv-card h3 {
  font-size: 2rem;
  color: #84fb0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mv-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

#core-values {
  background: white;
  padding: 5rem 1.5rem;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.values-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  background: #84bf0b;
  border-color: #233302;
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: #e8ffc4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: white;
}

.value-icon i {
  font-size: 32px;
  color: #233302;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

#cta {
  background: linear-gradient(135deg, #2d5016 0%, #233302 100%);
  padding: 5rem 1.5rem;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cta-primary {
  background: #84bf0b;
  color: #233302;
}

.cta-primary:hover {
  background: #b0f060;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(193, 255, 114, 0.3);
}

.cta-secondary {
  background: #233302;
  color: white;
  border: 2px solid #84bf0b;
}

.cta-secondary:hover {
  background: #2d5016;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(193, 255, 114, 0.2);
}

.cta-btn i {
  font-size: 24px;
}

.cta-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 400;
}

.cta-store {
  font-size: 1rem;
  font-weight: 600;
}

#contact-support {
  background: white;
  padding: 5rem 1.5rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #84bf0b;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: #84bf0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 28px;
  color: #233302;
}

.contact-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

#ecosystem {
  background: #f9fafb;
  padding: 5rem 1.5rem;
}

.ecosystem-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ecosystem-icon {
  width: 80px;
  height: 80px;
  background: #233302;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.ecosystem-icon i {
  font-size: 36px;
  color: #84bf0b;
}

.ecosystem-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.ecosystem-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 3rem;
}

.ecosystem-callout {
  background: white;
  border: 3px solid #84bf0b;
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.ecosystem-callout p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
}

.ecosystem-btn {
  background: #233302;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecosystem-btn:hover {
  background: #2d5016;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 77, 46, 0.3);
}

footer {
  background-color: #233302;
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #84bf0b;
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #84bf0b;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #84bf0b;
  color: #233302;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
    text-align: left;
  }

  .hero p {
    font-size: 1.1rem;
    text-align: left;
  }

  .hero img {
    height: 500px;
  }

  .herobutton {
    justify-content: flex-start;
  }

  .about-container h2 {
    font-size: 3rem;
  }

  .about-description,
  .about-mission {
    font-size: 1.25rem;
  }

  .story-container h2 {
    font-size: 3rem;
  }

  .timeline {
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 0;
  }

  .timeline-item {
    grid-column: span 1;
  }

  .timeline-item:nth-child(1) {
    grid-column: 1 / 2;
  }

  .timeline-item:nth-child(3) {
    grid-column: 3 / 4;
  }

  .timeline-item:nth-child(5) {
    grid-column: 5 / 6;
  }

  .timeline-item:nth-child(7) {
    grid-column: 7 / 8;
  }

  .timeline-connector {
    display: block;
    height: 3px;
    background: #84bf0b;
    grid-column: span 1;
  }

  .timeline-connector:nth-child(2) {
    grid-column: 2 / 3;
  }

  .timeline-connector:nth-child(4) {
    grid-column: 4 / 5;
  }

  .timeline-connector:nth-child(6) {
    grid-column: 6 / 7;
  }

  .hiw-container h2 {
    font-size: 3rem;
  }

  .steps-timeline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .step-item {
    position: relative;
  }

  .step-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #84bf0b;
    position: absolute;
    top: 40px;
    left: 50%;
    z-index: -1;
  }

  .step-item:last-child .step-line {
    display: none;
  }

  .why-container h2 {
    font-size: 3rem;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .business-container h2 {
    font-size: 3rem;
  }

  .business-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .business-content h2 {
    font-size: 3rem;
  }

  .business-solutions-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .compliance-container h2 {
    font-size: 3rem;
  }

  .compliance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .compliance-notes {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .legal-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-container h2 {
    font-size: 3rem;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonials-container h2 {
    font-size: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .mv-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .values-container h2 {
    font-size: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .cta-container h2 {
    font-size: 3rem;
  }

  .contact-container h2 {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .ecosystem-container h2 {
    font-size: 3rem;
  }

  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

#services {
  background: white;
  padding: 5rem 1.5rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.services-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 4rem;
}

.service-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #84bf0b, #8dd43f);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #84bf0b;
  background: white;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #84bf0b, #8dd43f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon i {
  font-size: 28px;
  color: #233302;
}

.service-item h4 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
}

@media (min-width: 768px) {
  .services-container h2 {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
