/* ================================
   ROOT & RESET
================================ */
:root {
  --green-dark: #2e7d32;
  --green: #388e3c;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --cream: #f5f0e6;
  --cream-dark: #ede8d8;
  --blue: #4fc3f7;
  --blue-dark: #1565c0;
  --yellow: #f9a825;
  --red: #c62828;
  --text-dark: #1b2e1f;
  --text-mid: #3d5a40;
  --text-light: #6a8a6e;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(46, 125, 50, 0.1);
  --shadow-md: 0 8px 32px rgba(46, 125, 50, 0.14);
  --shadow-lg: 0 20px 60px rgba(46, 125, 50, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Poppins", sans-serif;
  --font-display: "Playfair Display", serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

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

/* ================================
   READ PROGRESS
================================ */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--green-dark),
    var(--green-light),
    var(--yellow)
  );
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 14px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46, 125, 50, 0.12);
  box-shadow: var(--shadow-sm);
}

.navbar__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.navbar__links {
  display: flex;
  gap: 6px;
}

.navbar__link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}

.navbar__link:hover {
  background: rgba(46, 125, 50, 0.1);
  color: var(--green-dark);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ================================
   MOBILE MENU
================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--cream);
  z-index: 860;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(46, 125, 50, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__link {
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-menu__link:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* ================================
   HERO
================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #e8f5e9 0%, #f5f0e6 45%, #e3f2fd 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 60px 60px;
  position: relative;
  overflow: hidden;
}

/* Decorative leaves bg */
.hero__bg-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  border-radius: 50% 50% 50% 10% / 50% 50% 10% 50%;
  opacity: 0.08;
}

.leaf--1 {
  width: 300px;
  height: 300px;
  background: var(--green-dark);
  top: -80px;
  right: -60px;
  transform: rotate(30deg);
  animation: float 8s ease-in-out infinite;
}

.leaf--2 {
  width: 200px;
  height: 200px;
  background: var(--green);
  bottom: 60px;
  left: -50px;
  transform: rotate(-20deg);
  animation: float 10s ease-in-out infinite reverse;
}

.leaf--3 {
  width: 150px;
  height: 150px;
  background: var(--blue);
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(30deg);
  }
  50% {
    transform: translateY(-20px) rotate(33deg);
  }
}

.hero__content {
  flex: 1;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(46, 125, 50, 0.25);
  color: var(--green-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero__title--bumi {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--green-dark);
  display: block;
  line-height: 1;
}

.hero__title--sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 420px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* SPLIT EARTH */
.split-earth {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.2s both;
}

.split-earth__globe {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.6),
    0 0 0 8px rgba(46, 125, 50, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.split-earth__half {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.split-earth__half--left {
  background: linear-gradient(160deg, #616161 0%, #8d6e63 50%, #bcaaa4 100%);
}

.split-earth__half--right {
  background: linear-gradient(160deg, #b3e5fc 0%, #c8e6c9 50%, #a5d6a7 100%);
}

.split-earth__svg {
  width: 100%;
  height: 100%;
}

.split-earth__divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.3)
  );
  transform: translateX(-50%);
  z-index: 10;
}

.split-earth__people {
  margin-top: -20px;
}

.people-svg {
  width: 220px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 48px;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.45);
}

.btn--ghost {
  background: rgba(46, 125, 50, 0.08);
  color: var(--green-dark);
  border-color: rgba(46, 125, 50, 0.3);
}

.btn--ghost:hover {
  background: rgba(46, 125, 50, 0.15);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ================================
   SECTION COMMON
================================ */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(46, 125, 50, 0.1);
  color: var(--green-dark);
  border: 1px solid rgba(46, 125, 50, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ================================
   PROGRESS SECTION
================================ */
.progress-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1b5e20 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.progress-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}

.progress-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.progress-section .section-header h2 {
  color: white;
}

.progress-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.progress-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  color: white;
  transition: var(--transition);
}

.progress-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.progress-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.progress-card__label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.4;
}

.progress-card__bar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.progress-card__bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
}

.progress-card__fill {
  height: 100%;
  width: 0%;
  border-radius: 50px;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-card__value {
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--green-light);
  min-width: 60px;
  text-align: right;
}

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

