    /* ── Hero ── */
    .home-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: url('/media/e-farm-biotech-site.png') center/cover no-repeat;
      color: #fff;
      overflow: hidden;
      padding: 120px 0 100px;
      height: 100vh;
    }
    .home-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #2f5c08;
background: linear-gradient(150deg, #1b4332 0%, #2d6a4f 25%, rgb(170, 199, 55) 100%);
      opacity: 0.85;
      pointer-events: none;
    }
    .home-hero .container {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .home-hero .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(4px);
      padding: 8px 24px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .home-hero h1 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
      margin: 0 auto 20px;
      max-width: 700px;
    }
    .home-hero p {
      font-size: 1.15rem;
      opacity: 0.9;
      max-width: 640px;
      margin: 0 auto 32px;
      line-height: 1.8;
    }
    .home-hero .btn-group {
      justify-content: center;
    }

    /* ── Purpose Section (Problem + Mission combined) ── */
    .purpose-section {
      padding: 100px 0;
      background: var(--bg);
    }
    .purpose-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .purpose-header-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f0f5eb;
      padding: 8px 24px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--primary-dark);
      letter-spacing: 2px;
    }

    .purpose-header h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.2;
    }
    .purpose-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .purpose-media {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      aspect-ratio: 4/3;
    }
    .purpose-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .purpose-blocks {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .purpose-block {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .purpose-block-header {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .purpose-block-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .purpose-block-icon.warning {
      background: #fff5f5;
      color: #e53e3e;
    }
    .purpose-block-icon.leaf {
      background: #f0f5eb;
      color: var(--primary);
    }
    .purpose-block h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text);
    }
    .purpose-block p {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.85;
    }
    .purpose-block p strong {
      color: var(--text);
      font-weight: 600;
    }
    .problem-lead {
      font-size: 1.5rem ;
      color: var(--primary) ;
      line-height: 1.6 ;
    }

    /* ── Impact Stats ── */
    .impact-section {
      margin: 2.1rem;

border-radius: 1.2rem;
      padding: 100px 0;
      background: #2D6A4F;
background: linear-gradient(150deg, rgba(45, 106, 79, 1) 12%, rgba(19, 158, 77, 1) 50%, rgb(37, 98, 50) 100%);
      color: #fff;
    }
    .impact-header {
      text-align: center;
      margin-bottom: 1.2rem;
    }
    .impact-header-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      padding: 8px 24px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: #fff;
      letter-spacing: 0.5px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .impact-header h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
    }
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .impact-card {
      text-align: center;
      padding: 3rem 3rem;
      background: rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(4px);
    }
    .impact-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 20px;
    }
    .impact-value {
      font-size: 3.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .impact-label {
      font-size: 1.05rem;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      margin-bottom: 12px;
    }
    .impact-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
    }

    /* ── News Section ── */
    .news-section {
      padding: 100px 0;
      background: var(--bg);
    }
    .news-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }
    .news-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .news-card-media {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .news-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .news-card-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    /* Inline styles moved from HTML */
.hero-title-zh { font-size: 2.4rem; }
.hero-en-wrap { padding: 0 0 0.6rem 0; }
.hero-title-en { font-size: 2.1rem; font-weight: 500; line-height: 1.2; }
.pt-1 { padding-top: 1rem; }
.btn-gold { background: #facc15; color: #1a1a1a; border-color: #facc15; }
.btn-primary-solid { background-color: var(--primary); color: #fff; }
.text-gold { color: #9b7828; }
.text-primary { color: var(--primary); }
.unit { font-size: 1rem; font-weight: 500; }
.text-center { text-align: center; }
.btn-sm { font-size: 1rem; padding: 10px 24px; }
.btn-gold-solid { background-color: #9b7828; color: #ffffff; }
.section-header{
  justify-content: center;
  display: flex;
 align-items: center;
 flex-direction: column;
}
.justify-center { justify-content: center; }

    .news-card-body h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .news-card-body p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
      flex: 1;
    }
    .news-card-body .btn-group {
      gap: 12px;
    }

    /* ── Pillars Section ── */
    .pillars-section {
      padding: 100px 0;
      background: var(--bg-alt);
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }
    .pillar-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      padding: 40px 28px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform .2s, box-shadow .2s;
    }
    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .pillar-icon {
      width: 64px;
      height: 64px;
      background: var(--accent-light);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
    .pillar-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 12px;
    }
    .pillar-card p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
      flex: 1;
    }
           .chicken{ 
  flex-direction: row; 
  display: flex;
  gap:1.2rem 
}

    .pillar-card .btn {
      padding: 10px 24px;
      font-size: 1rem;
    }

    /* ── Supported By ── */
    .supported-section {
      padding: 120px 0;
      background: var(--bg);
      text-align: center;
    }
    .supported-grid {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 64px;
      flex-wrap: wrap;
      margin-top: 40px;
    }
    .supported-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .supported-item img {
      width: 9rem;
      height: 9rem;
      object-fit: contain;
      opacity: 0.8;
      transition: opacity .2s;
    }
    .supported-item img:hover {
      opacity: 1;
    }
    .supported-item span {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 180px;
    }

    /* ── Pillars (Feature blocks) ── */
    .pillars-section {
      padding: 100px 0 60px;
      background: var(--bg-alt);
    }
    .pillar-row {
      padding: 60px 0;
       background: var(--accent-light);
    }
    .pillar-row:nth-child(even) {
       background: var(--bg-alt);
    }
    .feature-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .feature-block.reverse .feature-media {
      order: -1;
    }
    .feature-media {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      aspect-ratio: 16/10;
    }
    .feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .feature-content .pillar-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f0f5eb;
      padding: 8px 20px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 600;
      /* margin-bottom: 16px; */
      color: var(--primary-dark);
    }
    .feature-content h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .feature-content p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .feature-content .btn {
      margin-top: 8px;
    }

    /* ── Responsive ── */
  
     
      @media (max-width: 1024px) {
       .home-hero h1 { font-size: 2.2rem; }
      .purpose-grid { grid-template-columns: 1fr; }
      .purpose-header h2 { font-size: 2.2rem; }
      .impact-grid { grid-template-columns: 1fr; }
      .impact-card {
        display: grid;
        /* grid-template-columns: auto 1fr; */
        gap: 8px 24px;
        text-align: left;
        padding: 32px;
        align-items: start;
      }
          .impact-section {
      padding: 3rem 1rem;
      margin:0 1.2rem;
          }
      .impact-icon-wrap {
        margin: 0;
        grid-row: 1 / span 3;
        align-self: start;
      }
      .impact-label { font-size: 1.5rem; }
      .news-grid { grid-template-columns: 1fr; }
      .feature-block { grid-template-columns: 1fr; gap: 32px; }
      .feature-block.reverse .feature-media { order: 0; }
      .supported-grid { gap: 40px; }
      .home-hero { min-height: auto; padding: 3rem 1.8rem 3rem; }
      .home-hero h1 { font-size: 1.8rem; }
      .purpose-header h2 { font-size: 1.8rem; }
      .purpose-grid { gap: 40px; }
      .feature-content h3 { font-size: 1.4rem; }
      .pillar-row {
        background-color: #fff;
        padding: 2.1rem 1.24rem;
        margin: 1rem;
        border-radius: 0.6rem;
      }
        .chicken{ 
  flex-direction: column; 
  gap:1.2rem }


      .container {
        padding: 0 0rem;
      }
      .pillar-row:nth-child(even) {
        background: #FFF;
      }
      .section { padding: 3rem 0; }
      .navbar .container {
        padding: 0 1rem;
      }
        .purpose-section {
      padding: 3rem 1.8rem;
      background: var(--bg);
    }
       .news-section {
      padding: 3rem 1.8rem;
      background: var(--bg);
    }
    }
