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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #0d1f0f;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Inter", sans-serif;
  line-height: 1.25;
  color: #0d1f0f;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #2E7D32;
  color: #ffffff;
}
.btn-primary:hover {
  background: #155c25;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #ffffff;
  color: #1B5E20;
  border: 2px solid #1B5E20;
}
.btn-secondary:hover {
  background: #e8f5eb;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #0d1f0f;
  color: #ffffff;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 1rem;
}
.btn-dark:hover {
  background: #1a3520;
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  background: #e8f5eb;
  color: #1B5E20;
}
.btn-icon:hover {
  background: #1B5E20;
  color: #ffffff;
}

.btn-border-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: transparent;
  color: #1B5E20;
  padding: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

.section-sm {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 12px;
  font-size: 30px;
}
.section-header p {
  color: #6B7280;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #d4e8d8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.site-header .header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 68px;
}
.site-header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1f0f;
}
.site-header .logo .logo-icon {
  width: 160px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.site-header .logo .logo-icon span {
  font-size: 1.3rem;
}
.site-header .logo .logo-text {
  color: #1B5E20;
}
.site-header .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.site-header .nav a {
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.site-header .nav a:hover, .site-header .nav a.active {
  color: #1B5E20;
}
.site-header .nav a:hover::after, .site-header .nav a.active::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .site-header .nav {
    display: none;
  }
}
.site-header .header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.site-header .header-actions .user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.site-header .header-actions .user-info .user-meta {
  text-align: right;
}
.site-header .header-actions .user-info .user-meta .user-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.site-header .header-actions .user-info .user-meta .user-role {
  font-size: 0.75rem;
  color: #6b8a72;
}
.site-header .header-actions .user-info .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f5eb;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.site-header .header-actions .user-info .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-header .header-actions .user-info .avatar span {
  font-weight: 700;
  color: #1B5E20;
}
.site-header .header-actions .user-info .notif-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b8a72;
  font-size: 1.2rem;
}
.site-header .header-actions .user-info .notif-btn:hover {
  color: #1B5E20;
}
@media (max-width: 1024px) {
  .site-header .header-actions .user-info {
    display: none;
  }
}
.site-header .hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .site-header .hamburger {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}
.site-header .hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.site-header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0d1f0f;
  border-radius: 2px;
  transition: all 0.3s;
}
.site-header .hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #ffffff;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
}
.mobile-drawer.open {
  left: 0;
}
.mobile-drawer .drawer-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 24px;
  border-bottom: 1px solid #d4e8d8;
  width: 100%;
}
.mobile-drawer .drawer-header .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #3a5240;
  line-height: 1;
}
.mobile-drawer .drawer-header .logo-icon {
  width: 160px;
  height: 40px;
}
.mobile-drawer nav {
  padding: 24px;
  width: 100%;
}
.mobile-drawer nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #d4e8d8;
  color: #3a5240;
  font-weight: 500;
  font-size: 1rem;
}
.mobile-drawer nav a:hover {
  color: #1B5E20;
}
.mobile-drawer nav a.active {
  color: #1B5E20;
  font-weight: 700;
}
.mobile-drawer .drawer-actions {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
}
.mobile-drawer .drawer-actions .btn-primary, .mobile-drawer .drawer-actions .btn-secondary {
  justify-content: center;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.site-footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-brand .logo {
  margin-bottom: 16px;
  color: #ffffff;
}
.site-footer .footer-brand .logo .logo-icon {
  width: 160px;
  height: 40px;
}
.site-footer .footer-brand .logo .logo-text {
  color: #4caf50;
}
.site-footer .footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #9CA3AF;
}
.site-footer .footer-brand .footer-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 14px;
  color: #6B7280;
}
.site-footer .footer-col h4 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.site-footer .footer-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: #D1D5DB;
}
.site-footer .footer-col a:hover {
  color: #4caf50;
}
.site-footer .footer-apps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.site-footer .footer-apps .app-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 140px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}
.site-footer .footer-apps .app-badge span {
  font-size: 1.3rem;
}
.site-footer .footer-apps .app-badge:hover {
  background: rgba(255, 255, 255, 0.15);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
}
@media (max-width: 576px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.site-footer .footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-bottom .footer-links a:hover {
  color: #ffffff;
}

.hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 125, 52, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero .hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .hero .hero-inner {
    flex-direction: column;
    text-align: center;
  }
}
.hero .hero-content {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .hero-eyebrow {
  display: inline-block;
  background: #F0FDF4;
  color: #1B5E20;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 em {
  color: #2E7D32;
  font-style: normal;
}
.hero p.hero-sub {
  color: #6B7280;
  font-size: 20px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .hero p.hero-sub {
    margin: 0 auto 32px;
  }
}
.hero .hero-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  background: #ffffff;
  border: 2px solid #d4e8d8;
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .hero .hero-search {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero .hero-search {
    flex-direction: column;
  }
}
.hero .hero-search .search-icon {
  padding: 0 14px;
  color: #6b8a72;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 14px 8px;
  background: transparent;
  color: #0d1f0f;
}
.hero .hero-search input::-moz-placeholder {
  color: #6b8a72;
}
.hero .hero-search input::placeholder {
  color: #6b8a72;
}
@media (max-width: 576px) {
  .hero .hero-search input {
    width: 100%;
  }
}
.hero .hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #1B5E20;
  color: #ffffff;
  border-radius: 0;
  padding: 14px 24px;
  font-size: 0.95rem;
}
.hero .hero-search button:hover {
  background: #155c25;
}
@media (max-width: 576px) {
  .hero .hero-search button {
    width: 100%;
    border-radius: 0;
  }
}
.hero .hero-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .hero .hero-badges {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero .hero-badges {
    flex-wrap: wrap;
  }
}
.hero .hero-badges .badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: #3a5240;
}
.hero .hero-badges .badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1B5E20;
}
.hero .hero-image {
  flex-shrink: 0;
  width: 420px;
}
@media (max-width: 1024px) {
  .hero .hero-image {
    width: 100%;
    max-width: 420px;
  }
}