.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card--danger::before {
  background: linear-gradient(90deg, var(--red), #ef5350);
}
.card--green::before {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card--danger:hover {
  border-color: rgba(198, 40, 40, 0.15);
}
.card--green:hover {
  border-color: rgba(46, 125, 50, 0.15);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card--danger .card__icon {
  background: rgba(198, 40, 40, 0.08);
}
.card--green .card__icon {
  background: rgba(46, 125, 50, 0.08);
}

.card__icon svg {
  width: 40px;
  height: 40px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.card__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ================================
   TANTANGAN
================================ */
.tantangan {
  background: linear-gradient(160deg, #fff8f0 0%, var(--cream) 100%);
}

/* ================================
   SOLUSI
================================ */
.solusi {
  background: linear-gradient(160deg, var(--cream) 0%, #e8f5e9 100%);
}

/* TECH SECTION */
.tech-section {
  margin-top: 56px;
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.tech-section__header {
  text-align: center;
  margin-bottom: 32px;
}

.tech-section__header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 8px;
}

.tech-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tech-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(46, 125, 50, 0.12);
  text-align: center;
  min-width: 140px;
  transition: var(--transition);
}

.tech-node:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.tech-node--center {
  background: var(--green-pale);
  border-color: rgba(46, 125, 50, 0.25);
}

.tech-node svg {
  width: 40px;
  height: 40px;
}

.tech-node span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.tech-node small {
  font-size: 0.75rem;
  color: var(--text-light);
  max-width: 120px;
}

.tech-arrow {
  font-size: 1.5rem;
  color: var(--green-light);
  font-weight: 700;
}

/* ================================
   DAMPAK
================================ */
.dampak {
  background: var(--cream);
}

.dampak-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.dampak-item {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 125, 50, 0.06);
  transition: var(--transition);
}

.dampak-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.15);
}

.dampak-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.dampak-item__icon svg {
  width: 32px;
  height: 32px;
}

.dampak-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.dampak-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    #1b5e20 0%,
    var(--green-dark) 50%,
    #2e7d32 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-leaf {
  position: absolute;
  font-size: 80px;
  opacity: 0.06;
}

.cta-leaf--1 {
  top: 20px;
  left: 40px;
  transform: rotate(-30deg);
  animation: float 9s ease-in-out infinite;
}
.cta-leaf--2 {
  bottom: 20px;
  right: 60px;
  transform: rotate(40deg);
  animation: float 11s ease-in-out infinite reverse;
}
.cta-leaf--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  animation: float 15s ease-in-out infinite 3s;
}

.cta-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-box__lightning {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-box__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-box__title span {
  color: var(--yellow);
  font-family: var(--font-display);
}

.cta-box__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-box__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-box__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-stat {
  text-align: center;
}

.cta-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.cta-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   PROFIL
================================ */
.profil {
  background: linear-gradient(160deg, #e8f5e9 0%, var(--cream) 100%);
}

.profil-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.profil-card__photo-wrap {
  flex-shrink: 0;
}

.profil-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.2);
}

.profil-card__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.profil-card__role {
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.profil-card__bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.profil-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: var(--transition);
  min-height: 44px;
}

.contact-item:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateX(4px);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-dark);
}

.profil-card__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.profil-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  text-align: center;
}

