:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --cream: #f7f4ea;
  --text: #223126;
  --holdhover:color: #736b14;
  --second:#332c19;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(90deg, #ffffff, #eef7ea) 0.3;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  padding: 16px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand-link {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo Animation - Fade Out & Down */
@keyframes logoFadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
}

/* Logo Animation - Fade In & Up */
@keyframes logoFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }
  50% {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo Animation - Fade Out & Up */
@keyframes logoFadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }
}

/* Logo Animation - Fade In & Down */
@keyframes logoFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  50% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animation classes */
.logo.animate-out-down {
  animation: logoFadeOutDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.logo.animate-in-up {
  animation: logoFadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.logo.animate-out-up {
  animation: logoFadeOutUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.logo.animate-in-down {
  animation: logoFadeInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Navigation Links Color Animation */
@keyframes navColorCycle {
  0% {
    color: #332c19;
  }
  25% {
    color: #2e7d32;
  }
  50% {
    color: #736b14;
  }
  75% {
    color: #1565c0;
  }
  100% {
    color: #332c19;
  }
}

/* Animation class for nav links during scroll */
.nav-links a.color-animate {
  animation: navColorCycle 3s ease-in-out infinite;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #332c19;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(20, 108, 29, 0.35);
  transition: all 0.2s ease;
}

.menu-toggle.open .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #332c19;
  gap: 30px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: bolder;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after { 
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #736b14, #332c19);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: #736b14;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.services-link {
  color: var(--text);
  text-decoration: none;
  font-weight: bolder;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
  cursor: pointer;
  display: inline-block;
}

.services-link::after { 
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #736b14, #332c19);
  transition: width 0.25s ease;
}

.services-link:hover,
.services-link:focus {
  color: #736b14;
}

.services-link:hover::after,
.services-link:focus::after {
  width: 100%;
}

/* Dropdown Arrow Styling */
.dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.services-link:hover .dropdown-arrow,
.services-link:focus .dropdown-arrow {
  transform: scaleY(1.2) scaleX(0.9);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 2px solid #2e7d32;
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 24px;
  color: #223126;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.dropdown-item:hover {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border-left-color: #2e7d32;
  padding-left: 28px;
}

.dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}

.btn {
  background: #332c19;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: var(--green-dark);
}

.update-section {
  padding: 24px 0;
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.08), rgba(255, 255, 255, 0.9));
}

.update-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(46, 125, 50, 0.08);
}

.update-control {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.15);
}

.update-text {
  flex: 1 1 auto;
  overflow: hidden;
  background: #eef7ee;
  border: 1px solid #d4e8d5;
  border-radius: 999px;
  padding: 12px 18px;
  min-width: 0;
}

.update-text span {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeText 30s linear infinite;
  color: #2e7d32;
  font-weight: 600;
}

.update-btn {
  background: var(--green);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.update-btn:hover {
  background: var(--green-dark);
}

@keyframes marqueeText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.partner-section {
  padding: 60px 0;
  background: rgba(239, 250, 239, 0.95);
}

.partner-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.partner-section h2 {
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  text-align: center;
  color: #1f4624;
  letter-spacing: 0.02em;
}

.partner-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(46, 125, 50, 0.14);
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 20px 60px rgba(41, 107, 57, 0.08);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: max-content;
  animation: slidePartners 40s linear infinite;
}

.partner-slider:hover .partner-track,
.partner-slider:focus-within .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  height: 76px;
  width: auto;
  filter: grayscale(40%);
  opacity: 0.78;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.partner-logo:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .partner-slider {
    padding: 16px 0;
  }

  .partner-track {
    gap: 28px;
  }

  .partner-logo {
    height: 62px;
  }
}

@media (max-width: 640px) {
  .partner-section {
    padding: 42px 0;
  }

  .partner-container {
    gap: 20px;
  }

  .partner-slider {
    padding: 14px 0;
  }

  .partner-logo {
    height: 54px;
  }
}

/* ===== SERVICES MODAL POPUP ===== */

.services-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.services-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