.stats-bar {
  background: #ffffff;
}
.stats-bar .stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .stats-bar .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats-bar .stats-inner .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 20px;
  text-align: center;
}
.stats-bar .stats-inner .stat-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .stats-bar .stats-inner .stat-item:nth-child(2) {
    border-right: none;
  }
  .stats-bar .stats-inner .stat-item {
    border-bottom: 1px solid #d4e8d8;
  }
  .stats-bar .stats-inner .stat-item:nth-child(3), .stats-bar .stats-inner .stat-item:nth-child(4) {
    border-bottom: none;
  }
}
.stats-bar .stats-inner .stat-item .stat-value {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  color: #111827;
  font-weight: 700;
}
.stats-bar .stats-inner .stat-item .stat-label {
  font-size: 0.8rem;
  color: #6B7280;
}

.steps-section {
  background: #F9FAFB;
}
.steps-section .section-header h2 {
  font-size: 30px;
}
.steps-section .section-header p {
  font-size: 16px;
  color: #6B7280;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.step-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.step-card .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1.4rem;
}
.step-card .step-num {
  font-size: 0.75rem;
  color: #6b8a72;
  font-weight: 600;
}
.step-card h3 {
  font-size: 1rem;
}
.step-card p {
  font-size: 0.82rem;
  color: #6b8a72;
}
.step-card a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 0.82rem;
  color: #1B5E20;
  font-weight: 600;
  margin-top: auto;
}
.step-card a:hover {
  gap: 8px;
}

.market-section {
  background: #ffffff;
}
.market-section .market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .market-section .market-inner {
    grid-template-columns: 1fr;
  }
}
.market-section .market-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 24px 0;
}
.market-section .market-features .feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}
.market-section .market-features .feature .feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1.1rem;
}
.market-section .market-features .feature h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
}
.market-section .market-features .feature p {
  font-size: 14px;
  color: #6B7280;
}
.market-section .chart-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 24px;
}
.market-section .chart-card .chart-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 20px;
}
.market-section .chart-card .chart-header h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}
.market-section .chart-card .chart-header .live-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1B5E20;
}
.market-section .chart-card .chart-header .live-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1B5E20;
  animation: pulse 1.5s infinite;
}
.market-section .chart-card .chart-area {
  position: relative;
  height: 180px;
}
.market-section .chart-card .chart-area svg {
  width: 100%;
  height: 100%;
}
.market-section .chart-card .chart-legend {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 16px;
}
.market-section .chart-card .chart-legend .leg {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 0.8rem;
}
.market-section .chart-card .chart-legend .leg .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.market-section .chart-card .chart-months {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: 8px;
}
.market-section .chart-card .chart-months span {
  font-size: 0.7rem;
  color: #6b8a72;
}