.footer__content p {
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.footer__tagline {
  font-style: italic;
  color: var(--green-light);
  font-size: 0.82rem !important;
}

/* ================================
   SCROLL TO TOP
================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 800;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green);
  transform: translateY(-3px);
}

/* ================================
   SCROLL ANIMATIONS
================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 40px 60px;
    gap: 30px;
  }

  .split-earth__globe {
    width: 280px;
    height: 280px;
  }

  .progress-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }

  /* Navbar container mobile fix */
  .navbar__container {
    padding: 0 12px;
    gap: 8px;
  }

  .navbar__logos {
    flex: 1;
    gap: 6px;
    overflow: hidden;
    min-width: 0;
  }

  .navbar__logo {
    height: 26px;
    width: auto;
    object-fit: contain;
    flex-shrink: 1;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 24px 60px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero__content {
    max-width: 100%;
  }
  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }

  .split-earth {
    max-width: 100%;
    width: 100%;
  }

  .split-earth__globe {
    width: 260px;
    height: 260px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    padding: 36px 24px;
  }

  .cta-box__stats {
    gap: 24px;
  }

  .profil-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 28px;
  }

  .profil-card__contacts {
    text-align: left;
  }

  .profil-card__logos {
    justify-content: center;
  }

  .tech-flow {
    flex-direction: column;
  }

  .tech-arrow {
    transform: rotate(90deg);
  }

  .tech-node {
    min-width: 200px;
  }

  .section {
    padding: 60px 0;
  }

  .profil-card__photo {
    width: 130px;
    height: 130px;
  }
}

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

  .split-earth__globe {
    width: 220px;
    height: 220px;
  }

  .cta-stat strong {
    font-size: 1.4rem;
  }

  .hero__title--bumi {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  /* Di HP kecil: semua logo tetap tampil, ukuran dikecilkan */
  .navbar__logo {
    height: 22px;
  }

  .navbar__logos {
    gap: 5px;
  }
}

/* ================================
   POSTER SECTION
================================ */
.poster-section {
  background: linear-gradient(
    160deg,
    #f0f7f0 0%,
    var(--cream) 60%,
    #e8f4fd 100%
  );
}

.poster-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* POSTER FRAME */
.poster-frame {
  position: relative;
  flex-shrink: 0;
}

.poster-frame__inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 24px 56px rgba(46, 125, 50, 0.14);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}

.poster-frame__inner:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.14),
    0 40px 80px rgba(46, 125, 50, 0.2);
}

.poster-frame__img {
  width: 320px;
  height: auto;
  display: block;
  border-radius: 16px;
}

.poster-frame__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: 16px;
}

.poster-frame__inner:hover .poster-frame__overlay {
  background: rgba(0, 0, 0, 0.35);
}

.poster-zoom-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  border: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  min-height: 44px;
}

.poster-zoom-btn svg {
  width: 18px;
  height: 18px;
}

.poster-frame__inner:hover .poster-zoom-btn {
  opacity: 1;
  transform: translateY(0);
}

.poster-frame__shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(
    ellipse,
    rgba(46, 125, 50, 0.25) 0%,
    transparent 70%
  );
  filter: blur(8px);
  z-index: -1;
}

/* POSTER INFO */
.poster-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.poster-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--yellow), #ffb300);
  color: #5a3e00;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(249, 168, 37, 0.35);
}

.poster-info__badge svg {
  width: 15px;
  height: 15px;
  fill: #5a3e00;
  stroke: none;
}

.poster-info h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.poster-info__sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.03em;
  margin-top: -10px;
}

.poster-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poster-info__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.poster-info__list svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
  flex-shrink: 0;
}

.poster-info__meta {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(46, 125, 50, 0.08);
}

.poster-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.poster-meta-item__label {
  color: var(--text-light);
  font-weight: 500;
}

.poster-meta-item__value {
  color: var(--text-dark);
  font-weight: 700;
}

/* ================================
   LIGHTBOX
================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox__content {
  transform: scale(1);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* POSTER RESPONSIVE */
@media (max-width: 900px) {
  .poster-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .poster-frame__img {
    width: min(280px, 80vw);
  }
}

@media (max-width: 480px) {
  .poster-frame__img {
    width: min(240px, 85vw);
  }

  .poster-info h3 {
    font-size: 1.4rem;
  }
}

/* ================================
   MOBILE FIX — Pastikan poster & gambar selalu tampil
================================ */
.poster-wrapper,
.poster-frame,
.poster-frame__inner,
.poster-frame__img {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Pastikan semua img tidak tersembunyi karena parent AOS */
img {
  opacity: 1 !important;
}

/* Override AOS hanya untuk elemen gambar agar tidak terpengaruh */
[data-aos] img,
[data-aos] .poster-frame,
[data-aos] .profil-card__photo {
  opacity: 1 !important;
  transform: none !important;
}

/* ================================
   LAYOUT POSTER LOMBA SECTION
================================ */

.layout-poster {
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-pale) 100%);
  position: relative;
  overflow: hidden;
}

.layout-poster::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(102, 187, 106, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── GRID ─── */
.poster-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
  margin: 0 auto;
  max-width: 960px;
}