.modal-container {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 2px solid #2e7d32;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.modal-item {
  display: block;
  padding: 18px 24px;
  color: #223126;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(46, 125, 50, 0.2);
  position: relative;
  overflow: hidden;
}

.modal-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #2e7d32;
  transform: scaleY(0);
  transition: transform 0.2s ease;
  transform-origin: top;
}

.modal-item:hover {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  padding-left: 32px;
}

.modal-item:hover::before {
  transform: scaleY(1);
}

.modal-item:last-child {
  border-bottom: none;
}

.first-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f2410;
  padding-top: 20px;
}

.carousel {
  position: absolute;
  inset: 0;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 10, 0.75), rgba(10, 30, 10, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.hero-logo-switch {
  position: relative;
  width: 220px;
  height: 120px;
  margin: 0 auto 24px;
}

.hero-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-logo.active {
  opacity: 1;
  transform: scale(1);
  animation: logoPulse 5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-content h1,
.hero-content p {
  animation: colorShift 8s ease-in-out infinite;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 24px;
  max-width: 620px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  display: inline-block;
  background: #fff;
  color: #1f3b1c;
}

.hero-content .btn:hover {
  background: #f2f2f2;
}

@keyframes colorShift {
  0% {
    color: var(--green);
  }
  25% {
    color: var(--green-dark);
  }
  50% {
    color: var(--holdhover);
  }
  75% {
    color: var(--second);
  }
  100% {
    color: var(--cream);
  }
}

.mobile-btn {
  display: none;
}

.second-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f8f6eb 0%, #f2eee2 100%);
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.second-section .container {
  position: relative;
  z-index: 1;
}

.story-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--second);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn.active {
  background: var(--second);
  color: white;
  box-shadow: 0 8px 20px rgba(51, 44, 25, 0.18);
}

.story-panel {
  display: none;
  align-items: center;
  gap: 36px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 40px rgba(34, 49, 38, 0.08);
  position: relative;
  z-index: 2;
}

.story-panel.active {
  display: flex;
}

.story-panel:nth-of-type(2n) .story-media {
  order: 2;
}

.story-media {
  flex: 0 0 45%;
}

.story-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.story-content p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--text);
}

.third-section {
  position: relative;
  padding: 90px 0 100px;
  background: #15331f;
  overflow: hidden;
}

.third-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.third-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 52, 28, 0.52), rgba(31, 93, 45, 0.78));
  z-index: 0;
}

.third-section .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
  color: white;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-heading h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease both;
  line-height: 1.2;
  font-weight: 700;
}

.section-intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.7;
}

.work-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.work-carousel {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
}

.work-step {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.work-step.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  animation: slideInStep 0.8s ease both;
}

.work-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.work-step:hover::before {
  opacity: 1;
}

.work-content {
  color: white;
  position: relative;
  z-index: 2;
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(46, 125, 50, 0.1));
  border: 1px solid rgba(46, 125, 50, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  color: #a5d6a7;
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(46, 125, 50, 0.3);
    color: #a5d6a7;
  }
  50% {
    text-shadow: 0 0 20px rgba(46, 125, 50, 0.6);
    color: #c8e6c9;
  }
}

.work-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
}

.work-content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 12px;
}

.work-content ul {
  margin-top: 16px;
  padding-left: 20px;
  list-style-position: outside;
}

.work-content li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.work-content li::marker {
  color: #66bb6a;
}

.work-media {
  position: relative;
  z-index: 2;
}

.work-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(46, 125, 50, 0.2);
}

.work-step:hover .work-media img {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 70px rgba(46, 125, 50, 0.3);
  border-color: rgba(46, 125, 50, 0.4);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.dot.active {
  background: #66bb6a;
  border-color: #66bb6a;
  box-shadow: 0 0 12px rgba(102, 187, 106, 0.6);
}

.dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

@keyframes slideInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Fourth Section - Benefits ===== */
.fourth-section {
  position: relative;
  padding: 100px 0;
  background: #f5f3ee;
  overflow: hidden;
}

.fourth-section .section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.fourth-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 243, 238, 0.65), rgba(226, 235, 214, 0.72));
  z-index: 1;
}