.roles-section {
  background: #F9FAFB;
}
.roles-section .roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .roles-section .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .roles-section .roles-grid {
    grid-template-columns: 1fr;
  }
}
.roles-section .role-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 28px 24px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.roles-section .role-card .role-icon {
  font-size: 2rem;
}
.roles-section .role-card h3 {
  font-size: 1rem;
}
.roles-section .role-card p {
  font-size: 0.82rem;
  color: #6b8a72;
  flex: 1;
}
.roles-section .role-card a {
  font-size: 0.85rem;
  color: #1B5E20;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-top: 8px;
}
.roles-section .role-card a:hover {
  gap: 8px;
}
.roles-section .role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  border-color: #1B5E20;
}

.news-section .news-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 32px;
}
.news-section .news-header a {
  font-size: 0.88rem;
  color: #1B5E20;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.news-section .news-header a:hover {
  gap: 8px;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-section .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .news-section .news-grid {
    grid-template-columns: 1fr;
  }
}
.news-section .news-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}
.news-section .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.news-section .news-card .news-img {
  height: 180px;
  background: #e8f5eb;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 3rem;
  overflow: hidden;
}
.news-section .news-card .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-section .news-card .news-body {
  padding: 20px;
}
.news-section .news-card .news-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.news-section .news-card .news-meta .tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: #e8f5eb;
  color: #1B5E20;
  padding: 3px 8px;
  border-radius: 4px;
}
.news-section .news-card .news-meta .date, .news-section .news-card .news-meta .read {
  font-size: 0.75rem;
  color: #6b8a72;
}
.news-section .news-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.news-section .news-card p {
  font-size: 14px;
  color: #6B7280;
}

.cta-banner {
  background: linear-gradient(135deg, #155c25 0%, #1B5E20 100%);
  padding: 64px 0;
  text-align: center;
  color: #ffffff;
}
.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.cta-banner .cta-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 576px) {
  .cta-banner .cta-actions {
    flex-direction: column;
  }
}

.newsletter-section {
  background: #0d1f0f;
  padding: 48px 0;
}
.newsletter-section .newsletter-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
}
.newsletter-section .newsletter-inner h3 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
}
.newsletter-section .newsletter-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 4px;
}
.newsletter-section .newsletter-inner .nl-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  min-width: 380px;
}
@media (max-width: 576px) {
  .newsletter-section .newsletter-inner .nl-form {
    min-width: 0;
    width: 100%;
  }
}
.newsletter-section .newsletter-inner .nl-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  color: #ffffff;
}
.newsletter-section .newsletter-inner .nl-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-section .newsletter-inner .nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-section .newsletter-inner .nl-form input {
  outline: none;
}
.newsletter-section .newsletter-inner .nl-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #1B5E20;
  color: #ffffff;
  border-radius: 0;
  padding: 12px 20px;
}
.newsletter-section .newsletter-inner .nl-form button:hover {
  background: #4caf50;
}

.page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid #d4e8d8;
}
.page-hero .breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #6b8a72;
  margin-bottom: 20px;
}
.page-hero .breadcrumb a {
  color: #6b8a72;
}
.page-hero .breadcrumb a:hover {
  color: #1B5E20;
}
.page-hero .breadcrumb span {
  color: #6b8a72;
}
.page-hero .breadcrumb .current {
  color: #0d1f0f;
  font-weight: 500;
}
.page-hero .page-hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.page-hero .page-hero-meta .tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.page-hero .page-hero-meta .tag-green {
  background: #1B5E20;
  color: #ffffff;
}
.page-hero .page-hero-meta .tag-year {
  background: #e8f5eb;
  color: #1B5E20;
}
.page-hero .page-hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-actions {
    margin-top: 16px;
    justify-content: flex-start;
  }
}
.page-hero .page-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-hero .page-hero-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .page-hero .page-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.page-hero .page-hero-stats .stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.page-hero .page-hero-stats .stat .stat-icon {
  font-size: 1.1rem;
}
.page-hero .page-hero-stats .stat .stat-label {
  font-size: 0.75rem;
  color: #6b8a72;
}
.page-hero .page-hero-stats .stat .stat-val {
  font-size: 0.88rem;
  font-weight: 600;
}

.page-crop-selection {
  background-color: #F9FAFB;
}