/* ─── ROW 1 ─── */
.plg-logo {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(135deg, #e8c97a 0%, #f9a825 100%);
}

.plg-judul {
  grid-column: 2 / span 2;
  grid-row: 1;
  background: linear-gradient(135deg, #e85a3a 0%, #c62828 100%);
}

.plg-tagline {
  grid-column: 4;
  grid-row: 1;
  background: linear-gradient(135deg, #f9a825 0%, #e8c97a 100%);
}

/* ─── ROW 2 ─── */
.plg-masalah {
  grid-column: 1;
  grid-row: 2 / span 1;
  background: linear-gradient(160deg, #7cb342 0%, #558b2f 100%);
  min-height: 200px;
}

.plg-solusi {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(135deg, #ec87c0 0%, #d63fa1 100%);
}

.plg-komponen3 {
  grid-column: 3;
  grid-row: 2;
  background: linear-gradient(135deg, #ce93d8 0%, #9c27b0 100%);
}

.plg-dampak {
  grid-column: 4;
  grid-row: 2;
  background: linear-gradient(135deg, #7986cb 0%, #3949ab 100%);
}

/* ─── ROW 3 ─── */
.plg-data {
  grid-column: 1;
  grid-row: 3;
  background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
}

.plg-kesimpulan {
  grid-column: 2 / span 2;
  grid-row: 3;
  background: linear-gradient(135deg, #283593 0%, #1a237e 100%);
}

.plg-qr {
  grid-column: 4;
  grid-row: 3;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

/* ─── CELL BASE ─── */
.plg-cell {
  border-radius: var(--radius);
  padding: 18px 20px 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.plg-cell:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.plg-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.plg-cell__label {
  font-family: var(--font-main);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
}

.plg-cell__content {
  color: #fff;
}

/* ─── LOGO CELL ─── */
.plg-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plg-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ─── JUDUL CELL ─── */
.plg-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.plg-title span {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.9;
}

/* ─── TAGLINE CELL ─── */
.plg-tagline-text {
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

/* ─── ICON BIG ─── */
.plg-icon-big {
  font-size: 2.2rem;
  margin-bottom: 8px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.plg-cell__content h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #fff;
}

/* ─── LIST ─── */
.plg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plg-list li {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ─── STAT BADGE ─── */
.plg-stat-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ─── TECH FLOW (inside komponen3) ─── */
.plg-tech-flow {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.plg-tech-node {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.plg-tech-node--center {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

.plg-tech-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* ─── DATA GRID ─── */
.plg-data-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plg-data-item {
  display: flex;
  flex-direction: column;
}

.plg-data-item strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.plg-data-item span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ─── KESIMPULAN ─── */
.plg-conclusion {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.plg-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.plg-author strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.plg-author span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── QR ─── */
.plg-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.plg-qr-svg {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.plg-qr-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.plg-qr-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 3px 12px;
  transition: var(--transition);
}

.plg-qr-link:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ─── NOTE ─── */
.poster-layout-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-mid);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .poster-layout-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .plg-logo {
    grid-column: 1;
    grid-row: 1;
  }
  .plg-judul {
    grid-column: 2;
    grid-row: 1;
  }
  .plg-tagline {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  .plg-masalah {
    grid-column: 1;
    grid-row: 3;
  }
  .plg-solusi {
    grid-column: 2;
    grid-row: 3;
  }
  .plg-komponen3 {
    grid-column: 1;
    grid-row: 4;
  }
  .plg-dampak {
    grid-column: 2;
    grid-row: 4;
  }
  .plg-data {
    grid-column: 1;
    grid-row: 5;
  }
  .plg-kesimpulan {
    grid-column: 2;
    grid-row: 5;
  }
  .plg-qr {
    grid-column: 1 / span 2;
    grid-row: 6;
  }

  .plg-title {
    font-size: 1rem;
  }
  .plg-icon-big {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .poster-layout-grid {
    grid-template-columns: 1fr;
  }

  .plg-logo,
  .plg-judul,
  .plg-tagline,
  .plg-masalah,
  .plg-solusi,
  .plg-komponen3,
  .plg-dampak,
  .plg-data,
  .plg-kesimpulan,
  .plg-qr {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

.poster-layout-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-mid);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