.fourth-container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow-fourth {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-header h2 {
  font-size: 3rem;
  color: #223126;
  margin-bottom: 8px;
  line-height: 1.2;
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(34, 49, 38, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 125, 50, 0.1);
  animation: slideInCard 0.8s ease both;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(46, 125, 50, 0.15);
  border-color: rgba(46, 125, 50, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.farmers-card {
  animation-delay: 0.1s;
  border-top: 4px solid #2e7d32;
}

.investors-card {
  animation-delay: 0.2s;
  border-top: 4px solid #66bb6a;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  animation: iconFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.2);
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.icon-box svg {
  width: 38px;
  height: 38px;
}

.card-header h3 {
  font-size: 1.65rem;
  color: #223126;
  font-weight: 700;
  line-height: 1.3;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
  animation: slideInList 0.6s ease both;
  transition: all 0.3s ease;
}

.benefits-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.benefits-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.benefits-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.benefits-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.benefits-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.benefits-list li:hover {
  padding-left: 8px;
  color: #2e7d32;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  animation: checkBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.benefits-list li:nth-child(1) .check-icon {
  animation-delay: 0.15s;
}

.benefits-list li:nth-child(2) .check-icon {
  animation-delay: 0.25s;
}

.benefits-list li:nth-child(3) .check-icon {
  animation-delay: 0.35s;
}

.benefits-list li:nth-child(4) .check-icon {
  animation-delay: 0.45s;
}

@keyframes checkBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.benefits-list li span:last-child {
  color: #223126;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInList {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Fifth Section - Performance ===== */
.fifth-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f3ed 0%, #e8f0e3 100%);
  overflow: hidden;
}

.fifth-section .section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
}

.fifth-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 243, 237, 0.92), rgba(232, 240, 227, 0.95));
  z-index: 1;
}

.fifth-container {
  position: relative;
  z-index: 2;
}

.section-header-fifth {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow-fifth {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.15);
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-header-fifth h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #223126;
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 800;
  word-wrap: break-word;
}