.filter-bar {
  background: #ffffff;
  border: 1px solid #d4e8d8;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .filter-bar {
    gap: 12px;
  }
}
.filter-bar .filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  flex: 1;
  min-width: 160px;
}
.filter-bar .filter-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b8a72;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-bar .filter-group select {
  border: 1px solid #d4e8d8;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  background: #ffffff;
  color: #0d1f0f;
  cursor: pointer;
  width: 100%;
}
.filter-bar .filter-group select:focus {
  outline: 2px solid #1B5E20;
}
.filter-bar .filter-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .filter-bar .filter-actions {
    width: 100%;
  }
}

.filter-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-tags .tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  background: #e8f5eb;
  color: #1B5E20;
  border: 1px solid #d4e8d8;
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.filter-tags .tag button {
  background: none;
  border: none;
  cursor: pointer;
  color: #1B5E20;
  line-height: 1;
  font-size: 0.9rem;
  padding: 0;
}
.filter-tags .add-filter {
  font-size: 0.8rem;
  color: #6b8a72;
  cursor: pointer;
}
.filter-tags .add-filter:hover {
  color: #1B5E20;
}

.crops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .crops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .crops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .crops-grid {
    grid-template-columns: 1fr;
  }
}

.crop-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.crop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.crop-card .crop-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: #e8f5eb;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 3rem;
}
.crop-card .crop-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.crop-card .match-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1B5E20;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.crop-card .match-badge.mid {
  background: #e07b39;
}
.crop-card .match-badge.low {
  background: #e53935;
}
.crop-card .bookmark-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  font-size: 1rem;
  color: #6b8a72;
}
.crop-card .bookmark-btn:hover {
  color: #1B5E20;
}
.crop-card .crop-rating {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.crop-card .crop-body {
  padding: 18px;
}
.crop-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.crop-card p {
  font-size: 0.78rem;
  color: #6b8a72;
  margin-bottom: 14px;
  line-height: 1.5;
}
.crop-card .crop-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.crop-card .crop-stats .cs-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  font-size: 0.78rem;
}
.crop-card .crop-stats .cs-row .cs-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color: #6b8a72;
}
.crop-card .crop-stats .cs-row .cs-label span {
  font-size: 0.9rem;
}
.crop-card .crop-stats .cs-row .cs-val {
  font-weight: 600;
}
.crop-card .crop-stats .cs-row .cs-val.high {
  color: #e53935;
}
.crop-card .crop-stats .cs-row .cs-val.low {
  color: #1B5E20;
}
.crop-card .crop-stats .cs-row .cs-val.mid {
  color: #e07b39;
}
.crop-card .crop-card-footer {
  padding: 14px 18px;
  border-top: 1px solid #d4e8d8;
}
.crop-card .crop-card-footer .btn-secondary {
  width: 100%;
  justify-content: center;
  padding: 9px;
}
.crop-card .crop-card-special {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 280px;
  color: #6b8a72;
}
.crop-card .crop-card-special .plus-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed #d4e8d8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1.5rem;
  color: #d4e8d8;
}
.crop-card .crop-card-special p {
  font-size: 0.85rem;
  text-align: center;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination button, .pagination a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #d4e8d8;
  border-radius: 8px;
  background: #ffffff;
  color: #3a5240;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.pagination button:hover, .pagination a:hover {
  border-color: #1B5E20;
  color: #1B5E20;
}
.pagination button.active, .pagination a.active {
  background: #1B5E20;
  border-color: #1B5E20;
  color: #ffffff;
}
.pagination button.dots, .pagination a.dots {
  border: none;
  background: none;
}

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}
@media (max-width: 1024px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }
}

.progress-bar-track {
  height: 6px;
  background: #d4e8d8;
  border-radius: 3px;
  margin-bottom: 32px;
}
.progress-bar-track .progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: #1B5E20;
  width: 25%;
  transition: width 0.5s;
}

