:root {
      --green: #0f6b3f;
      --green-soft: #e8f4ee;
      --yellow: #f4c400;
      --dark: #1f2937;
    }

    * {
      box-sizing: border-box;
      font-family: 'Inter', system-ui, sans-serif;
    }

    body {
      margin: 0;
      background: #fff;
      color: var(--dark);
      line-height: 1.6;
    }

    section {
      padding: 80px 6%;
    }

    h1,
    h2,
    h3 {
      color: var(--green);
      line-height: 1.2;
    }

    p {
      max-width: 900px;
    }

    /* ================= HERO ================= */
    .hero {
      background: linear-gradient(135deg, #0f6b3f, #1b8f5a);
      color: #fff;
      padding: 120px 6% 100px;
      position: relative;
      overflow: hidden;
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 720px;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -150px;
      top: -150px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    /* ================= PILAR ================= */
    .pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      margin-top: 40px;
    }

    .pillar {
      background: var(--green-soft);
      padding: 28px;
      border-radius: 20px;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .pillar:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }

    /* ================= KOMODITAS ================= */
    .commodity {
      background: #f9fafb;
    }

    /* ================= MAP ================= */
    .map-wrapper {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 40px;
      align-items: center;
    }

    .stats {
      display: grid;
      gap: 24px;
    }

    .stat h2 {
      font-size: 2.5rem;
      margin: 0;
    }

    .stat span {
      font-size: 1rem;
      color: #555;
    }

    svg {
      width: 100%;
      max-width: 720px;
    }

    .map-id path {
      fill: #0f6b3f;
      opacity: .85;
    }

    .jabar {
      fill: #2ecc71 !important;
    }

    .marker {
      fill: var(--yellow);
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% {
        r: 6;
        opacity: 1;
      }

      70% {
        r: 14;
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }

    /* ================= TIMELINE ================= */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .step {
      border-left: 4px solid var(--green);
      padding-left: 16px;
    }

    /* ================= CTA ================= */
    .cta {
      background: linear-gradient(135deg, #0f6b3f, #1b8f5a);
      color: #fff;
      text-align: center;
    }

    .cta h2 {
      color: #fff;
    }

    .btns {
      margin-top: 24px;
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 28px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
    }

    .btn.primary {
      background: var(--yellow);
      color: #000;
    }

    .btn.secondary {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width: 900px) {
      .map-wrapper {
        grid-template-columns: 1fr;
      }
    }

    .df-map-section {
      padding: 90px 0;
    }

    .df-map-container {
      max-width: 1300px;
      margin: auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1.4fr 0.6fr;
      align-items: center;
      gap: 40px;
    }

    .df-map-wrapper {
      position: relative;
      width: 100%;
    }

    .df-map-image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* MARKER */
    .map-marker {
      position: absolute;
      width: 18px;
      height: 18px;
      background: #f4c400;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .map-marker::after {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      background: rgba(244, 196, 0, 0.35);
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(.5);
        opacity: 1;
      }

      100% {
        transform: scale(1.6);
        opacity: 0;
      }
    }

    /* STATS */
    .df-map-stats {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .stat h2 {
      font-size: clamp(2.2rem, 3vw, 3rem);
      color: #0f6b3f;
      margin: 0;
      font-weight: 700;
    }

    .stat p {
      margin: 4px 0 0;
      color: #0f6b3f;
      font-size: 1rem;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .df-map-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .df-map-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }

      .stat {
        width: 45%;
      }
    }

    .df-title {
      color: #0f6b3f;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
    }

    .df-subtitle {
      max-width: 700px;
      margin-bottom: 40px;
    }

    .df-about {
      padding: 100px 0;
      background: #f9fafb;
    }

    .df-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 6%;
    }

    .df-eyebrow {
      display: inline-block;
      color: #0f6b3f;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .df-about-header h2 {
      font-size: clamp(2rem, 3vw, 2.6rem);
      color: #0f6b3f;
    }

    .df-about-header p {
      max-width: 720px;
      margin-top: 12px;
    }

    /* TARGET */
    .df-targets {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin: 48px 0;
    }

    .target-card {
      background: white;
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    }

    .target-card h3 {
      font-size: 2.5rem;
      color: #0f6b3f;
    }

    /* STRATEGY */
    .df-strategy h3 {
      margin-bottom: 24px;
      color: #0f6b3f;
    }

    .strategy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .strategy-item {
      background: white;
      border-radius: 16px;
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .strategy-item span {
      font-weight: 700;
      color: #f4c400;
    }

    /* BENEFITS */
    .df-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }

    .benefit-card {
      background: #0f6b3f;
      color: white;
      border-radius: 20px;
      padding: 32px;
    }

    .benefit-card ul {
      padding-left: 18px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .df-about {
        padding: 80px 0;
      }
    }

    .fade-up,
    .fade-left,
    .fade-right {
      opacity: 0;
      transform: translateY(30px);
      transition: all .8s ease;
    }

    .fade-left {
      transform: translateX(-40px);
    }

    .fade-right {
      transform: translateX(40px);
    }

    .show {
      opacity: 1;
      transform: translate(0);
    }

    /* ===== SECTION BASE ===== */
    .df-section {
      padding: 96px 0;
      /* background: #f7faf8; */
    }

    .df-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 24px;
    }

    .df-section-header {
      max-width: 720px;
      margin-bottom: 56px;
    }

    .df-eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #0b6b3a;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .df-title {
      font-size: 36px;
      font-weight: 700;
      color: #083d23;
      margin-bottom: 16px;
    }

    .df-subtitle {
      font-size: 16px;
      line-height: 1.7;
      color: #4a6356;
    }

    /* ===== MAP GRID ===== */
    .df-map-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: center;
    }

    /* ===== MAP ===== */
    .df-map-wrapper {
      position: relative;
    }

    .df-map-image {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    }

    /* MARKER */
    .map-marker {
      position: absolute;
      width: 14px;
      height: 14px;
      background: #ffcc00;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .map-marker::after {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      border: 2px solid rgba(255, 204, 0, 0.5);
    }

    /* PULSE ANIMATION */
    .pulse {
      animation: pulse 2.5s infinite;
    }

    .delay-1 {
      animation-delay: 0.5s;
    }

    .delay-2 {
      animation-delay: 1s;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, .6);
      }

      70% {
        box-shadow: 0 0 0 16px rgba(255, 204, 0, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
      }
    }

    /* ===== STATS ===== */
    .df-map-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .stat-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    }

    .stat-card h3 {
      font-size: 32px;
      font-weight: 700;
      color: #0b6b3a;
    }

    .stat-card p {
      margin-top: 8px;
      font-size: 14px;
      color: #5c7467;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .df-map-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 480px) {
      .df-map-stats {
        grid-template-columns: 1fr;
      }

      .df-title {
        font-size: 28px;
      }
    }

    .df-section {
      padding: clamp(4rem, 6vw, 7rem) 1.5rem;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .df-title {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .df-subtitle {
      max-width: 720px;
      margin: 0 auto 3rem;
      font-size: 1rem;
      color: #5f6f52;
      line-height: 1.6;
    }

    /* reuse dari Sadesa Samitra */
    .df-pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .df-pillar {
      background: #ffffff;
      padding: 2rem 1.75rem;
      border-radius: 16px;
      text-align: left;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
      transition: transform .35s ease, box-shadow .35s ease;
      position: relative;
      overflow: hidden;
    }

    .df-pillar:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
    }

    .df-pillar h3 {
      margin: 1.5rem 0 .5rem;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .df-pillar p {
      font-size: .95rem;
      color: #66785f;
      line-height: 1.5;
    }

    /* Step number */
    .df-step-number {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2.5rem;
      font-weight: 700;
      color: rgba(120, 160, 90, 0.15);
      line-height: 1;
    }

    /* ================= CTA SECTION ================= */
.df-cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7f9f7, #ffffff);
  overflow: hidden;
}

.df-cta-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.df-cta-header {
  text-align: center;
  margin-bottom: 60px;
}

.df-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1b3c2f;
}

.df-subtitle {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #5f6f68;
}

/* BENEFITS */
.df-cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.df-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transition: transform .4s ease, box-shadow .4s ease;
}

.df-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.df-benefit-card.highlight {
  background: linear-gradient(135deg, #1b3c2f, #2f6f4e);
  color: #fff;
}

.df-benefit-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.df-benefit-card ul {
  list-style: none;
  padding: 0;
}

.df-benefit-card li {
  margin-bottom: 18px;
  line-height: 1.5;
  font-size: 15px;
}

/* CTA ACTION */
.df-cta-action {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.df-cta-action h3 {
  font-size: 26px;
  color: #1b3c2f;
}

.df-cta-action p {
  margin: 14px 0 32px;
  color: #5f6f68;
}

/* BUTTONS */
.df-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.df-btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s ease;
}

.df-btn.primary {
  background: #1b3c2f;
  color: #fff;
}

.df-btn.primary:hover {
  background: #245a43;
  transform: scale(1.05);
}

.df-btn.secondary {
  border: 2px solid #1b3c2f;
  color: #1b3c2f;
}

.df-btn.secondary:hover {
  background: #1b3c2f;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .df-cta-benefits {
    grid-template-columns: 1fr;
  }
}