.section-intro {
  font-size: 1.1rem;
  color: rgba(34, 49, 38, 0.75);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.performance-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 28px;
  border: 2px solid rgba(46, 125, 50, 0.2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #223126;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.tab-button:hover {
  border-color: #2e7d32;
  background: rgba(46, 125, 50, 0.05);
}

.tab-button.active {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: white;
  border-color: #2e7d32;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25);
}

.tab-content {
  display: none;
  animation: fadeUp 0.6s ease both;
}

.tab-content.active {
  display: block;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.insight-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid rgba(46, 125, 50, 0.1);
  box-shadow: 0 12px 40px rgba(34, 49, 38, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.15);
  border-color: rgba(46, 125, 50, 0.2);
}

.insight-card:hover::before {
  opacity: 1;
}

.insight-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.insight-card h3 {
  font-size: clamp(1rem, 4vw, 1.4rem);
  color: #223126;
  margin-bottom: 12px;
  font-weight: 700;
  word-wrap: break-word;
}

.stat-highlight {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: #2e7d32;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insight-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
  color: rgba(34, 49, 38, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-list li:last-child {
  border-bottom: none;
}

.insight-list strong {
  color: #2e7d32;
  font-weight: 700;
}

.summary-box {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(102, 187, 106, 0.08));
  border: 2px solid rgba(46, 125, 50, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.summary-box h3 {
  font-size: 1.6rem;
  color: #223126;
  margin-bottom: 28px;
  text-align: center;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.stat-value {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.stat-label {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: rgba(34, 49, 38, 0.7);
  font-weight: 600;
  word-wrap: break-word;
}

.charts-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(46, 125, 50, 0.1);
  backdrop-filter: blur(10px);
}

.chart-wrapper {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(46, 125, 50, 0.1);
  box-shadow: 0 8px 24px rgba(34, 49, 38, 0.06);
}

.chart-wrapper h3 {
  font-size: clamp(0.9rem, 3vw, 1.15rem);
  color: #223126;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
}

.chart-wrapper canvas {
  max-height: 280px;
  width: 100%;
}

@keyframes animate-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: animate-in 0.6s ease both;
}

.insight-card:nth-child(1) {
  animation-delay: 0.1s;
}

.insight-card:nth-child(2) {
  animation-delay: 0.2s;
}

.insight-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ===== Sixth Section - Vision & Mission Grid ===== */

.sixth-section {
  position: relative;
  min-height: 500px;
  padding: 60px 0;
  overflow: hidden;
}

.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.sixth-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 61, 48, 0.45), rgba(46, 125, 50, 0.38));
  backdrop-filter: blur(1px);
  z-index: 1;
}

.sixth-container {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.section-header-sixth {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-sixth h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-header-sixth p {
  font-size: 1.1rem;
  color: #f0f0f0;
  font-weight: 300;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.content-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.content-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.card-text {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin: 0;
}

/* Tablet (900px) */
@media (max-width: 900px) {
  .sixth-section {
    padding: 50px 0;
  }

  .section-header-sixth h2 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .content-card {
    padding: 24px 18px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 0.9rem;
  }
}

/* Mobile (600px) */
@media (max-width: 600px) {
  .sixth-section {
    padding: 40px 0;
  }

  .section-header-sixth h2 {
    font-size: 1.8rem;
  }

  .section-header-sixth p {
    font-size: 1rem;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .content-card {
    padding: 20px 14px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}

/* Extra Small (450px) */
@media (max-width: 450px) {
  .sixth-section {
    padding: 30px 0;
  }

  .section-header-sixth h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .section-header-sixth p {
    font-size: 0.95rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .content-card {
    padding: 18px 12px;
  }

  .card-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .card-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .card-text {
    font-size: 0.8rem;
  }
}

/* Card Entrance Animations */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-card {
  animation: cardSlideUp 0.6s ease-out forwards;
}

.content-card:nth-child(1) {
  animation-delay: 0.1s;
}

.content-card:nth-child(2) {
  animation-delay: 0.2s;
}

.content-card:nth-child(3) {
  animation-delay: 0.3s;
}

.content-card:nth-child(4) {
  animation-delay: 0.4s;
}

.verification-list li:nth-child(4) {
  animation-delay: 0.6s;
}

.verification-list li:nth-child(5) {
  animation-delay: 0.8s;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.indicator.active {
  background: #66bb6a;
  width: 32px;
  border-radius: 6px;
  border-color: #66bb6a;
  transform: scale(1.1);
}

/* Fifth Section - Tablet */
@media (max-width: 900px) {
  .section-header-fifth h2 {
    font-size: 2.2rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Sixth Section - Tablet */
  .sixth-section {
    min-height: 85vh;
    padding: 60px 0;
  }

  .sixth-container {
    padding: 44px 28px;
    max-width: 750px;
    width: 90%;
  }

  .section-title {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }

  .section-description {
    font-size: 1.1rem;
    margin-bottom: 22px;
  }

  .verification-list li {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 900px) {
  .site-header .container {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand-link {
    margin-right: 0;
  }

  .desktop-btn {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(240px, calc(100vw - 24px));
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 100;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-btn {
    display: inline-block;
    
  }

  .first-section {
    min-height: 80vh;
    padding: 32px 0;
  }

  .hero-content {
    padding: 24px 0;
  }

  .hero-logo-switch {
    width: 180px;
    height: 100px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .second-section {
    padding: 64px 0 80px;
  }

  .story-tabs {
    gap: 10px;
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1 1 140px;
  }

  .story-panel {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .story-panel:nth-of-type(2n) .story-media {
    order: 0;
  }

  .story-media {
    flex-basis: 100%;
  }

  .story-media img {
    height: 240px;
  }

  .story-content h2 {
    font-size: 1.6rem;
  }

  /* Fourth Section - Tablet */
  .fourth-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .eyebrow-fourth {
    font-size: 0.7rem;
    padding: 7px 14px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .benefit-card {
    padding: 36px;
  }

  .card-header {
    gap: 16px;
    margin-bottom: 24px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-box svg {
    width: 32px;
    height: 32px;
  }

  .card-header h3 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .benefits-list li {
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .check-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .benefits-list li span:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Third Section - Tablet */
  .third-section {
    padding: 70px 0 80px;
  }

  .section-heading h2 {
    font-size: 2rem;
    margin-bottom: 28px;
  }

  .eyebrow {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .work-carousel {
    min-height: 520px;
  }

  .work-step {
    grid-template-columns: 1fr 1fr;
    padding: 32px;
    gap: 40px;
  }

  .work-content h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }

  .work-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .work-content ul {
    margin-top: 14px;
    padding-left: 18px;
  }

  .work-content li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .step-number {
    font-size: 0.7rem;
    padding: 7px 14px;
    margin-bottom: 14px;
  }

  .work-media img {
    height: 280px;
    border-radius: 18px;
  }

  .carousel-dots {
    bottom: 18px;
    gap: 11px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 600px) {
  .first-section {
    min-height: 76vh;
    padding: 24px 0;
  }

  .hero-logo-switch {
    width: 140px;
    height: 80px;
    margin-bottom: 16px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-content .btn {
    padding: 10px 14px;
  }

  .second-section {
    padding: 48px 0 64px;
  }

  .story-tabs {
    margin-bottom: 24px;
  }

  .story-panel {
    padding: 18px;
    gap: 20px;
  }

  .story-media img {
    height: 200px;
  }

  .story-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Third Section - Mobile */
  .third-section {
    padding: 50px 0 60px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 1.65rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .eyebrow {
    font-size: 0.7rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .work-carousel {
    min-height: 480px;
  }

  .work-step {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .work-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .work-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .work-content ul {
    margin-top: 12px;
    padding-left: 16px;
  }

  .work-content li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  .step-number {
    font-size: 0.65rem;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .work-media img {
    height: 220px;
    border-radius: 16px;
  }

  .carousel-dots {
    bottom: 14px;
    gap: 9px;
  }

  .dot {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
  }

  /* Fourth Section - Mobile */
  .fourth-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .eyebrow-fourth {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefit-card {
    padding: 28px;
  }

  .card-header {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .icon-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .icon-box svg {
    width: 28px;
    height: 28px;
  }

  .card-header h3 {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .benefits-list li {
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .benefits-list li span:last-child {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* Fifth Section - Mobile */
  .fifth-section {
    padding: 60px 0;
  }

  .section-header-fifth h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .eyebrow-fifth {
    font-size: 0.65rem;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .section-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .performance-tabs {
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .tab-button {
    padding: 9px 16px;
    font-size: 0.85rem;
    flex: 1 1 auto;
    min-width: 120px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .insight-card {
    padding: 20px;
    border-radius: 16px;
  }

  .insight-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .insight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    word-wrap: break-word;
  }

  .stat-highlight {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .insight-list {
    padding: 0;
  }

  .insight-list li {
    font-size: 0.85rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .insight-list strong {
    display: block;
    font-size: 0.8rem;
  }

  .summary-box {
    padding: 24px;
    margin-top: 24px;
    border-radius: 16px;
  }

  .summary-box h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    word-wrap: break-word;
  }

  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .summary-stat {
    padding: 14px;
    border-radius: 12px;
  }

  .stat-value {
    font-size: 1.35rem;
    margin-bottom: 6px;
    word-wrap: break-word;
  }

  .stat-label {
    font-size: 0.75rem;
    word-wrap: break-word;
  }

  .charts-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
  }

  .chart-wrapper {
    padding: 18px;
    border-radius: 14px;
  }

  .chart-wrapper h3 {
    font-size: 0.95rem;
    margin-bottom: 14px;
    word-wrap: break-word;
  }

  .chart-wrapper canvas {
    max-height: 220px;
    width: 100% !important;
  }

  /* Sixth Section - Mobile */
  .sixth-section {
    min-height: 90vh;
    padding: 40px 0;
  }

  .sixth-container {
    padding: 28px 18px;
    max-width: 100%;
    width: 95%;
  }

  .section-title {
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .section-intro-text {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .verification-list {
    gap: 12px;
  }

  .verification-list li {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .cta-highlight {
    font-size: 0.95rem;
    padding: 14px;
  }

  .carousel-indicators {
    bottom: 20px;
    gap: 8px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 24px;
  }
}

@media (max-width: 450px) {
  /* Fifth Section - Extra Small */
  .section-header-fifth h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .eyebrow-fifth {
    font-size: 0.6rem;
    padding: 4px 8px;
  }

  .section-intro {
    font-size: 0.9rem;
  }

  .tab-button {
    padding: 8px 14px;
    font-size: 0.8rem;
    min-width: 100px;
  }

  .insight-card {
    padding: 16px;
    border-radius: 14px;
  }

  .insight-icon {
    font-size: 2rem;
  }

  .insight-card h3 {
    font-size: 1rem;
  }

  .stat-highlight {
    font-size: 1.4rem;
  }

  .insight-list li {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .summary-box {
    padding: 20px;
  }

  .summary-box h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .summary-stat {
    padding: 12px;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .charts-container {
    padding: 16px;
  }

  .chart-wrapper {
    padding: 14px;
  }

  .chart-wrapper h3 {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .chart-wrapper canvas {
    max-height: 200px;
  }

  /* Sixth Section - Extra Small */
  .sixth-section {
    min-height: 80vh;
    padding: 30px 0;
  }

  .sixth-container {
    padding: 20px 14px;
    width: 95%;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .section-description {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .section-intro-text {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .verification-list li {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .cta-highlight {
    font-size: 0.9rem;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .section-heading h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .eyebrow {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .work-carousel {
    min-height: 440px;
  }

  .work-step {
    padding: 20px;
    gap: 20px;
  }

  .work-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .work-content p {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .work-content li {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .step-number {
    font-size: 0.6rem;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .work-media img {
    height: 200px;
  }

  .carousel-dots {
    bottom: 12px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  /* Fourth Section - Extra Small */
  .section-header h2 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .eyebrow-fourth {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .benefit-card {
    padding: 22px;
  }

  .card-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .icon-box svg {
    width: 24px;
    height: 24px;
  }

  .card-header h3 {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .benefits-list li {
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .check-icon {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .benefits-list li span:last-child {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* ===== FOOTER SECTION ===== */

.footer {
  position: relative;
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 80px;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 58, 38, 0.85), rgba(46, 95, 63, 0.80));
  backdrop-filter: blur(2px);
  z-index: 1;
}

.footer-top {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Logo and Slogan */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
}

.footer-slogan h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #66bb6a;
}

.footer-slogan p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d0d0d0;
}

/* Quick Links */
.footer-links-section h3,
.footer-contact-section h3,
.footer-newsletter-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #66bb6a;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 8px;
}

.footer-links a:hover {
  color: #66bb6a;
  padding-left: 16px;
}

/* Contact Section */
.contact-item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 0.85rem;
  color: #66bb6a;
  font-weight: 600;
}

.footer-contact-section a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact-section a:hover {
  color: #66bb6a;
}

/* Newsletter Subscription */
.footer-newsletter-section p {
  color: #d0d0d0;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #66bb6a;
  box-shadow: 0 0 8px rgba(102, 187, 106, 0.3);
}

.newsletter-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #66bb6a, #4caf50);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4);
}

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  font-size: 0.9rem;
  color: #d0d0d0;
}

.footer-bottom-content a {
  color: #66bb6a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-content a:hover {
  color: #90ee90;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #d0d0d0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 187, 106, 0.2);
  border: 1px solid rgba(102, 187, 106, 0.4);
  border-radius: 50%;
  color: #66bb6a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: rgba(102, 187, 106, 0.3);
  border-color: #66bb6a;
  transform: translateY(-4px);
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
  }

  .footer-slogan h3,
  .footer-contact-section h3,
  .footer-links-section h3,
  .footer-newsletter-section h3 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .footer-links a,
  .footer-contact-section a {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 0 0;
    margin-top: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    padding: 30px 0 20px;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
  }

  .footer-logo-section {
    gap: 16px;
  }

  .footer-slogan h3,
  .footer-contact-section h3,
  .footer-links-section h3,
  .footer-newsletter-section h3 {
    font-size: 0.95rem;
  }

  .footer-slogan p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .footer {
    margin-top: 30px;
  }

  .footer-top {
    padding: 20px 0 15px;
  }

  .footer-main {
    gap: 20px;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .footer-slogan h3,
  .footer-contact-section h3,
  .footer-links-section h3,
  .footer-newsletter-section h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .footer-slogan p {
    font-size: 0.8rem;
  }

  .contact-item {
    margin-bottom: 12px;
  }

  .contact-label {
    font-size: 0.8rem;
  }

  .footer-contact-section a {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .newsletter-input::placeholder {
    font-size: 0.85rem;
  }

  .newsletter-btn {
    font-size: 0.85rem;
  }

  .newsletter-note {
    font-size: 0.7rem;
  }

  .footer-bottom-content p {
    font-size: 0.85rem;
  }

  .footer-social {
    font-size: 0.85rem;
    gap: 8px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* ===== AUTH MODAL ===== */

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.auth-modal.active {
  display: flex;
}

.auth-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.auth-modal-container {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: min(500px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(46, 125, 50, 0.1);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2e7d32;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.auth-modal-close:hover {
  background: rgba(46, 125, 50, 0.2);
  transform: rotate(90deg);
}

.auth-modal-content {
  padding: 40px;
  position: relative;
}

.auth-form-container {
  display: none;
  animation: fadeIn 0.4s ease;
}

.auth-form-container.active {
  display: block;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 8px;
  font-weight: 700;
}

.auth-header p {
  color: #999;
  font-size: 0.95rem;
}

/* Form Styling */
.auth-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #223126;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  background: rgba(46, 125, 50, 0.02);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.form-group.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2e7d32;
}

.checkbox-label {
  margin: 0 !important;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Auth Button */
.auth-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.auth-btn:active {
  transform: translateY(0);
}

/* Divider */
.auth-divider {
  position: relative;
  margin: 24px 0;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
  z-index: 0;
}

.auth-divider span {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 0 12px;
}

/* Social Logins */
.social-logins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #223126;
}

.social-btn:hover {
  border-color: #2e7d32;
  background: rgba(46, 125, 50, 0.05);
  transform: translateY(-2px);
}

.google-btn svg,
.email-btn svg {
  width: 20px;
  height: 20px;
}

/* Auth Footer */
.auth-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.link-btn {
  background: none;
  border: none;
  color: #2e7d32;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
  padding: 0;
  font-size: inherit;
}

.link-btn:hover {
  color: #1b5e20;
}

.forgot-password {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #2e7d32;
  text-decoration: underline;
}

/* Auth Modal Responsive */
@media (max-width: 600px) {
  .auth-modal-container {
    width: 95vw;
    border-radius: 12px;
  }

  .auth-modal-content {
    padding: 30px 20px;
  }

  .auth-header h2 {
    font-size: 1.5rem;
  }

  .auth-header p {
    font-size: 0.9rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    padding: 11px 14px;
    font-size: 16px;
  }

  .social-logins {
    grid-template-columns: 1fr;
  }

  .social-btn {
    width: 100%;
  }

  .auth-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 450px) {
  .auth-modal-container {
    max-height: 95vh;
  }

  .auth-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .auth-modal-content {
    padding: 25px 16px;
  }

  .auth-header h2 {
    font-size: 1.3rem;
  }

  .auth-header p {
    font-size: 0.85rem;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    padding: 10px 12px;
    font-size: 16px;
  }

  .auth-btn {
    padding: 11px 16px;
    font-size: 0.95rem;
  }

  .auth-footer p {
    font-size: 0.85rem;
  }

  .link-btn {
    font-size: 0.85rem;
  }

  .forgot-password {
    font-size: 0.85rem;
  }
}