.stages-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}
.stages-list .stage {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 8px;
}
.stages-list .stage::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  width: 2px;
  height: calc(100% - 44px);
  background: #d4e8d8;
}
.stages-list .stage:last-child::before {
  display: none;
}
.stages-list .stage .stage-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #d4e8d8;
  background: #ffffff;
  color: #6b8a72;
  z-index: 1;
}
.stages-list .stage .stage-num.done {
  background: #1B5E20;
  border-color: #1B5E20;
  color: #ffffff;
}
.stages-list .stage .stage-num.active {
  background: #ffffff;
  border-color: #1B5E20;
  color: #1B5E20;
}
.stages-list .stage .stage-content {
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 20px;
  margin-bottom: 16px;
}
.stages-list .stage .stage-content .stage-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 8px;
}
.stages-list .stage .stage-content .stage-header .stage-title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
}
.stages-list .stage .stage-content .stage-header h3 {
  font-size: 1rem;
}
.stages-list .stage .stage-content .stage-header .stage-dates {
  font-size: 0.75rem;
  color: #6b8a72;
}
.stages-list .stage .stage-content .stage-header .stage-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.stages-list .stage .stage-content .stage-header .stage-status.done {
  background: #e8f5eb;
  color: #1B5E20;
}
.stages-list .stage .stage-content .stage-header .stage-status.active {
  background: #fff3e0;
  color: #e07b39;
}
.stages-list .stage .stage-content .stage-header .stage-status.pending {
  background: #f6faf7;
  color: #6b8a72;
}
.stages-list .stage .stage-content .stage-desc {
  font-size: 0.85rem;
  color: #3a5240;
  margin-bottom: 16px;
}
.stages-list .stage .stage-content .alert-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  font-size: 0.83rem;
}
.stages-list .stage .stage-content .alert-info .alert-icon {
  font-size: 1rem;
  margin-top: 1px;
}
.stages-list .stage .stage-content .accordion-item {
  border: 1px solid #d4e8d8;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.stages-list .stage .stage-content .accordion-item .acc-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  background: #f6faf7;
}
.stages-list .stage .stage-content .accordion-item .acc-header:hover {
  background: #e8f5eb;
}
.stages-list .stage .stage-content .accordion-item .acc-header .acc-arrow {
  transition: transform 0.2s;
}
.stages-list .stage .stage-content .accordion-item .acc-header.open .acc-arrow {
  transform: rotate(180deg);
}
.stages-list .stage .stage-content .accordion-item .acc-body {
  padding: 16px;
  font-size: 0.83rem;
  color: #3a5240;
}
.stages-list .stage .stage-content .accordion-item .acc-body ul {
  padding-left: 16px;
  list-style: disc;
}
.stages-list .stage .stage-content .accordion-item .acc-body ul li {
  margin-bottom: 4px;
}
.stages-list .stage .stage-content .stage-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.stages-list .stage .stage-content .locked-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #6b8a72;
  font-size: 0.82rem;
  padding: 8px 0;
}
.stages-list .stage .stage-content .locked-content .lock-icon {
  font-size: 1rem;
}
.stages-list .stage.pending .stage-content {
  opacity: 0.7;
}

.expert-tip {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 20px;
  border-left: 4px solid #1B5E20;
  background: #e8f5eb;
  border-top: none;
  margin-top: 8px;
}
.expert-tip .tip-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.expert-tip .tip-header h4 {
  font-size: 0.9rem;
}
.expert-tip .tip-header .tip-icon {
  font-size: 1.1rem;
}
.expert-tip p {
  font-size: 0.83rem;
  color: #3a5240;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.sidebar .sidebar-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 20px;
}
@media (max-width: 1024px) {
  .sidebar .sidebar-card {
    flex: 1;
    min-width: 260px;
  }
}
.sidebar .sidebar-card h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.sidebar .sidebar-card h4 a {
  font-size: 0.78rem;
  color: #1B5E20;
  font-weight: 600;
}
.sidebar .sidebar-card .product-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #d4e8d8;
}
.sidebar .sidebar-card .product-item:last-child {
  border-bottom: none;
}
.sidebar .sidebar-card .product-item .prod-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e8f5eb;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1.3rem;
}
.sidebar .sidebar-card .product-item .prod-info {
  flex: 1;
}
.sidebar .sidebar-card .product-item .prod-info .prod-name {
  font-size: 0.85rem;
  font-weight: 600;
}
.sidebar .sidebar-card .product-item .prod-info .prod-brand {
  font-size: 0.75rem;
  color: #6b8a72;
}
.sidebar .sidebar-card .product-item .prod-info .prod-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1B5E20;
}
.sidebar .sidebar-card .product-item .add-btn {
  background: #e8f5eb;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1.1rem;
  color: #1B5E20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sidebar .sidebar-card .product-item .add-btn:hover {
  background: #1B5E20;
  color: #ffffff;
}
.sidebar .sidebar-card .consult-cta {
  text-align: center;
}
.sidebar .sidebar-card .consult-cta .cta-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.sidebar .sidebar-card .consult-cta p {
  font-size: 0.82rem;
  color: #6b8a72;
  margin-bottom: 14px;
}
.sidebar .sidebar-card .consult-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

.section-features {
  background-color: #F9FAFB;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-grid .feature-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.features-grid .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.features-grid .feature-card .feat-icon-lg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1.6rem;
}
.features-grid .feature-card h3 {
  font-size: 20px;
  color: #111827;
}
.features-grid .feature-card p {
  font-size: 1rem;
  color: #6B7280;
}

.analytics-section .analytics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .analytics-section .analytics-inner {
    grid-template-columns: 1fr;
  }
}
.analytics-section .analytics-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1B5E20;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.analytics-section .analytics-features {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}
.analytics-section .analytics-features .af {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.analytics-section .analytics-features .af .af-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e8f5eb;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1rem;
  flex-shrink: 0;
}
.analytics-section .analytics-features .af h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}
.analytics-section .analytics-features .af p {
  font-size: 0.78rem;
  color: #6b8a72;
}
.analytics-section .dashboard-preview {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  padding: 20px;
}
.analytics-section .dashboard-preview .dp-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 16px;
}
.analytics-section .dashboard-preview .dp-header h5 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}
.analytics-section .dashboard-preview .dp-header .dp-status {
  font-size: 0.75rem;
  color: #1B5E20;
  font-weight: 600;
}
.analytics-section .dashboard-preview .dp-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #3a5240;
  font-weight: 600;
}
.analytics-section .dashboard-preview .dp-field span {
  font-size: 1rem;
}
.analytics-section .dashboard-preview .dp-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.analytics-section .dashboard-preview .dp-metrics .dp-metric {
  background: #f6faf7;
  border-radius: 10px;
  padding: 14px;
}
.analytics-section .dashboard-preview .dp-metrics .dp-metric .dm-val {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: #1B5E20;
}
.analytics-section .dashboard-preview .dp-metrics .dp-metric .dm-label {
  font-size: 0.72rem;
  color: #6b8a72;
}
.analytics-section .dashboard-preview .dp-chart {
  background: #f6faf7;
  border-radius: 10px;
  padding: 14px;
}
.analytics-section .dashboard-preview .dp-chart .dpc-label {
  font-size: 0.75rem;
  color: #6b8a72;
  margin-bottom: 8px;
}
.analytics-section .dashboard-preview .dp-chart .bar-chart {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 60px;
}
.analytics-section .dashboard-preview .dp-chart .bar-chart .bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #e8f5eb;
}
.analytics-section .dashboard-preview .dp-chart .bar-chart .bar.active {
  background: #1B5E20;
}
.analytics-section .dashboard-preview .dp-chart .bar-chart .bar {
  transition: height 0.3s;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .marketplace-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .marketplace-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #d4e8d8;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.product-card .prod-img {
  height: 160px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #e8f5eb;
  font-size: 3rem;
  position: relative;
}
.product-card .prod-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card .prod-tag-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-card .prod-tag-badge.fertilizer {
  background: #e8f5e9;
  color: #2e7d32;
}
.product-card .prod-tag-badge.seed {
  background: #fff8e1;
  color: #f57f17;
}
.product-card .prod-tag-badge.herbicide {
  background: #fce4ec;
  color: #c62828;
}
.product-card .prod-tag-badge.machinery {
  background: #e3f2fd;
  color: #1565c0;
}
.product-card .prod-rating {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 50px;
}
.product-card .prod-body {
  padding: 16px;
}
.product-card h3 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.product-card p {
  font-size: 0.78rem;
  color: #6b8a72;
  margin-bottom: 12px;
}
.product-card .prod-price {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #1B5E20;
  margin-bottom: 4px;
}
.product-card .prod-delivery {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 0.75rem;
  color: #6b8a72;
  margin-bottom: 14px;
}
.product-card .prod-delivery .delivery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.product-card .prod-delivery .delivery-dot.ready {
  background: #1B5E20;
}
.product-card .prod-delivery .delivery-dot.soon {
  background: #f4b400;
}
.product-card .prod-delivery .delivery-dot.order {
  background: #6b8a72;
}
.product-card .add-to-cart {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px;
  justify-content: center;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}/*# sourceMappingURL=main.css.map */